/* ================================================================
   Egypt Pass — Archaeological Guide
   Utility-first lite + minimal BEM
   Palette: royal purple #4a2c6d / #5e3a86 | ochre #d39a3a | #fff
   Fonts: "Helvetica Neue", Arial (geometric sans)
   Container: 1240px | Base: 16px | Buttons: pill (radius 999px)
   ================================================================ */

/* ---- Variables ---- */
:root {
  --purple:       #4a2c6d;
  --purple-mid:   #5e3a86;
  --purple-light: #7b5aa6;
  --purple-pale:  #f3eefa;
  --ochre:        #d39a3a;
  --ochre-light:  #e8bb6f;
  --ochre-pale:   #fdf6e8;
  --white:        #ffffff;
  --gray-50:      #f8f7fa;
  --gray-100:     #eeecf3;
  --gray-200:     #d8d4e4;
  --gray-400:     #9d98b0;
  --gray-600:     #5c5772;
  --gray-800:     #2d2840;
  --black:        #1a1628;

  --text:         var(--black);
  --text-soft:    var(--gray-600);
  --border:       var(--gray-200);

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  999px;

  --shadow-sm:    0 1px 4px rgba(74,44,109,.08);
  --shadow-md:    0 4px 18px rgba(74,44,109,.12);
  --shadow-lg:    0 12px 40px rgba(74,44,109,.16);

  --container:    1240px;
  --gap:          2rem;
  --section-gap:  5rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--purple-mid); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
input, select, textarea, button { font: inherit; }
h1,h2,h3,h4,h5 { line-height: 1.2; }

/* ---- Utilities ---- */
.container  { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.flex       { display: flex; }
.flex-col   { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-6 { gap: 3rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.text-center { text-align: center; }
.text-sm    { font-size: .875rem; }
.text-lg    { font-size: 1.125rem; }
.text-xl    { font-size: 1.375rem; }
.font-bold  { font-weight: 700; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.w-full { width: 100%; }
.section { padding: var(--section-gap) 0; }
.section--alt { background: var(--gray-50); }
.section--purple { background: var(--purple); color: var(--white); }
.section--ochre-pale { background: var(--ochre-pale); }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: .75rem;
}

/* ---- Headings ---- */
.h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -.02em; }
.h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -.01em; }
.h3 { font-size: 1.25rem; font-weight: 700; }
.h4 { font-size: 1rem; font-weight: 700; }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--text-soft); }
.lead--light { color: rgba(255,255,255,.82); }

/* ---- Section header helper ---- */
.section-header { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section-header .h2 { margin-bottom: .75rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .12s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--ochre); outline-offset: 3px; }

