/* ==========================================================================
   Meta Facilities — static site styles
   Design tokens ported 1:1 from the original React/Tailwind theme.
   ========================================================================== */

:root {
  --radius: 1rem;

  --navy: #0A2A5C;
  --navy-foreground: #ffffff;
  --trust: #1E4FBF;
  --sky: #F5A78A;
  --mist: #E8EDF7;
  --gold: #F5A78A;
  --gold-foreground: #0A2A5C;
  --surface: #F5F7FB;

  --background: #ffffff;
  --foreground: #0A2A5C;
  --card: #ffffff;
  --muted-foreground: #4A5F86;
  --border: #E1E7F2;
  --input: #E1E7F2;
  --ring: #1E4FBF;

  --shadow-soft: 0 1px 2px rgba(29, 47, 80, 0.04), 0 8px 24px rgba(29, 47, 80, 0.06);
  --shadow-lift: 0 4px 12px rgba(29, 47, 80, 0.08), 0 20px 40px rgba(29, 47, 80, 0.1);

  --font-sans: "DM Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Montserrat", "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background-color: var(--background);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0;
}
p { margin: 0; }

section[id] {
  scroll-margin-top: 84px;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn--gold {
  background: var(--gold);
  color: var(--gold-foreground);
  padding: 0.65rem 1.5rem;
}
.btn--gold:hover { background: rgba(245, 167, 138, 0.9); }
.btn--lg { height: 3rem; padding-left: 2rem; padding-right: 2rem; }
.btn--full { width: 100%; }

/* ---- Reveal-on-scroll ---- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.17s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.29s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.41s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.53s; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 42, 92, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.header__row {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .header__row { height: 5rem; } }

.header__logo { display: flex; align-items: center; background: none; border: none; padding: 0; }
.header__logo img { height: 2.5rem; width: auto; }
@media (min-width: 768px) { .header__logo img { height: 3rem; } }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: #fff; }

.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: block; } }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.5rem;
  color: #fff;
  background: transparent;
  border: none;
}
.menu-toggle svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 42, 92, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu a {
  text-align: left;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.mobile-menu a:hover { background: rgba(255, 255, 255, 0.1); }
.mobile-menu .btn { margin-top: 0.5rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  background: var(--navy);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, var(--navy), rgba(30, 79, 191, 0.7), var(--navy));
}
.hero__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
  pointer-events: none;
}
.hero__blob--1 { top: -8rem; left: -8rem; height: 24rem; width: 24rem; background: rgba(245, 167, 138, 0.4); }
.hero__blob--2 { bottom: -8rem; right: -8rem; height: 28rem; width: 28rem; background: rgba(30, 79, 191, 0.5); }
.hero__blob--3 { top: 33%; right: 25%; height: 18rem; width: 18rem; background: rgba(245, 167, 138, 0.2); }

.hero__inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.15fr 1fr; gap: 3.5rem; padding: 5rem 0; }
}

.hero__content { text-align: center; }
@media (min-width: 1024px) { .hero__content { text-align: left; } }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  user-select: none;
}
.pill__dot { height: 0.375rem; width: 0.375rem; border-radius: 999px; background: var(--gold); }

.hero__title {
  margin-top: 1.5rem;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1.05;
}
.hero__title span { color: var(--gold); }
@media (min-width: 640px) { .hero__title { font-size: 3rem; } }
@media (min-width: 768px) { .hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 4.5rem; } }

.hero__lead {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
@media (min-width: 1024px) { .hero__lead { margin-left: 0; margin-right: 0; } }
.hero__content > * { margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .hero__content > * { margin-left: 0; margin-right: 0; } }

.hero__badges {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) { .hero__badges { justify-content: flex-start; } }
.badge-pin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}
.badge-pin svg { width: 0.875rem; height: 0.875rem; color: var(--gold); }
.hero__badges .sep { color: rgba(255, 255, 255, 0.4); font-size: 0.875rem; }

.hero__note {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .hero__actions { flex-direction: row; justify-content: center; } }
@media (min-width: 1024px) { .hero__actions { justify-content: flex-start; } }

.hero__stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 42rem;
}
@media (min-width: 640px) { .hero__stats { gap: 1rem; } }
.stat {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 0.75rem;
  text-align: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  user-select: none;
}
@media (min-width: 640px) { .stat { text-align: left; padding: 1.25rem 1.5rem; } }
.stat__value { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
@media (min-width: 640px) { .stat__value { font-size: 2.25rem; } }
.stat__label { margin-top: 0.25rem; font-size: 0.6875rem; color: rgba(255, 255, 255, 0.8); line-height: 1.2; }
@media (min-width: 640px) { .stat__label { font-size: 0.875rem; } }

.hero__mascot {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) { .hero__mascot { display: flex; } }
.hero__mascot-glow {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: rgba(245, 167, 138, 0.2);
  filter: blur(64px);
  pointer-events: none;
}
.hero__mascot img {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 28rem;
  filter: drop-shadow(0 30px 60px rgba(10, 42, 92, 0.5));
  animation: float 4s ease-in-out infinite;
  user-select: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ==========================================================================
   Section heading (shared)
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--trust);
}
.eyebrow::before { content: ""; height: 1px; width: 2rem; background: var(--trust); }
.section-title {
  margin-top: 1rem;
  font-size: 2.25rem;
  color: var(--navy);
  line-height: 1.1;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  line-height: 1.6;
}

/* ==========================================================================
   Services (sticky stacking cards)
   ========================================================================== */
.services { position: relative; background: var(--surface); padding: 6rem 0; }
@media (min-width: 768px) { .services { padding: 8rem 0; } }
.services__inner { max-width: 64rem; margin: 0 auto; }

.price-badge {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 167, 138, 0.4);
  background: rgba(245, 167, 138, 0.15);
  padding: 0.6rem 1.25rem;
}
.price-badge__dot { height: 0.5rem; width: 0.5rem; border-radius: 999px; background: var(--gold); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.price-badge span:last-child { font-size: 0.9375rem; font-weight: 700; color: var(--navy); }
.price-badge strong { color: var(--trust); }

.service-stack {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) { .service-stack { margin-top: 6rem; gap: 3rem; } }

.service-card-wrap { position: sticky; }
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-lift);
  transition: border-color 0.3s, transform 0.3s, opacity 0.3s;
  user-select: none;
}
.service-card__number {
  position: absolute;
  right: -1rem; top: -2.5rem;
  font-size: 9rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(29, 47, 80, 0.12);
  pointer-events: none;
}
@media (min-width: 768px) { .service-card__number { font-size: 16rem; right: -0.5rem; top: -4rem; } }

