/* ============================================================
   FOLOFY — Shared Design System CSS
   Used by: index.html, about.html, services.html, contact.html
   Color Palette: #083731 | #FFFEFD | #010101
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --brand:        #083731;
  --brand-mid:    #0a4a40;
  --brand-light:  #0d5c4f;
  --brand-accent: #083731;

  /* Surface colors */
  --cream:        #FFFEFD;
  --beige:        #f5f4f0;
  --beige2:       #eeede9;
  --warm-white:   #FFFEFD;

  /* Dark surfaces */
  --dark:         #010101;
  --dark2:        #050505;

  /* Text */
  --text-primary:   #010101;
  --text-secondary: #3a3a3a;
  --text-muted:     #7a7a7a;

  /* Borders — derived from brand */
  --border:       rgba(8,55,49,0.12);
  --border-light: rgba(8,55,49,0.06);

  /* Radii */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(8,55,49,0.07);
  --shadow-md: 0 12px 36px rgba(8,55,49,0.10);
  --shadow-lg: 0 24px 56px rgba(8,55,49,0.13);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--warm-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,254,253,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,254,253,0.97);
  height: 64px;
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  letter-spacing: -0.01em; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--brand);
  border-radius: 2px; transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--brand); }
.nav-cta {
  background: var(--brand); color: var(--cream);
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: all 0.25s ease;
  display: flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--brand-mid); transform: translateY(-1px); }
.nav-mobile-btn { display: none; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--cream); flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-menu ul li a {
  display: block; padding: 16px 0;
  font-size: 26px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu ul li a:hover { color: var(--brand); padding-left: 8px; }
.mobile-menu-cta {
  background: var(--brand); color: var(--cream);
  padding: 16px 28px; border-radius: 100px;
  font-size: 16px; font-weight: 600; text-align: center;
  margin-top: 32px; display: block; transition: background 0.2s;
}
.mobile-menu-cta:hover { background: var(--brand-mid); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; background: var(--beige);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary); transition: background 0.2s;
}
.mobile-menu-close svg { width: 16px; height: 16px; }
.mobile-menu-close:hover { background: var(--beige2); }
.nav-mobile-btn.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-mobile-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-btn.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile-btn span { transition: transform 0.3s ease, opacity 0.3s ease; }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  padding: 160px 40px 100px;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 20%, rgba(8,55,49,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.page-hero-left { position: relative; z-index: 1; }
.page-hero-right { position: relative; z-index: 1; }
.page-hero-img {
  border-radius: var(--radius-xl); overflow: hidden;
  height: 440px; position: relative;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,254,253,0.94); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.page-hero-img-badge-icon {
  width: 40px; height: 40px; background: var(--brand);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.page-hero-img-badge-icon svg { width: 20px; height: 20px; color: var(--cream); }
.page-hero-img-badge h4 { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.page-hero-img-badge p { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== SECTION COMMON ===== */
section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(8,55,49,0.07); color: var(--brand);
  padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 20px;
}
.section-label-dot {
  width: 6px; height: 6px; background: var(--brand);
  border-radius: 50%; flex-shrink: 0;
}

.section-title {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--text-primary);
}
.section-title em { font-style: italic; font-weight: 300; color: var(--brand); }

.section-sub {
  font-size: 17px; color: var(--text-secondary); max-width: 500px;
  margin-top: 16px; line-height: 1.65;
}

.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; gap: 40px;
}
.section-header-row .section-sub { margin-top: 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--brand); color: var(--cream);
  padding: 14px 30px; border-radius: 100px;
  font-size: 15px; font-weight: 500;
  transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: -0.01em; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--brand-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(8,55,49,0.25); }

.btn-secondary {
  background: transparent; color: var(--brand);
  padding: 14px 30px; border-radius: 100px;
  border: 1.5px solid rgba(8,55,49,0.25);
  font-size: 15px; font-weight: 500;
  transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--brand); background: rgba(8,55,49,0.05); }

