/* ============================================================
   FRACTAL MEDIA SOLUTIONS — Global Stylesheet
   Colors: #27806F (green), #FDF7EF (cream)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Variables ─── */
:root {
  --green:        #27806F;
  --green-dark:   #1f6358;
  --green-light:  #3da08c;
  --green-pale:   #d4ede9;
  --cream:        #FDF7EF;
  --cream-dark:   #f5ece0;
  --white:        #ffffff;
  --ink:          #1a2e2b;
  --ink-mid:      #3d5652;
  --ink-soft:     #6b8580;
  --border:       #ddeae8;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:   10px;
  --radius-lg: 18px;
  --shadow:   0 2px 12px rgba(39,128,111,0.10);
  --shadow-lg: 0 8px 40px rgba(39,128,111,0.14);

  --max-w: 1160px;
  --nav-h: 72px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--ink-mid); line-height: 1.75; }

/* ─── Layout helpers ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section + .section { margin-top: 40px; }
.section--sm { padding: 52px 0; }
.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--cream); }
.section--dark p { color: #a8c5c0; }

.section--green {
  background: var(--green);
}
.section--green h2,
.section--green h3,
.section--green p { color: var(--cream); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section--dark .section-label { color: var(--green-light); }
.section--green .section-label { color: var(--green-pale); }

.section-header { max-width: 640px; margin-bottom: 40px; }
.section-header p { margin-top: 14px; font-size: 1.15rem; }
.section-header--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(39,128,111,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(253,247,239,0.5);
}
.btn--outline-light:hover {
  background: rgba(253,247,239,0.12);
  border-color: var(--cream);
}
.btn--cream {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(39,128,111,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo img { height: 48px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-mid);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--green); }
.nav__cta { margin-left: 8px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.nav__mobile a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border: none; }
.nav__mobile.open { display: flex; }

/* ─── Hero ─── */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero__bg-shape {
  position: absolute;
  top: -120px; right: -180px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(39,128,111,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__content { max-width: 100%; position: relative; z-index: 1; }
.hero__heading-with-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: -80px;
}
.hero__heading-with-logo > div {
  flex: 1;
  max-width: 600px;
}
.hero__logo-top {
  display: none;
}
.hero__logo {
  height: 600px;
  width: auto;
  flex-shrink: 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 span { color: var(--green); }
.hero__sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 60px;
  color: var(--ink-mid);
}
.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ─── Service Cards & Carousel ─── */
.services-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 60px;
}
.services-wrapper .section-header {
  flex: 1;
  max-width: 100%;
}
.services-wrapper .section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}
.services-carousel-box {
  flex: 1;
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.services-carousel {
  display: flex;
  width: calc(100% - 100px);
  position: relative;
  align-items: center;
  justify-content: center;
}
.carousel-nav-button {
  position: absolute !important;
  bottom: 20px !important;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 20;
}
.carousel-nav-button:hover {
  background: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.6);
}
.carousel-nav-button.prev { left: 20px !important; top: auto !important; }
.carousel-nav-button.next { right: 20px !important; top: auto !important; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  flex-shrink: 0;
  width: 100%;
  min-width: 320px;
  cursor: pointer;
}
.services-carousel .service-card {
  display: none;
  width: 100%;
  max-width: 100%;
  min-width: unset;
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
}
.services-carousel .service-card.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-carousel .service-card__icon {
  display: none;
}
.services-carousel .service-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.services-carousel .service-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  max-width: 320px;
}
.services-carousel .service-card__link {
  color: rgba(255,255,255,0.9);
  margin-top: 24px;
  font-size: 0.9rem;
}
.services-carousel .service-card__link:hover {
  color: var(--white);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-pale);
}
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 10px; }

/* ─── Pricing Tables ─── */
.pricing-section { margin-bottom: 48px; }
.pricing-section h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green-pale);
}
.pricing-section .section-label { margin-bottom: 8px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.price-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-pale);
}
.price-card--featured {
  border-color: var(--green);
  border-width: 2px;
}
.price-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.price-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.price-card__price {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.price-card__price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.price-card__desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 8px;
  margin-bottom: 16px;
}
.price-card__features {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card__features li {
  font-size: 0.85rem;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-card__features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Podcast section ─── */
.podcast-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.podcast-card__art {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
}
.podcast-card__content .section-label { color: var(--green-light); }
.podcast-card__content h2 { color: var(--cream); }
.podcast-card__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
  background: rgba(253,247,239,0.12);
  color: var(--cream);
  border: 1px solid rgba(253,247,239,0.2);
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--cream); max-width: 500px; margin-bottom: 8px; }
.cta-banner p { color: rgba(253,247,239,0.75); }

/* ─── Team Cards ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.team-card__photo {
  height: 240px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.team-card__body { padding: 28px; }
.team-card__name { font-size: 1.2rem; margin-bottom: 4px; }
.team-card__title {
  font-size: 0.85rem;
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 14px;
}
.team-card__bio { font-size: 0.9rem; }

/* ─── AI Services ─── */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.ai-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.ai-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-pale);
}
.ai-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.ai-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.ai-card__desc { font-size: 0.9rem; margin-bottom: 16px; }
.ai-card__price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green);
  font-size: 0.95rem;
}

/* ─── Contact form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 14px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail__icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-detail__text span {
  font-size: 0.9rem;
  color: var(--ink-mid);
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(39,128,111,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand p {
  color: #8aada8;
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.65;
}
.footer__logo img { height: 44px; width: auto; filter: brightness(1.3); opacity: 1; }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 0.9rem;
  color: #8aada8;
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.82rem; color: #5a7a76; }
.footer__bottom a { color: var(--green-light); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #2a4e49 100%);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(39,128,111,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .section-label { color: var(--green-light); }
.page-hero h1 { color: var(--cream); margin-bottom: 16px; }
.page-hero p { color: #a8c5c0; font-size: 1.1rem; max-width: 580px; }

/* ─── Value props ─── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-item {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.value-item__num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 12px;
}
.value-item h4 { margin-bottom: 8px; }
.value-item p { font-size: 0.9rem; }

/* ─── Episode list ─── */
.episode-list { display: flex; flex-direction: column; gap: 16px; }
.episode-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.episode-card:hover { box-shadow: var(--shadow); border-color: var(--green-pale); }
.episode-card__num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-pale);
  min-width: 44px;
}
.episode-card__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.episode-card__meta { font-size: 0.82rem; color: var(--ink-soft); }
.episode-card__play {
  margin-left: auto;
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.episode-card:hover .episode-card__play {
  background: var(--green);
  color: var(--white);
}

/* ─── Divider ─── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .services-wrapper { flex-direction: column; gap: 40px; }
  .services-wrapper .section-header { max-width: 100%; }
  .services-carousel-box { min-height: 350px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .podcast-card { grid-template-columns: 1fr; }
  .podcast-card__art { max-width: 260px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero__heading-with-logo { flex-direction: column; gap: 32px; margin-bottom: 0; }
  .hero__logo { display: none; }
  .hero__logo-top { display: block; height: 420px; width: auto; margin: 0 auto 32px auto; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .cta-banner { flex-direction: column; padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 32px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .btn-group { flex-wrap: nowrap; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .contact-form { padding: 24px; }
}
