*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0d1f35;
  --blue: #2d7db3;
  --lime: #a8c940;
  --cream: #f5f2ec;
  --dark: #080f1a;
  --mid: #1a3a5c;
  --text-light: #e8e4dc;
  --text-muted: #8a9bb0;
}
a {
  text-decoration: none;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  color: var(--navy);
}

/* ── NAV ── */
nav {
  position: relative;
  width: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  border-bottom: 1px solid rgba(168, 201, 64, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: white;
}

.nav-brand span {
  color: var(--lime);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--lime);
}

.nav-cta {
  background: transparent;
  border: 1.5px solid var(--lime);
  color: var(--lime);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--lime);
  color: var(--dark);
}

/* ── HERO ── */
.hero {
  width: 100%;
  min-height: 90vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 60% 40%,
      rgba(45, 125, 179, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 30% 70%,
      rgba(168, 201, 64, 0.08) 0%,
      transparent 50%
    );
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  border: 1px solid rgba(168, 201, 64, 0.3);
  padding: 8px 20px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  color: white;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.hero h1 em {
  font-style: italic;
  color: var(--lime);
}

.hero-sub {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin: 28px auto 44px;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.hero-btn {
  background: var(--lime);
  color: var(--dark);
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(168, 201, 64, 0.3);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(168, 201, 64, 0.5);
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 72px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  color: var(--lime);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 24px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(42px, 12vw, 72px);
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-btn {
    padding: 16px 32px;
    font-size: 12px;
    width: 100%;
  }
  .hero-stats {
    flex-direction: column;
    gap: 32px;
  }
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--lime);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--dark);
  padding: 0 40px;
}

.marquee-dot {
  color: var(--navy);
  opacity: 0.4;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── MISSION ── */
.mission-wrapper {
  background: var(--cream);
}

.mission {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.mission h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
}

.mission h2 span {
  color: var(--blue);
  font-style: italic;
}

.mission-right p {
  font-size: 17px;
  line-height: 1.85;
  color: #4a5568;
  font-weight: 300;
  margin-bottom: 24px;
}

.mission-right strong {
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 768px) {
  .mission {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }
}

/* ── SERVICES ── */
.services-section {
  background: var(--navy);
  padding: 120px 60px;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header .label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  display: block;
}

.services-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: white;
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--mid);
  border: 1px solid rgba(45, 125, 179, 0.2);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 201, 64, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: rgba(168, 201, 64, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(168, 201, 64, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px 24px;
  }
}

/* ── DIFFERENTIATOR ── */
.diff-section {
  background: var(--blue);
  padding: 100px 60px;
  text-align: center;
}

.diff-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 7vw, 100px);
  letter-spacing: 4px;
  color: white;
  line-height: 1;
  margin-bottom: 24px;
}

.diff-section h2 span {
  color: var(--lime);
}

.diff-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 300;
}

.diff-btn {
  background: white;
  color: var(--blue);
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.diff-btn:hover {
  background: var(--lime);
  color: var(--dark);
}

@media (max-width: 768px) {
  .diff-section {
    padding: 60px 24px;
  }
  .diff-section h2 {
    font-size: clamp(36px, 10vw, 64px);
  }
  .diff-section p {
    font-size: 15px;
  }
  .diff-btn {
    width: 100%;
    padding: 16px 24px;
  }
}

/* ── FAQ ── */
.faq-wrapper {
  background: var(--cream);
}

.faq-section {
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section .label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  display: block;
}

.faq-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 50px;
  line-height: 1.1;
}

.faq-item {
  border-bottom: 1px solid rgba(13, 31, 53, 0.12);
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-q {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    background 0.2s;
  user-select: none;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
}

.faq-a {
  display: none;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 4px;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 300;
}

.faq-item.open .faq-a {
  display: block;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 24px;
  }
  .faq-q {
    font-size: 15px;
    padding-right: 16px;
  }
}

/* ── CONTACT BAR ── */
.contact-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(168, 201, 64, 0.12);
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.contact-bar a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact-bar {
    padding: 8px 24px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* ── SCAN TEASERS ── */
.scan-section {
  padding: 100px 60px;
}
.scan-section.dark {
  background: var(--dark);
}
.scan-section.cream {
  background: var(--cream);
}

.scan-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.scan-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.scan-section.cream .scan-label {
  color: var(--blue);
}

.scan-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.scan-section.dark h2 {
  color: white;
}
.scan-section.cream h2 {
  color: var(--navy);
}

.scan-section p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}
.scan-section.dark p {
  color: var(--text-muted);
}
.scan-section.cream p {
  color: #4a5568;
}