.btn-white {
  background: var(--cream); color: var(--brand);
  padding: 14px 30px; border-radius: 100px;
  font-size: 15px; font-weight: 600;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { background: rgba(255,254,253,0.88); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(1,1,1,0.2); }

.btn-ghost-white {
  background: transparent; color: rgba(255,254,253,0.8);
  padding: 14px 30px; border-radius: 100px;
  border: 1.5px solid rgba(255,254,253,0.25);
  font-size: 15px; font-weight: 500; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost-white:hover { border-color: rgba(255,254,253,0.6); color: var(--cream); }

/* ===== BADGE ===== */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(8,55,49,0.07); border: 1px solid rgba(8,55,49,0.15);
  color: var(--brand); padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--brand); border-radius: 50%;
}

/* ===== FEATURE ROWS ===== */
.feat-row {
  display: flex; gap: 16px; padding: 22px;
  background: var(--beige); border-radius: var(--radius);
  border: 1px solid var(--border-light); transition: all 0.3s ease;
  align-items: flex-start;
}
.feat-row:hover { background: var(--beige2); transform: translateX(4px); }
.feat-icon {
  width: 44px; height: 44px; background: var(--brand);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg { width: 20px; height: 20px; color: var(--cream); }
.feat-text h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.feat-text p { font-size: 13px; color: var(--text-secondary); margin-top: 4px; line-height: 1.55; }

/* ===== STAT BLOCKS ===== */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card {
  background: var(--beige); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: all 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); background: var(--beige2); box-shadow: var(--shadow-sm); }