.service-card__body {
  position: relative;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .service-card__body { padding: 3.5rem; grid-template-columns: auto 1fr; gap: 3rem; }
}
.service-card__icon {
  display: grid;
  place-items: center;
  height: 4rem; width: 4rem;
  border-radius: 1rem;
  background: var(--surface);
  color: var(--trust);
  transition: background-color 0.3s, color 0.3s;
}
.service-card__icon svg { width: 1.75rem; height: 1.75rem; }
@media (min-width: 768px) { .service-card__icon { height: 6rem; width: 6rem; } .service-card__icon svg { width: 2.5rem; height: 2.5rem; } }

.service-card__meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(30, 79, 191, 0.7);
}
.service-card__meta span:last-child { height: 1px; width: 2rem; background: rgba(30, 79, 191, 0.3); }
.service-card__title { margin-top: 0.5rem; font-size: 1.5rem; color: var(--navy); }
@media (min-width: 768px) { .service-card__title { font-size: 2.25rem; } }
.service-card__desc { margin-top: 0.75rem; max-width: 42rem; font-size: 1rem; line-height: 1.6; color: var(--muted-foreground); }
@media (min-width: 768px) { .service-card__desc { font-size: 1.125rem; } }
.service-card__link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--trust);
  padding: 0;
}
.service-card__link svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.service-card__link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   About
   ========================================================================== */