.scan-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.scan-section.cream .scan-stats {
  border-top-color: rgba(13, 31, 53, 0.1);
}

.scan-stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  color: var(--lime);
  line-height: 1;
}
.scan-section.cream .scan-stat-num {
  color: var(--blue);
}

.scan-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.scan-learn-btn {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid var(--lime);
  color: var(--lime);
}
.scan-gallery-btn {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.scan-section.dark .scan-learn-btn:hover {
  background: var(--lime);
  color: var(--dark);
}
.scan-section.cream .scan-learn-btn {
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.scan-section.cream .scan-learn-btn:hover {
  background: var(--blue);
  color: white;
}

.scan-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scan-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 201, 64, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.scan-section.cream .scan-card {
  background: white;
  border-color: rgba(45, 125, 179, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.scan-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
.scan-section.cream .scan-card-dot {
  background: var(--blue);
}

.scan-card-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.scan-section.cream .scan-card-text {
  color: #4a5568;
}

.scan-card-text strong {
  display: block;
  font-size: 14px;
  color: white;
  font-weight: 500;
  margin-bottom: 2px;
}
.scan-section.cream .scan-card-text strong {
  color: var(--navy);
}

@media (max-width: 768px) {
  .scan-section {
    padding: 60px 24px;
  }
  .scan-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .scan-stats {
    gap: 24px;
  }
}

/* ── WHY CHOOSE US ── */
.why-section {
  background: var(--navy);
  padding: 100px 60px;
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-header .label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  display: block;
}

.why-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 201, 64, 0.15);
  border-radius: 16px;
  padding: 36px 32px;
}

.why-card-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  color: var(--lime);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

@media (max-width: 768px) {
  .why-section {
    padding: 60px 24px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 100px 40px;
  text-align: center;
  border-top: 1px solid rgba(168, 201, 64, 0.15);
}
.cta-banner-inner {
  max-width: 760px;
  margin: 0 auto;
}
.cta-banner-eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin: 0 0 20px;
}
.cta-banner-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 24px;
}
.cta-banner-sub {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 44px;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner-btn-primary {
  background: var(--lime);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.cta-banner-btn-primary:hover {
  background: #c0df4a;
  transform: translateY(-2px);
}
.cta-banner-btn-secondary {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1.5px solid rgba(168, 201, 64, 0.5);
  border-radius: 4px;
  color: var(--lime);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
}
.cta-banner-btn-secondary:hover {
  border-color: var(--lime);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cta-banner {
    padding: 72px 24px;
  }
  .cta-banner-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-banner-btn-primary,
  .cta-banner-btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px 60px 40px;
  border-top: 1px solid rgba(168, 201, 64, 0.15);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;

  /* background-color: red; */
}

.footer-brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: white;
  flex-shrink: 0;
}

.footer-brand span {
  color: var(--lime);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;

  width: 100%;

  /* background-color: red; */
}

.footer-links a {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-memberships {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.membership-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(168, 201, 64, 0.15);
  border-radius: 8px;
  transition: all 0.2s;
  min-width: 140px;
}

.membership-badge:hover {
  background: rgba(168, 201, 64, 0.08);
  border-color: rgba(168, 201, 64, 0.3);
  transform: translateY(-2px);
}

.membership-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}

.membership-logo.anp {
  color: #1abc9c;
}

.membership-logo.gnc {
  color: #7cb342;
}

.membership-name {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
}

.membership-label {
  font-size: 8px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  gap: 20px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.footer-disclaimer {
  font-size: 13px;
  color: #8a9bb0;
  line-height: 1.6;
  flex: 1;
  text-align: center;
  max-width: 70vw;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 968px) {
  footer {
    padding: 40px 24px 30px;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-memberships {
    flex-wrap: wrap;
    justify-content: center;
  }

  .membership-badge {
    min-width: 130px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-disclaimer {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-main {
    gap: 24px;
  }

  .footer-brand {
    font-size: 18px;
  }

  /* .footer-links {
    gap: 10px;
    align-items: start;
    flex-direction: column;
  } */

  .footer-links a {
    font-size: 11px;
  }

  .footer-memberships {
    flex-direction: column;
    gap: 12px;
  }

  .membership-badge {
    width: 100%;
    max-width: 200px;
    padding: 10px 16px;
  }

  .membership-logo {
    font-size: 22px;
  }

  .membership-name {
    font-size: 8px;
  }

  .footer-copy,
  .footer-disclaimer {
    font-size: 10px;
  }
}

/* ── HERO QUIZ BUTTON ── */
.hero-quiz-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 40px;
  margin-top: 10px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
  margin-left: 16px;
  text-decoration: none;
  display: inline-block;
}
.hero-quiz-btn:hover {
  border-color: var(--lime);
  color: var(--lime);
}
@media (max-width: 768px) {
  .hero-quiz-btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }
}

/* ── QUIZ MODAL OVERLAY ── */
.quiz-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 15, 26, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.quiz-modal-overlay.open {
  display: flex;
  animation: qModalIn 0.28s ease;
}
@keyframes qModalIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.qm-card {
  background: var(--cream);
  border-radius: 20px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 4px 24px rgba(0, 0, 0, 0.3);
  width: 700px;
  max-width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 31, 53, 0.2) transparent;
}
.qm-card::-webkit-scrollbar {
  width: 5px;
}
.qm-card::-webkit-scrollbar-track {
  background: transparent;
}
.qm-card::-webkit-scrollbar-thumb {
  background: rgba(13, 31, 53, 0.2);
  border-radius: 4px;
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.modal-close-btn.open {
  display: flex;
}
.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--lime);
  color: var(--lime);
}

/* Quiz modal header */
.qm-header {
  background: var(--dark);
  padding: 72px 60px 48px;
  text-align: center;
  position: relative;
}
.qm-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(168, 201, 64, 0.07) 0%,
    transparent 60%
  );
}
.qm-header .eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.qm-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.qm-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* Quiz body wrapper */
.qm-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 60px 100px;
}