.stat-num {
  font-size: 48px; font-weight: 800; letter-spacing: -0.04em;
  color: var(--text-primary); line-height: 1;
}
.stat-num span { color: var(--brand); }
.stat-lbl { font-size: 13px; color: var(--text-muted); margin-top: 8px; font-weight: 500; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card { border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.35s ease; }
.team-card:hover { transform: translateY(-6px); }
.team-avatar {
  height: 280px; position: relative; overflow: hidden;
  background: var(--brand); display: flex; align-items: center; justify-content: center;
}
.team-avatar img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.team-info {
  background: var(--cream); padding: 20px;
  border: 1px solid var(--border-light); border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.team-info h4 { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.team-info p { font-size: 13px; color: var(--text-secondary); margin-top: 3px; }
.team-quote {
  font-size: 12px; color: var(--text-muted); margin-top: 10px;
  line-height: 1.5; font-style: italic;
  border-top: 1px solid var(--border-light); padding-top: 10px;
}

/* ===== TESTIMONIALS ===== */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.test-card {
  background: var(--beige); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px; transition: all 0.35s ease;
}
.test-card:hover { background: var(--beige2); transform: translateY(-3px); }
.test-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.test-stars svg { width: 16px; height: 16px; fill: var(--brand); }
.test-quote { font-size: 15px; line-height: 1.65; color: var(--text-primary); margin-bottom: 24px; }
.test-author { display: flex; gap: 12px; align-items: center; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0; background: var(--brand);
}
.test-avatar img { width: 100%; height: 100%; object-fit: cover; }
.test-name { font-size: 14px; font-weight: 700; }
.test-company { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--cream); border: 1px solid var(--border-light);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(8,55,49,0.22); }
.faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; background: none; border: none;
  text-align: left; gap: 16px;
}
.faq-trigger h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); flex: 1; }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s ease;
}
.faq-icon svg { width: 14px; height: 14px; color: var(--text-muted); transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--brand); border-color: var(--brand); }
.faq-item.open .faq-icon svg { color: var(--cream); transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-body { max-height: 300px; }
.faq-body p { padding: 0 24px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ===== CTA BOX ===== */
.cta-section { background: var(--cream); padding: 80px 40px 120px; }
.cta-box {
  background: var(--brand); border-radius: var(--radius-xl);
  padding: 80px; text-align: center; position: relative; overflow: hidden;
  max-width: 960px; margin: 0 auto;
}
.cta-box::before {
  content: ''; position: absolute;
  top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,254,253,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-box::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,254,253,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-label {
  background: rgba(255,254,253,0.10); color: rgba(255,254,253,0.72);
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.cta-box h2 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 800; color: var(--cream);
  letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-box h2 em { font-style: italic; font-weight: 300; color: rgba(255,254,253,0.65); }
.cta-box p { color: rgba(255,254,253,0.58); font-size: 17px; margin-bottom: 40px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== MARQUEE STRIP ===== */
.brands-strip {
  padding: 52px 40px;
  background: var(--beige);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.brands-strip-label {
  text-align: center; font-size: 12px; color: var(--text-muted);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 32px;
}
.marquee-track { overflow: hidden; }
.marquee-list {
  display: flex; gap: 60px; align-items: center;
  animation: marquee 28s linear infinite; width: max-content;
}
.marquee-item {
  font-size: 17px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text-muted); white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.marquee-item::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; background: var(--brand); opacity: 0.35;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); padding: 80px 40px 40px;
  border-top: 1px solid rgba(255,254,253,0.06);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand img { height: 32px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,254,253,0.38); line-height: 1.65; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px; background: rgba(255,254,253,0.06);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: rgba(255,254,253,0.4);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: rgba(255,254,253,0.14); color: var(--cream); }
.footer-col h5 {
  font-size: 12px; font-weight: 700; color: rgba(255,254,253,0.45);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { color: rgba(255,254,253,0.38); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,254,253,0.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,254,253,0.28); }
.footer-bottom a { color: rgba(255,254,253,0.38); }
.footer-bottom a:hover { color: var(--cream); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.anim-fade-up { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.anim-delay-1 { animation-delay: 0.2s; }
.anim-delay-2 { animation-delay: 0.4s; }
.anim-delay-3 { animation-delay: 0.6s; }
.anim-delay-4 { animation-delay: 0.8s; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.pricing-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: all 0.35s ease; position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: var(--brand); border-color: var(--brand); transform: scale(1.04); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--text-primary); color: var(--cream); padding: 4px 16px;
  border-radius: 100px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
.pricing-plan { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; color: var(--text-muted); }
.pricing-card.featured .pricing-plan { color: rgba(255,254,253,0.5); }
.pricing-price { font-size: 48px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.pricing-card.featured .pricing-price { color: var(--cream); }
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
.pricing-price sub { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-card.featured .pricing-price sub { color: rgba(255,254,253,0.42); }
.pricing-desc { font-size: 13px; color: var(--text-secondary); margin: 12px 0 28px; }
.pricing-card.featured .pricing-desc { color: rgba(255,254,253,0.58); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; gap: 10px; font-size: 14px; color: var(--text-secondary); align-items: flex-start; }
.pricing-card.featured .pricing-features li { color: rgba(255,254,253,0.75); }
.pricing-features li svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .pricing-features li svg { color: rgba(255,254,253,0.7); }
.pricing-btn {
  display: block; text-align: center; padding: 13px 24px;
  border-radius: 100px; font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--text-primary);
  background: transparent; transition: all 0.25s; cursor: pointer;
}
.pricing-btn:hover { background: var(--brand); border-color: var(--brand); color: var(--cream); }
.pricing-card.featured .pricing-btn { background: var(--cream); color: var(--brand); border-color: var(--cream); }
.pricing-card.featured .pricing-btn:hover { background: rgba(255,254,253,0.88); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn {
    display: block; background: none; border: none;
    cursor: pointer; padding: 8px; z-index: 1001; position: relative;
  }
  .nav-mobile-btn span { display: block; width: 22px; height: 2px; background: var(--brand); margin: 4px 0; }
  .mobile-menu { display: flex; }
  section { padding: 72px 20px; }
  .page-hero { padding: 120px 20px 72px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-img { height: 300px; }
  .section-header-row { flex-direction: column; gap: 16px; align-items: flex-start; }
  .test-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 48px 24px; }
  .brands-strip { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
