/* ===========================
   MEREDIAN LABS — styles.css
   =========================== */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a2e3b;
  --navy-lt: #253d4e;
  --gold:    #c9a96e;
  --gold-lt: #dfc08d;
  --cream:   #f8f5f0;
  --white:   #ffffff;
  --text:    #2d3748;
  --muted:   #6b7a8d;
  --border:  #e2ddd7;
  --sans: 'Inter', system-ui, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --radius: 12px;
  --shadow: 0 4px 32px rgba(26,46,59,0.08);
  --shadow-lg: 0 12px 64px rgba(26,46,59,0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; border-radius: 10px; padding: 16px; }

/* ── Section common ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

/* ━━━━━━━━━━━━━━━━━━━━
   NAVBAR
   ━━━━━━━━━━━━━━━━━━━━ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 24px 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(26,46,59,0.06);
  padding: 16px 0;
}
#navbar.scrolled .logo-mark { background: var(--navy); }
#navbar.scrolled .logo-text { color: var(--navy); }
#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--navy); }
#navbar.scrolled .nav-cta { background: var(--gold) !important; color: var(--navy) !important; }
#navbar.scrolled .burger span { background: var(--navy); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.825rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.25) !important;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--navy);
  padding-top: 100px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--white);
  display: block;
}
.mobile-menu a:hover { color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━ */
#hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--navy) 0%, #0e1f2a 60%, #162a36 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  background: var(--gold);
}
.shape-1 { width: 700px; height: 700px; top: -200px; right: -200px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: 5%; opacity: 0.06; }
.shape-3 { width: 200px; height: 200px; top: 30%; right: 30%; opacity: 0.08; }

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px; height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,0.3);
  animation: spin 20s linear infinite;
  background: conic-gradient(from 0deg, transparent 80%, rgba(201,169,110,0.4) 100%);
}
.badge-inner {
  text-align: center;
  z-index: 1;
  color: var(--white);
}
.badge-num { display: block; font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; }
.badge-txt { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; line-height: 1.4; }

@keyframes spin { to { transform: rotate(360deg); } }

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-line {
  display: block;
  width: 1.5px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ━━━━━━━━━━━━━━━━━━━━
   STATS
   ━━━━━━━━━━━━━━━━━━━━ */
#stats {
  background: var(--cream);
  padding: 48px 40px;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.stat-item p {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
}

/* ━━━━━━━━━━━━━━━━━━━━
   SERVICES
   ━━━━━━━━━━━━━━━━━━━━ */
#services {
  padding: 120px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}
.service-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-link:hover { color: var(--navy); }

/* ━━━━━━━━━━━━━━━━━━━━
   ABOUT
   ━━━━━━━━━━━━━━━━━━━━ */
#about {
  background: var(--navy);
  padding: 120px 0;
  overflow: hidden;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
  border-radius: 16px;
  height: 520px;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-overlay-text {
  text-align: center;
  color: var(--gold);
}
.img-overlay-text span:first-child {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.year {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
}
.about-pill {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}
.about-pill svg { width: 18px; height: 18px; flex-shrink: 0; }

#about .section-label { color: var(--gold-lt); }
#about .section-title { color: var(--white); }
.about-copy p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.check-icon {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━
   TEAM
   ━━━━━━━━━━━━━━━━━━━━ */
#team {
  padding: 120px 0;
  background: var(--cream);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.team-photo { height: 200px; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.photo-placeholder svg { width: 80px; height: 80px; }
.photo-placeholder.female { background: linear-gradient(135deg, #f0e8d8, #e8ddc8); }
.photo-placeholder.male { background: linear-gradient(135deg, #d8e4ec, #c8d8e4); }
.team-info { padding: 24px; }
.team-info h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
   ━━━━━━━━━━━━━━━━━━━━ */
#results {
  padding: 120px 0;
  background: var(--white);
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: var(--transition);
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: none;
}
.testimonial-card.active { display: flex; flex-direction: column; gap: 20px; }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--navy);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { font-size: 0.78rem; color: var(--muted); }
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testimonial-nav button:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.testimonial-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ━━━━━━━━━━━━━━━━━━━━
   CTA BAND
   ━━━━━━━━━━━━━━━━━━━━ */
#cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0e1f2a 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
#cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#cta-band h2 em {
  font-style: italic;
  color: var(--gold);
}

/* ━━━━━━━━━━━━━━━━━━━━
   CONTACT
   ━━━━━━━━━━━━━━━━━━━━ */
#contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}
.contact-row svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; cursor: pointer; }
.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8f5e8;
  color: #2a6a2a;
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.hidden { display: none !important; }
.btn-loader {
  width: 18px; height: 18px;
  border: 2px solid rgba(26,46,59,0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: #0e1f2a;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 48px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 16px 0 24px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-disclaimer { font-size: 0.72rem !important; line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 48px; }
  .hero-badge { right: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  #hero { padding: 120px 24px 80px; }
  .hero-badge { display: none; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  #stats { padding: 40px 24px; }
  .stats-inner { flex-wrap: wrap; gap: 8px; }
  .stat-item { flex: 1 1 40%; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-placeholder { height: 280px; }
  .about-pill { right: 0; bottom: -16px; font-size: 0.72rem; padding: 12px 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  #cta-band { padding: 72px 24px; }
  .footer-inner { padding: 60px 24px 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 24px; }
  .section-header { margin-bottom: 40px; }
  #services, #team, #results, #contact { padding: 80px 0; }
  #about { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .stat-item { flex: 1 1 100%; }
  .footer-links { grid-template-columns: 1fr; }
}