/* Progress */
.qm-progress-wrap {
  margin-bottom: 48px;
}
.qm-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.qm-progress-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}
.qm-progress-label.active {
  color: var(--blue);
}
.qm-progress-label.done {
  color: var(--lime);
}
.qm-progress-track {
  height: 4px;
  background: rgba(13, 31, 53, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.qm-progress-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* Sections */
.qm-section {
  display: none;
}
.qm-section.active {
  display: block;
}
.qm-section-header {
  margin-bottom: 40px;
}
.qm-section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.qm-section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
}

/* Fields */
.qm-field {
  margin-bottom: 28px;
}
.qm-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.45;
}
.qm-label .req {
  color: var(--blue);
  margin-left: 2px;
}
.qm-input,
.qm-select,
.qm-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(13, 31, 53, 0.15);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: white;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.qm-input:focus,
.qm-select:focus,
.qm-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 125, 179, 0.1);
}
.qm-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d1f35' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.qm-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.qm-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Options */
.qm-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.qm-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px solid rgba(13, 31, 53, 0.12);
  border-radius: 10px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  font-size: 14px;
  color: #4a5568;
  font-weight: 300;
}
.qm-opt:hover {
  border-color: var(--blue);
  background: rgba(45, 125, 179, 0.04);
}
.qm-opt input[type="radio"],
.qm-opt input[type="checkbox"] {
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.qm-opt:has(input:checked) {
  border-color: var(--blue);
  background: rgba(45, 125, 179, 0.06);
}

/* Scale */
.qm-scale-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.qm-scale-input {
  flex: 1;
  accent-color: var(--blue);
  height: 6px;
  cursor: pointer;
}
.qm-scale-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: var(--blue);
  min-width: 32px;
  text-align: center;
}
.qm-scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Nav buttons */
.qm-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
}
.qm-btn-back {
  background: transparent;
  border: 1.5px solid rgba(13, 31, 53, 0.2);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.qm-btn-back:hover {
  border-color: var(--navy);
  background: rgba(13, 31, 53, 0.05);
}
.qm-btn-next {
  background: var(--navy);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.qm-btn-next:hover {
  background: var(--blue);
  transform: translateY(-1px);
}
.qm-btn-submit {
  background: var(--lime);
  color: var(--dark);
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.qm-btn-submit:hover {
  background: #96b435;
  transform: translateY(-1px);
}

/* Summary */
#qm-summary {
  display: none;
}
.qm-summary-intro {
  background: var(--dark);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 40px;
  text-align: center;
}
.qm-summary-intro h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.qm-summary-intro p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}
.qm-summary-block {
  background: white;
  border: 1px solid rgba(45, 125, 179, 0.1);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 16px;
}
.qm-summary-block-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}
.qm-summary-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(13, 31, 53, 0.06);
  font-size: 14px;
}
.qm-summary-row:last-child {
  border-bottom: none;
}
.qm-summary-q {
  color: var(--text-muted);
  font-weight: 400;
  min-width: 200px;
  flex-shrink: 0;
  line-height: 1.5;
}
.qm-summary-a {
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
.qm-booking-box {
  background: var(--lime);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 40px;
}
.qm-booking-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}
.qm-booking-box p {
  font-size: 15px;
  color: rgba(8, 15, 26, 0.7);
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.qm-btn-book {
  display: inline-block;
  background: var(--dark);
  color: var(--lime);
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.qm-btn-book:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

/* Confirmation */
#qm-confirmation {
  display: none;
  text-align: center;
  padding: 80px 40px;
}
.qm-confirm-icon {
  font-size: 48px;
  margin-bottom: 24px;
}
#qm-confirmation h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}
#qm-confirmation p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 12px;
}
.qm-confirm-email {
  color: var(--blue);
  font-weight: 500;
}
.qm-confirm-divider {
  width: 48px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin: 32px auto;
}
.qm-btn-close-confirm {
  display: inline-block;
  margin-top: 16px;
  background: var(--navy);
  color: white;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.qm-btn-close-confirm:hover {
  background: var(--blue);
}

@media (max-width: 768px) {
  .quiz-modal-overlay {
    padding: 12px;
    align-items: center;
  }
  .qm-card {
    width: 95vw;
    max-width: 95vw;
    max-height: 90vh;
    border-radius: 16px;
  }
  .modal-close-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 18px;
    background: rgba(8, 15, 26, 0.82);
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 10001;
  }
  .qm-header {
    padding: 52px 20px 32px;
  }
  .qm-header h2 {
    font-size: clamp(22px, 7vw, 34px);
  }
  .qm-header p {
    font-size: 14px;
  }
  .qm-body {
    padding: 28px 20px 64px;
  }
  .qm-section-title {
    font-size: clamp(20px, 5vw, 28px);
  }
  .qm-label {
    font-size: 13px;
  }
  .qm-input,
  .qm-select,
  .qm-textarea {
    padding: 14px 14px;
    font-size: 16px;
    min-height: 50px;
  }
  .qm-textarea {
    min-height: 96px;
  }
  .qm-field-row {
    grid-template-columns: 1fr;
  }
  .qm-options {
    grid-template-columns: 1fr;
  }
  .qm-opt {
    padding: 14px 16px;
    min-height: 50px;
    font-size: 14px;
  }
  .qm-opt input[type="radio"],
  .qm-opt input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
  .qm-nav {
    flex-direction: column-reverse;
    gap: 12px;
    margin-top: 32px;
  }
  .qm-btn-back,
  .qm-btn-next,
  .qm-btn-submit {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 13px;
    min-height: 52px;
  }
  .qm-btn-book {
    width: 100%;
    padding: 16px 24px;
    min-height: 52px;
  }
  .qm-booking-box {
    padding: 32px 18px;
  }
  .qm-summary-block {
    padding: 18px 16px;
  }
  .qm-summary-row {
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
  }
  .qm-summary-q {
    min-width: unset;
  }
  #qm-confirmation {
    padding: 48px 20px;
  }
}

