/* ==========================================================================
   CRUX ADVISORY LLP — Stylesheet
   ========================================================================== */

:root {
  --ink: #071a34;
  --deep: #0f2c58;
  --deep-2: #1a4a8f;
  --blue: #1565c0;
  --accent: #2f8fe6;
  --accent-light: #cfe6ff;
  --paper: #ffffff;
  --paper-2: #f1f6fc;
  --white: #ffffff;
  --text-muted: #56637a;
  --line: #dde6f2;
  --shadow: 0 20px 50px -20px rgba(15, 44, 88, 0.25);
  --radius: 18px;
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  line-height: 1.15;
  font-weight: 700;
  color: var(--deep);
}

h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

.lead { font-size: 1.08rem; color: var(--text-muted); }

.text-gradient {
  background: linear-gradient(100deg, var(--accent-light) 10%, var(--accent) 70%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--deep-2) 100%);
  color: var(--white);
  box-shadow: 0 10px 25px -8px rgba(47, 143, 230, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(47, 143, 230, 0.65); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover { background: var(--white); color: var(--deep); border-color: var(--white); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--deep);
  color: var(--accent-light);
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 8px 24px;
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-light); opacity: 0.92; transition: opacity 0.2s; }
.topbar-item:hover { opacity: 1; }
.topbar-tag { font-style: italic; opacity: 0.7; margin-right: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -18px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-brand .brand-mark {
  height: 48px;
  width: 48px;
  padding: 7px;
  background: var(--white);
  border-radius: 12px;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--ff-body);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  background: linear-gradient(100deg, var(--deep) 15%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--deep);
}
.brand-text em { font-style: normal; font-size: 0.6rem; letter-spacing: 3px; color: var(--text-muted); font-weight: 700; margin-top: 2px; }
.brand-tagline {
  font-family: var(--ff-body);
  font-style: italic;
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--blue);
  margin-top: 4px;
  white-space: nowrap;
}
.footer-brand .brand-text strong {
  background: none;
  -webkit-text-fill-color: initial;
}

.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; padding: 11px 22px; font-size: 0.88rem; }

.nav-toggle {
  position: relative;
  z-index: 1;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--deep); border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 96px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--deep) 55%, #0d3a72 100%);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}
.glow-1 { width: 480px; height: 480px; background: var(--accent); top: -180px; right: -120px; }
.glow-2 { width: 420px; height: 420px; background: var(--blue); bottom: -220px; left: -140px; opacity: 0.35; }

.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; }

.eyebrow, .section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(21, 101, 192, 0.08);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow-light { background: rgba(47,143,230,0.22); color: var(--accent-light); }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  color: var(--white);
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-actions { display: flex; justify-content: center; gap: 16px; margin-bottom: 34px; flex-wrap: wrap; }

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 84px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}
.scroll-cue:hover { color: var(--white); }
.scroll-cue-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.scroll-cue-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-cue-dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
  animation: scrollCueMove 1.6s ease infinite;
}
@keyframes scrollCueMove {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ---------- Floating stats card ---------- */
.hero-stats-wrap {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  margin-bottom: -46px;
  background: var(--deep);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
  border-radius: 20px;
  box-shadow: 0 25px 60px -20px rgba(15, 44, 88, 0.5);
  padding: 30px 12px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 140px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
}
.stat-suffix { font-family: var(--ff-head); font-size: 2.1rem; font-weight: 800; color: var(--accent-light); }
.stat-plus { font-size: 1rem; color: rgba(255, 255, 255, 0.6); margin: 0 4px; }
.stat-label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); margin-top: 6px; text-align: center; }

/* ---------- Marquee ---------- */
.marquee-strip {
  background: var(--deep);
  padding: 62px 0 16px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  gap: 18px;
  animation: marquee 28s linear infinite;
  font-family: var(--ff-head);
  font-size: 1rem;
  color: var(--accent-light);
  letter-spacing: 1px;
}
.marquee-track span:nth-child(2n) { color: var(--accent); opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--paper-2); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 14px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.about-visual { position: relative; min-height: 420px; }
.about-orbit {
  position: absolute;
  inset: 10%;
  border: 1.5px dashed rgba(21,101,192,0.25);
  border-radius: 50%;
  z-index: 0;
}
.about-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  width: 78%;
  border: 1px solid var(--line);
}
.about-card-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.about-card h4 { font-family: var(--ff-body); font-size: 1rem; color: var(--deep); margin-bottom: 8px; font-weight: 700; }
.about-card p { font-size: 0.9rem; color: var(--text-muted); }
.card-a { margin-left: 0; }
.card-b { margin-left: 22%; margin-top: -30px; background: var(--deep); border: none; }
.card-b h4, .card-b p { color: var(--accent-light); }
.card-b p { opacity: 0.85; }

