*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #070b14;
  --surface: #0d1424;
  --card: #111a2e;
  --border: rgba(255,255,255,0.07);
  /*--accent: #00d4aa;*/
  --accent: #bbdefb;
  --accent2: #4f8bff;
  --text: #e8edf8;
  --muted: #7a8aaa;
  --glow: rgba(0,212,170,0.15);
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
  overflow-x: hidden !important;
}



/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.expharm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
 
/* ── Logo ── */
.expharm-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.expharm-nav-logo-accent { color: var(--accent); }
.expharm-nav-logo-badge {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(187, 222, 251, 0.5);
  padding: 2px 7px;
  border-radius: 4px;
  opacity: 0.9;
  align-self: center;
}
 
/* ── Desktop links ── */
.expharm-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.expharm-nav-links li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.expharm-nav-links li a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
 
/* Social icon links — slightly smaller padding */
.expharm-nav-links li a.expharm-nav-social {
  padding: 6px 8px;
  color: var(--muted);
}
.expharm-nav-links li a.expharm-nav-social:hover {
  color: var(--accent);
  background: rgba(187,222,251,0.08);
}
 
/* Divider between socials and page links */
.expharm-nav-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 0.5rem;
  flex-shrink: 0;
}
 
/* CTA button */
.expharm-nav-cta {
  background: var(--accent) !important;
  color: #070b14 !important;
  font-weight: 600 !important;
  padding: 7px 18px !important;
  border-radius: 6px !important;
  transition: opacity 0.2s, transform 0.2s !important;
  margin-left: 0.25rem;
}
.expharm-nav-cta:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px) !important;
  background: var(--accent) !important;
}
 
/* ── Hamburger button ── */
.expharm-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.expharm-hamburger:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(187,222,251,0.2);
}
.expharm-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s,
              width 0.25s;
  transform-origin: center;
}
/* Animated X state */
.expharm-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.expharm-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.expharm-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
 
/* ── Mobile menu — smooth slide + fade ── */
.expharm-mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 199;
  background: rgba(7, 11, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  /* Slide animation via max-height */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease;
  pointer-events: none;
}
.expharm-mobile-menu.open {
  max-height: 480px;
  opacity: 1;
  pointer-events: auto;
}
 
/* Inner padding wrapper (so padding doesn't fight max-height) */
.expharm-mobile-menu-inner {
  padding: 1rem 5% 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
 
/* Social row at top of mobile menu */
.expharm-mobile-socials {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 0 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}
.expharm-mobile-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.expharm-mobile-socials a:hover {
  color: var(--accent);
  border-color: rgba(187,222,251,0.3);
  background: rgba(187,222,251,0.06);
}
 
/* Nav links in mobile menu */
.expharm-mobile-menu-inner a.expharm-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.975rem;
  font-weight: 400;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.expharm-mobile-menu-inner a.expharm-mobile-link:hover {
  color: var(--text);
  padding-left: 6px;
}
.expharm-mobile-link-arrow {
  opacity: 0.3;
  font-size: 0.7rem;
  transition: opacity 0.2s;
}
.expharm-mobile-link:hover .expharm-mobile-link-arrow { opacity: 0.7; }
 
/* CTA in mobile menu */
.expharm-mobile-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: #070b14 !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
  transition: opacity 0.2s, transform 0.2s;
}
.expharm-mobile-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
 
/* ── Responsive breakpoints ── */
@media (max-width: 900px) {
  .expharm-nav-links { display: none; }
  .expharm-hamburger { display: flex; }
}
@media (min-width: 901px) {
  .expharm-mobile-menu { display: none !important; }
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.expharm-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 0;
  font-size: 0.875rem;
  color: var(--muted);
}
 
/* Top gradient accent line */
.expharm-footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--accent2) 30%,
    var(--accent) 60%,
    transparent 100%);
  opacity: 0.4;
}
 
/* Main grid */
.expharm-footer-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 5% 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
 
/* ── Column 1: Brand ── */
.expharm-footer-brand {}
 
.expharm-footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 0.85rem;
}
.expharm-footer-logo-accent { color: var(--accent); }
 
.expharm-footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 260px;
  margin-bottom: 1.5rem;
}
 
/* Social icons row */
.expharm-footer-socials {
  display: flex;
  gap: 0.6rem;
}
.expharm-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.expharm-footer-social-link:hover {
  color: var(--accent);
  border-color: rgba(187,222,251,0.3);
  background: rgba(187,222,251,0.06);
  transform: translateY(-2px);
}
 
/* ── Column 2 & 3: Link columns ── */
.expharm-footer-col-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
 
.expharm-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.expharm-footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.45rem 0;
  transition: color 0.2s, gap 0.2s;
  border-bottom: none;
}
.expharm-footer-links li a::before {
  content: '→';
  font-size: 0.7rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
  color: var(--accent);
}
.expharm-footer-links li a:hover {
  color: var(--text);
  gap: 8px;
}
.expharm-footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
 
/* ── Bottom bar ── */
.expharm-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.expharm-footer-copyright {
  font-size: 0.8rem;
  color: var(--muted);
}
.expharm-footer-copyright a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.expharm-footer-copyright a:hover { text-decoration: underline; }
 
.expharm-footer-visitors {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.expharm-footer-visitors::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  flex-shrink: 0;
}
 
/* ── Footer responsive ── */
@media (max-width: 860px) {
  .expharm-footer-body {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .expharm-footer-brand {
    grid-column: 1 / -1;
  }
  .expharm-footer-tagline { max-width: 100%; }
}
@media (max-width: 520px) {
  .expharm-footer-body {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 5% 2rem;
  }
  .expharm-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}