/* ── HAMBURGER NAV ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid rgba(168, 201, 64, 0.2);
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open {
    display: flex;
    animation: navDropIn 0.22s ease;
  }
  .nav-links a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    letter-spacing: 1px;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-cta {
    display: none !important;
  }
}

/* ── SERVICES DROPDOWN ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
  user-select: none;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
  color: var(--lime) !important;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid rgba(168, 201, 64, 0.18);
  border-radius: 12px;
  min-width: 230px;
  padding: 8px 0;
  z-index: 1000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
  animation: navDropIn 0.18s ease;
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 22px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition:
    color 0.15s,
    background 0.15s;
}
.nav-dropdown-menu a:hover {
  color: var(--lime);
  background: rgba(168, 201, 64, 0.06);
}
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-toggle {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    letter-spacing: 1.5px;
  }
  .nav-dropdown-menu {
    display: block !important;
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 0;
    min-width: unset;
    padding: 0;
    box-shadow: none;
    animation: none !important;
  }
  .nav-dropdown-menu a {
    padding: 12px 24px 12px 40px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
}
@keyframes navDropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Add this to prevent the slide overlay from blocking clicks */
.sf-slide::before {
  pointer-events: none; /* ← KEY FIX */
}

/* Optional: Adjust button positioning for better mobile safety */
@media (max-width: 768px) {
  .sf-prev {
    left: 0.5rem;
  }
  .sf-next {
    right: 0.5rem;
  }
}