.about { position: relative; padding: 6rem 0; background: var(--background); }
@media (min-width: 768px) { .about { padding: 8rem 0; } }
.about__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about__media { position: relative; display: flex; align-items: center; justify-content: center; order: 2; }
@media (min-width: 1024px) { .about__media { order: 1; } }
.about__glow {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.about__glow span { height: 70%; width: 70%; border-radius: 999px; background: rgba(245, 167, 138, 0.4); filter: blur(64px); }
.about__media img {
  position: relative; z-index: 10;
  width: 100%; max-width: 28rem;
  filter: drop-shadow(0 25px 45px rgba(10, 42, 92, 0.35));
  animation: float-slow 4.5s ease-in-out infinite;
  user-select: none;
}
@keyframes float-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.about__card {
  position: absolute; bottom: 0.5rem; right: 0; z-index: 20;
  max-width: 16rem;
  border-radius: 1rem;
  background: var(--navy);
  padding: 1.25rem;
  color: #fff;
  box-shadow: var(--shadow-lift);
  user-select: none;
}
@media (min-width: 768px) { .about__card { right: -1rem; } }
.about__card strong { font-size: 1.5rem; font-weight: 800; color: var(--gold); display: block; }
.about__card p { margin-top: 0.25rem; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.8); line-height: 1.4; }

.about__text { order: 1; }
@media (min-width: 1024px) { .about__text { order: 2; } }
.about__lead { margin-top: 1.25rem; font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.7; }

.about__points {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { .about__points { grid-template-columns: 1fr 1fr; } }
.about__points li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--navy); }
.about__points svg { width: 1.25rem; height: 1.25rem; color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.about__points span { font-size: 0.9375rem; }

.about__cta {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--trust);
  padding: 0;
}
.about__cta svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.about__cta:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Differentials (flip cards)
   ========================================================================== */
.differentials { position: relative; padding: 6rem 0; background: var(--surface); }
@media (min-width: 768px) { .differentials { padding: 8rem 0; } }
.flip-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .flip-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .flip-grid { grid-template-columns: repeat(3, 1fr); } }

