/* =============================================
   Broderick Group — Main Stylesheet
   Forest & Amber / Bold & Modern
   ============================================= */

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

/* ── Variables ── */
:root {
  --cream:       #F8F5EE;
  --cream-dark:  #EDE8D8;
  --dark-brown:  #1C3A2A;
  --mid-brown:   #2E5E3E;
  --terracotta:  #D4872A;
  --terracotta-dark: #B8711F;
  --sage:        #7A9E82;
  --sage-light:  #E4EDE6;
  --warm-tan:    #C9A84C;
  --white:       #FFFFFF;
  --text-muted:  #5A6E5A;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 24px;
  --shadow:    0 4px 24px rgba(28,58,42,0.10);
  --shadow-lg: 0 8px 48px rgba(28,58,42,0.15);

  --max-w: 1140px;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark-brown);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 96px 0; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem);   font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }

p { font-size: 1.05rem; }

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  line-height: 1;
  vertical-align: middle;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,112,79,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--dark-brown);
  border-color: var(--dark-brown);
}
.btn-outline:hover {
  background: var(--dark-brown);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--dark-brown);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(247,243,236,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28,58,42,0.08);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(28,58,42,0.10);
}

.nav .container {
  height: 100%;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-brown);
  letter-spacing: -0.01em;
}

.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid-brown);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--dark-brown);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark-brown);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  padding: 24px 28px 32px;
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--mid-brown);
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.nav__mobile a:last-child { border-bottom: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 96px;
  background: var(--dark-brown);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(107,127,94,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(196,112,79,0.20) 0%, transparent 55%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__label { color: var(--warm-tan); }

.hero__headline {
  color: var(--white);
  margin-bottom: 24px;
}

.hero__headline em {
  font-style: normal;
  color: rgba(255,255,255,0.75);
}

.hero__sub {
  color: rgba(247,243,236,0.72);
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual — abstract booking UI mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(8px);
}

.mockup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.mockup__dots {
  display: flex;
  gap: 6px;
}

.mockup__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup__dots span:nth-child(1) { background: #FF6058; }
.mockup__dots span:nth-child(2) { background: #FFBD2E; }
.mockup__dots span:nth-child(3) { background: #29CA42; }

.mockup__title {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

.mockup__calendar {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}

.mockup__month {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--warm-tan);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mockup__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.mockup__days span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  padding: 4px 0;
  font-weight: 500;
}

.mockup__days .day {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  padding: 6px 2px;
  border-radius: 6px;
  cursor: pointer;
}

.mockup__days .day.active {
  background: var(--terracotta);
  color: var(--white);
  font-weight: 600;
}

.mockup__days .day.sage {
  background: rgba(107,127,94,0.35);
  color: rgba(255,255,255,0.85);
}

.mockup__slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup__slot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 14px;
}

.mockup__slot-time {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-align: left;
}

.mockup__slot-name {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.mockup__slot-badge {
  justify-self: center;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-booked  { background: rgba(196,112,79,0.3); color: #F4A882; }
.badge-avail   { background: rgba(107,127,94,0.3); color: #A8C09A; }
.badge-pending { background: rgba(201,168,124,0.3); color: #DFC69A; }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats {
  padding: 0;
  background: var(--terracotta);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide: 1px;
}

.stats__item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stats__item:last-child { border-right: none; }

.stats__num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stats__desc {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════
   PRODUCT OVERVIEW
══════════════════════════════════════ */
.overview {
  background: var(--cream);
}

.overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview__content .label { margin-bottom: 12px; }

.overview__content h2 {
  margin-bottom: 20px;
}

.overview__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.overview__content p:last-of-type { margin-bottom: 32px; }

.overview__visual {
  background: var(--dark-brown);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.overview__visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(107,127,94,0.25), transparent 70%);
  border-radius: 50%;
}

.overview__visual::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(196,112,79,0.2), transparent 70%);
  border-radius: 50%;
}

.overview__feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.overview__feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(247,243,236,0.85);
  font-size: 0.95rem;
}

.overview__feature-list li .icon {
  width: 32px; height: 32px;
  background: rgba(196,112,79,0.2);
  border: 1px solid rgba(196,112,79,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features {
  background: var(--sage-light);
}

.features__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.features__header h2 { margin-bottom: 16px; }
.features__header p  { color: var(--text-muted); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(28,58,42,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.icon-terracotta { background: rgba(212,135,42,0.13); }
.icon-sage       { background: rgba(122,158,130,0.15); }
.icon-brown      { background: rgba(46,94,62,0.12); }
.icon-tan        { background: rgba(201,168,76,0.18); }
.icon-dark       { background: rgba(28,58,42,0.08); }
.icon-green      { background: rgba(122,158,130,0.20); }

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark-brown);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   WHO IT'S FOR
══════════════════════════════════════ */
.audience {
  background: var(--dark-brown);
  position: relative;
  overflow: hidden;
}

.audience::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(107,127,94,0.15), transparent 65%);
}

.audience::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(196,112,79,0.12), transparent 65%);
}

.audience__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.audience .label { color: var(--warm-tan); }

.audience h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.audience__lead {
  color: rgba(247,243,236,0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.audience__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
}

.audience-card:hover {
  background: rgba(255,255,255,0.10);
}

.audience-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.audience-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.audience-card p {
  font-size: 0.88rem;
  color: rgba(247,243,236,0.6);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  background: var(--cream);
  text-align: center;
}

.cta-section__inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p  { color: var(--text-muted); margin-bottom: 40px; font-size: 1.1rem; }

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--dark-brown);
  padding: 56px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  color: rgba(247,243,236,0.55);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--warm-tan);
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  font-size: 0.9rem;
  color: rgba(247,243,236,0.55);
  transition: color 0.2s;
}

.footer__col ul a:hover { color: var(--cream); }

.footer__bottom {
  border-top: 1px solid rgba(247,243,236,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(247,243,236,0.35);
}

/* Footer logo (dark bg version) */
.footer .nav__logo-name { color: var(--cream); }
.footer .nav__logo-sub  { color: rgba(247,243,236,0.45); }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  background: var(--dark-brown);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(107,127,94,0.15) 0%, transparent 65%);
}

.contact-hero > * { position: relative; z-index: 1; }
.contact-hero .label { color: var(--warm-tan); }
.contact-hero h1 { color: var(--white); margin-bottom: 16px; }
.contact-hero p  { color: rgba(247,243,236,0.65); max-width: 520px; margin: 0 auto; font-size: 1.1rem; }

.contact-body {
  background: var(--cream);
  padding: 80px 0 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(28,58,42,0.06);
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 1.7rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid-brown);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid rgba(28,58,42,0.14);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--dark-brown);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,112,79,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232E5E3E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius);
  margin-top: 8px;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success__icon {
  width: 72px; height: 72px;
  background: rgba(107,127,94,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.form-success h3 {
  color: var(--dark-brown);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(28,58,42,0.06);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--dark-brown);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item__icon {
  width: 38px; height: 38px;
  background: rgba(196,112,79,0.10);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item__text label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info-item__text span,
.contact-info-item__text a {
  font-size: 0.92rem;
  color: var(--dark-brown);
  font-weight: 500;
}

.contact-info-item__text a:hover { color: var(--terracotta); }

.contact-callout {
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
}

.contact-callout h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-callout p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav__links,
  .nav__cta { display: none; }

  .nav__hamburger { display: flex; }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual { display: none; }

  .stats__inner {
    grid-template-columns: 1fr;
  }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stats__item:last-child { border-bottom: none; }

  .overview__grid,
  .audience__inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features__grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 32px 24px; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}