.btn--primary {
  background: var(--ochre);
  color: var(--white);
  border-color: var(--ochre);
}
.btn--primary:hover { background: var(--ochre-light); border-color: var(--ochre-light); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--outline-dark {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn--outline-dark:hover { background: var(--purple); color: var(--white); }

.btn--sm { padding: .5rem 1.25rem; font-size: .875rem; }

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--purple);
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo:hover { text-decoration: none; }
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--purple);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 900;
  flex-shrink: 0;
}
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav__link {
  padding: .5rem .875rem;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: background .15s, color .15s;
  text-decoration: none;
}
.site-nav__link:hover { background: var(--gray-100); color: var(--purple); text-decoration: none; }
.site-nav__link--active { background: var(--purple-pale); color: var(--purple); font-weight: 700; }
.site-nav__cta { margin-left: .5rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--purple);
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle__bar + .nav-toggle__bar { margin-top: 5px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(rgba(26,22,40,.55), rgba(74,44,109,.72)),
              url("../img/hero.jpg") center / cover no-repeat;
  color: var(--white);
  padding: 7rem 0 5rem;
  text-align: center;
  overflow: hidden;
}
.hero__eyebrow { color: var(--ochre-light); }
.hero__title { color: var(--white); margin-bottom: 1.25rem; }
.hero__lead { max-width: 680px; margin: 0 auto 2.5rem; color: rgba(255,255,255,.88); font-size: 1.2rem; line-height: 1.7; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__counters {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
}
.counter__number { font-size: 2.5rem; font-weight: 900; color: var(--ochre-light); line-height: 1; }
.counter__label  { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: .375rem; }

/* ---- Cards (media-top style) ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: .625rem;
}
.card__title { font-size: 1.125rem; font-weight: 700; color: var(--purple); margin-bottom: .75rem; }
.card__text  { font-size: .9375rem; color: var(--text-soft); line-height: 1.6; flex: 1; }
.card__link  { margin-top: 1.25rem; font-size: .9rem; font-weight: 700; color: var(--purple-mid); }
.card__link:hover { color: var(--ochre); }

/* ---- Features list ---- */
.feature-item { display: flex; gap: 1.25rem; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--purple); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.feature-text h3 { font-size: 1rem; font-weight: 700; margin-bottom: .375rem; color: var(--purple); }
.feature-text p  { font-size: .9375rem; color: var(--text-soft); line-height: 1.6; }

/* ---- Split section ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split--reverse .split__visual { order: -1; }
.split__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split__content h2 { margin-bottom: 1rem; }
.split__content p  { margin-bottom: 1.25rem; color: var(--text-soft); }

/* ---- Stats bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-item__value { font-size: 2rem; font-weight: 900; color: var(--purple); line-height: 1; }
.stat-item__label { font-size: .875rem; color: var(--text-soft); margin-top: .375rem; }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.plan {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--border);
  position: relative;
}
.plan--featured {
  border-color: var(--purple);
  box-shadow: var(--shadow-lg);
}
.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .875rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.plan__name    { font-size: .875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ochre); }
.plan__price   { font-size: 2.5rem; font-weight: 900; color: var(--purple); line-height: 1; margin: .625rem 0; }
.plan__price sup { font-size: 1rem; vertical-align: super; font-weight: 700; }
.plan__period  { font-size: .875rem; color: var(--text-soft); }
.plan__desc    { font-size: .9375rem; color: var(--text-soft); margin: 1rem 0; line-height: 1.55; }
.plan__divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
.plan__feature { font-size: .9rem; color: var(--text-soft); padding: .375rem 0; display: flex; gap: .625rem; align-items: flex-start; }
.plan__feature::before { content: ""; width: 16px; height: 16px; background: var(--ochre); border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.plan__cta { margin-top: 1.5rem; width: 100%; text-align: center; justify-content: center; }

/* ---- FAQ accordion ---- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:focus-visible { outline: 2px solid var(--ochre); outline-offset: 2px; border-radius: 4px; }
.faq-icon { flex-shrink: 0; transition: transform .25s; }
.faq-item--open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s;
}
.faq-answer p { padding-bottom: 1.25rem; color: var(--text-soft); line-height: 1.7; }
.faq-item--open .faq-answer { max-height: 600px; }

/* ---- Team ---- */
.team-card { text-align: center; }
.team-card__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--purple-pale);
}
.team-card__name  { font-size: 1rem; font-weight: 700; color: var(--purple); }
.team-card__role  { font-size: .875rem; color: var(--ochre); font-weight: 600; margin: .25rem 0; }
.team-card__bio   { font-size: .875rem; color: var(--text-soft); line-height: 1.6; }

/* ---- Testimonials ---- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--ochre);
}
.testimonial__stars { color: var(--ochre); font-size: 1.125rem; letter-spacing: 2px; margin-bottom: .75rem; }
.testimonial__text  { font-size: .9375rem; line-height: 1.7; color: var(--text-soft); margin-bottom: 1rem; }
.testimonial__author { font-size: .875rem; font-weight: 700; color: var(--purple); }
.testimonial__meta   { font-size: .8rem; color: var(--gray-400); }

/* ---- Contact form ---- */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(94,58,134,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-consent { font-size: .8125rem; color: var(--text-soft); margin-top: .375rem; }
.form-consent a { color: var(--purple-mid); }
.form-status { display: none; padding: .875rem 1.25rem; border-radius: var(--radius-md); font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.form-status--success { background: #e6f4ed; color: #1a6636; border: 1px solid #b8dfc9; display: block; }
.form-status--error   { background: #fce8e8; color: #8c1f1f; border: 1px solid #f0c0c0; display: block; }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; gap: .5rem; font-size: .875rem; color: var(--text-soft); flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb__sep { color: var(--gray-400); }

/* ---- Page hero ---- */
.page-hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
}
.page-hero__eyebrow { color: var(--ochre-light); }
.page-hero__title { color: var(--white); margin-bottom: .75rem; }
.page-hero__lead  { color: rgba(255,255,255,.82); max-width: 640px; }

/* ---- Info box ---- */
.info-box {
  background: var(--purple-pale);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--purple-mid);
}
.info-box h3 { color: var(--purple); font-size: 1rem; margin-bottom: .5rem; }
.info-box p  { font-size: .9375rem; color: var(--text-soft); line-height: 1.65; }

/* ---- Table ---- */
.compare-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.compare-table th { background: var(--purple); color: var(--white); padding: .875rem 1rem; text-align: left; font-weight: 700; }
.compare-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-soft); }
.compare-table tr:nth-child(even) td { background: var(--gray-50); }
.compare-table .tick { color: var(--ochre); font-weight: 700; }
.compare-table .cross { color: var(--gray-400); }