.about-content .lead { color: var(--ink); margin: 18px 0 16px; font-size: 1.05rem; }
.about-content p { margin-bottom: 14px; color: var(--text-muted); }

.check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--ink);
  font-weight: 500;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(21,101,192,0.1), rgba(47,143,230,0.15));
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.94rem; flex-grow: 1; }
.service-card-wide { grid-column: span 1; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.service-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(21,101,192,0.08);
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ---------- Promoters ---------- */
.promoters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.promoter-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promoter-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.promoter-avatar {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--blue));
  color: var(--accent);
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.promoter-role { color: var(--blue); font-weight: 600; font-size: 0.9rem; margin: 6px 0 14px; }
.promoter-card p:not(.promoter-role) { color: var(--text-muted); font-size: 0.95rem; }

.promoters-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-style: italic;
  font-size: 1rem;
  padding-top: 8px;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.team-content .lead { color: var(--ink); margin-bottom: 16px; }
.team-content p { color: var(--text-muted); margin-bottom: 14px; }

.team-highlights { display: flex; flex-direction: column; gap: 22px; }
.highlight-item {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.highlight-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.highlight-num {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}
.highlight-item h4 { font-size: 1.02rem; margin-bottom: 4px; color: var(--deep); }
.highlight-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: linear-gradient(160deg, var(--white) 0%, var(--paper-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--accent);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- CTA / Contact ---------- */
.cta-section {
  background: radial-gradient(ellipse 120% 100% at 50% 0%, var(--blue) 0%, var(--deep) 55%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: var(--accent);
  opacity: 0.15;
  filter: blur(120px);
  border-radius: 50%;
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.cta-title { color: var(--white); max-width: 720px; margin: 0 auto 16px; }
.cta-sub { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 44px; }

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 26px 32px;
  border-radius: 18px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  max-width: 400px;
  text-align: left;
}
.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.11);
  box-shadow: 0 20px 45px -18px rgba(0,0,0,0.45);
}
.contact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--deep-2));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card > div { min-width: 0; }
.contact-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-value {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: 70px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand .brand-text em { color: rgba(255,255,255,0.55); }
.footer-brand p { margin-top: 18px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-tag { font-style: italic; color: var(--accent) !important; margin-top: 8px !important; }

.footer-col h4 { color: var(--white); font-family: var(--ff-body); font-size: 0.95rem; margin-bottom: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 90;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--blue); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .team-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 340px; margin-bottom: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .topbar-tag { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 200;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; z-index: 210; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 26, 52, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    z-index: 190;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
}

@media (min-width: 861px) {
  .nav-backdrop { display: none; }
}

body.nav-open { overflow: hidden; }

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .promoters-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .card-b { margin-left: 10%; }
  .about-card { width: 90%; }

  .section { padding: 64px 0; }
  .hero { padding: 84px 0 34px; }
  .hero-actions { margin-bottom: 20px; }
  .scroll-cue { display: none; }
  .hero-stats-wrap { margin-top: -30px; margin-bottom: -30px; }
  .hero-stats { flex-direction: column; gap: 18px; padding: 24px 20px; border-radius: 18px; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 0 0 16px; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .marquee-strip { padding: 42px 0 16px; }
  .container { padding: 0 20px; }

  .contact-cards { gap: 16px; }
  .contact-card { max-width: 100%; padding: 20px 22px; }
  .contact-value { font-size: 1rem; }
  .contact-icon { width: 44px; height: 44px; }

  .why-card, .service-card, .promoter-card { padding: 26px 22px; }
}

@media (max-width: 400px) {
  .topbar-inner { gap: 14px; }
  .topbar-item { font-size: 0.72rem; }
  .stat-num, .stat-suffix { font-size: 1.7rem; }
  .contact-value { font-size: 0.9rem; white-space: normal; overflow-wrap: break-word; }
  .brand-tagline { font-size: 0.6rem; white-space: normal; }
}