.flip-card { perspective: 1200px; height: 280px; user-select: none; }
.flip-card__inner {
  position: relative;
  height: 100%; width: 100%;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card__inner,
.flip-card.is-flipped .flip-card__inner { transform: rotateX(180deg); }

.flip-card__face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.flip-card__front {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}
.flip-card__icon {
  display: inline-grid;
  place-items: center;
  height: 3rem; width: 3rem;
  border-radius: 0.75rem;
  background: var(--surface);
  color: var(--trust);
}
.flip-card__icon svg { width: 1.5rem; height: 1.5rem; }
.flip-card__front h3 { margin-top: 1.25rem; font-size: 1.125rem; color: var(--navy); }
.flip-card__front p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.flip-card__back {
  transform: rotateX(180deg);
  background: var(--navy);
  box-shadow: var(--shadow-lift);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}
.flip-card__back h3 { font-size: 1.5rem; color: #fff; }
.flip-card__back .btn { background: var(--gold); color: var(--gold-foreground); padding: 0.75rem 1.5rem; font-size: 0.875rem; border: none; }
.flip-card__back .btn svg { width: 1rem; height: 1rem; }
.flip-card__back .btn:hover { transform: scale(1.05); }

/* ==========================================================================
   Social proof (marquee)
   ========================================================================== */
.social-proof { position: relative; padding: 5rem 0; background: var(--background); }
.social-proof h2 { text-align: center; font-size: 1.5rem; color: var(--navy); }
@media (min-width: 768px) { .social-proof h2 { font-size: 1.875rem; } }

.marquee-mask {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-mask:hover .marquee-track { animation-play-state: paused; }
.marquee-row { display: flex; flex-shrink: 0; align-items: center; gap: 2.5rem; padding-right: 2.5rem; }
@media (min-width: 768px) { .marquee-row { gap: 4rem; padding-right: 4rem; } }
.marquee-row div {
  display: flex; align-items: center; justify-content: center;
  height: 3.5rem; width: 10rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  user-select: none;
}
@media (min-width: 768px) { .marquee-row div { height: 4rem; width: 12rem; font-size: 1rem; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { position: relative; padding: 6rem 0; background: var(--surface); }
@media (min-width: 768px) { .faq { padding: 8rem 0; } }
.faq__inner { max-width: 48rem; margin: 0 auto; }
.faq__header { text-align: center; }
.faq__header .eyebrow { justify-content: center; }
.faq__list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  padding: 0 1.25rem;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
@media (min-width: 768px) { .faq-item summary { font-size: 1.125rem; } }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chevron { flex-shrink: 0; width: 1.125rem; height: 1.125rem; color: var(--trust); transition: transform 0.25s; }
.faq-item[open] summary .chevron { transform: rotate(180deg); }
.faq-item__answer { padding-bottom: 1.25rem; color: var(--muted-foreground); line-height: 1.6; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { position: relative; padding: 6rem 0; background: var(--background); }
@media (min-width: 768px) { .contact { padding: 8rem 0; } }
.contact__grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-form {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form h2 { margin-top: 0.75rem; font-size: 1.75rem; color: var(--navy); }
@media (min-width: 768px) { .contact-form h2 { font-size: 2.25rem; } }
.contact-form > p { margin-top: 0.75rem; color: var(--muted-foreground); }

.form-grid { margin-top: 2rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.form-field input,
.form-field select,
.form-field textarea {
  margin-top: 0.4rem;
  border-radius: 0.6rem;
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.55rem 0.75rem;
  font: inherit;
  color: var(--foreground);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(30, 79, 191, 0.15);
}
.form-field textarea { resize: vertical; }
.contact-form .btn { margin-top: 1.5rem; }

.contact-info h3 { font-size: 1.75rem; color: var(--navy); }
@media (min-width: 768px) { .contact-info h3 { font-size: 2.25rem; } }
.contact-info > p { margin-top: 1rem; font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.6; }
.contact-info ul { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info .icon-box {
  display: grid; place-items: center; flex-shrink: 0;
  height: 2.75rem; width: 2.75rem;
  border-radius: 0.75rem;
  background: var(--surface);
  color: var(--trust);
}
.contact-info .icon-box svg { width: 1.25rem; height: 1.25rem; }
.contact-info .label { font-size: 0.875rem; color: var(--muted-foreground); }
.contact-info .value { font-size: 1.125rem; font-weight: 600; color: var(--navy); text-decoration: none; }
.contact-info .value:hover { color: var(--trust); }
.contact-info .sub { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy); color: #fff; }
.footer__inner { padding: 4rem 0; }
.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; text-align: left; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }

.footer__brand { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 768px) { .footer__brand { align-items: flex-start; } }
.footer__brand img { height: 3.5rem; width: auto; }
.footer__brand p { margin-top: 1rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; max-width: 20rem; }
.footer__social { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.footer__social a {
  display: grid; place-items: center;
  height: 2.5rem; width: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: background-color 0.2s, color 0.2s;
}
.footer__social a:hover { background: var(--gold); color: var(--gold-foreground); }
.footer__social svg { width: 1rem; height: 1rem; }

.footer h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.9); }
.footer ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer ul li, .footer ul a { font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); }
.footer ul a { text-decoration: none; background: none; border: none; padding: 0; text-align: inherit; font: inherit; cursor: pointer; }
.footer ul a:hover { color: var(--gold); }

.footer__bottom {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; text-align: left; } }
.footer__bottom-links { display: flex; align-items: center; gap: 1rem; }
.footer__bottom-links a { font-size: 0.6875rem; color: rgba(255, 255, 255, 0.4); text-decoration: none; }
.footer__bottom-links a:hover { color: rgba(255, 255, 255, 0.7); }
.footer__bottom-links .sep { color: rgba(255, 255, 255, 0.2); }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  z-index: 40;
  user-select: none;
}
@media (min-width: 768px) { .whatsapp-float { bottom: 1.75rem; right: 1.75rem; } }
.whatsapp-float__btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 3.5rem; width: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
@media (min-width: 768px) { .whatsapp-float__btn { height: 4rem; width: 4rem; } }
.whatsapp-float__btn:hover { transform: scale(1.05); }
.whatsapp-float__btn svg { position: relative; z-index: 10; width: 1.75rem; height: 1.75rem; }
@media (min-width: 768px) { .whatsapp-float__btn svg { width: 2rem; height: 2rem; } }
.whatsapp-float__btn::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.6;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Hide scrollbar on mobile while keeping scroll functionality */
@media (max-width: 767px) {
  html, body { scrollbar-width: none; }
  html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; }
}