/* ---- Address / contact blocks ---- */
.contact-info-block { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.info-group h3 { font-size: 1rem; font-weight: 700; color: var(--purple); margin-bottom: .75rem; }
.info-group p, .info-group address {
  font-size: .9375rem;
  color: var(--text-soft);
  line-height: 1.7;
  font-style: normal;
}

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--purple-pale);
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ochre);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--ochre);
}
.timeline-item__year { font-size: .8rem; font-weight: 700; color: var(--ochre); letter-spacing: .06em; margin-bottom: .25rem; }
.timeline-item h3 { font-size: 1rem; font-weight: 700; color: var(--purple); margin-bottom: .375rem; }
.timeline-item p  { font-size: .9rem; color: var(--text-soft); line-height: 1.6; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: .875rem; }
.cta-banner p  { color: rgba(255,255,255,.82); max-width: 540px; margin: 0 auto 2rem; font-size: 1.0625rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-brand__logo:hover { text-decoration: none; }
.footer-brand p { font-size: .875rem; line-height: 1.7; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-legal address {
  font-style: normal;
  font-size: .8125rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
}
.footer-legal address strong { color: rgba(255,255,255,.8); }
.footer-copyright {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  text-align: right;
}

/* ---- Thank you page ---- */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  text-align: center;
}
.thankyou-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.thankyou-wrap h1 { font-size: 2.25rem; color: var(--purple); margin-bottom: 1rem; }
.thankyou-wrap p  { max-width: 480px; margin: 0 auto .875rem; color: var(--text-soft); }

/* ---- Privacy ---- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.375rem; font-weight: 700; color: var(--purple); margin: 2.5rem 0 .875rem; }
.prose h3 { font-size: 1.0625rem; font-weight: 700; color: var(--purple-mid); margin: 1.75rem 0 .625rem; }
.prose p  { font-size: .9375rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 1rem; }
.prose ul { margin: .875rem 0 1rem 1.25rem; }
.prose ul li { font-size: .9375rem; color: var(--text-soft); line-height: 1.7; margin-bottom: .375rem; list-style: disc; }
.prose a  { color: var(--purple-mid); }
.prose strong { color: var(--text); font-weight: 700; }

/* ---- Tag chips ---- */
.tag-chip {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: var(--radius-pill);
  background: var(--purple-pale);
  color: var(--purple);
}

/* ---- Highlight numbers ---- */
.highlight-number { font-size: 2rem; font-weight: 900; color: var(--purple); line-height: 1; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .grid-4   { grid-template-columns: repeat(2,1fr); }
  .grid-3   { grid-template-columns: repeat(2,1fr); }
  .split    { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__visual { order: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-info-block { grid-template-columns: 1fr; }
  .site-nav { display: none; flex-direction: column; gap: .25rem; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; box-shadow: var(--shadow-md); }
  .site-nav--open { display: flex; }
  .nav-toggle { display: flex; flex-direction: column; }
  .site-header { position: relative; }
}
@media (max-width: 720px) {
  :root { --section-gap: 3.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 5rem 0 4rem; }
  .hero__counters { gap: 1.5rem; }
  .counter__number { font-size: 1.875rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; }
  .footer-copyright { text-align: left; }
  .cta-banner { padding: 2.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .stats-bar { grid-template-columns: 1fr; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
