------WebKitFormBoundaryaBVAF8gb8Qd72FkV
Content-Disposition: form-data; name="files"; filename="styles.css"
Content-Type: text/css

/* =============================================================
   Right2Sleep — Global Stylesheet
   Colors: Navy #1B3A6B | Teal #26C5D2 | Lavender #9B89C4 | White #FFFFFF
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1B3A6B
  --navy-dark: #122a52;
  --teal:      #26C5D2;
  --teal-dark: #1aabb8;
  --lavender:  #9B89C4;
  --lav-light: #EEE9FF;
  --white:     #FFFFFF;
  --off-white: #F0F7FF;
  --gray-50:   #F8FAFC;
  --gray-100:  #EEF2F7;
  --gray-300:  #CBD5E1;
  --gray-600:  #475569;
  --gray-900:  #0F172A;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg: 0 8px 40px rgba(27,58,107,0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: var(--teal); text-decoration: none; transition: color .2s;
}
a:hover { color: var(--teal-dark); }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-600); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-teal { background: var(--teal); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38,197,210,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 16px rgba(27,58,107,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 84px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--off-white);
}
.nav-links .nav-cta a {
  background: var(--teal);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
}
.nav-links .nav-cta a:hover {
  background: var(--teal-dark);
  color: var(--white);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 60px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .9rem; max-width: 280px; margin-bottom: 20px; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .85rem;
  transition: background .2s;
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: #1a1f2e;
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  max-height: 338px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45));
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--teal);
  padding: 28px 0;
}
.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item { text-align: center; color: var(--white); }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.stat-label { font-size: .85rem; opacity: .85; margin-top: 4px; }

/* ── Cards ────────────────────────────────────────────────── */
.card-grid { display: grid; gap: 28px; }
.card-grid-3 { grid-template-columns: repeat(3,1fr); }
.card-grid-2 { grid-template-columns: repeat(2,1fr); }
.card-grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--gray-100);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card-icon.teal   { background: rgba(38,197,210,.12); }
.card-icon.navy   { background: rgba(27,58,107,.1); }
.card-icon.lav    { background: var(--lav-light); }
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }

/* ── Page Banner (inner pages) ────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4f8f 100%);
  padding: 70px 0 60px;
  text-align: center;
  color: var(--white);
}
.page-banner .eyebrow {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.page-banner h1 { color: var(--white); margin-bottom: 16px; }
.page-banner p  { color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── Accordion ────────────────────────────────────────────── */
.accordion { border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--gray-100); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background .2s;
}
.accordion-btn:hover { background: var(--off-white); }
.accordion-btn .acc-icon { font-size: 1.2rem; transition: transform .3s; flex-shrink: 0; }
.accordion-btn.open .acc-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 24px 20px; color: var(--gray-600); }
.accordion-body.open { display: block; }

/* ── Quote ────────────────────────────────────────────────── */
.quote-block {
  background: var(--lav-light);
  border-left: 4px solid var(--lavender);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 32px 0;
}
.quote-block p {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 10px;
}
.quote-block cite { font-size: .9rem; color: var(--gray-600); }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4f8f 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Audience Tabs ────────────────────────────────────────── */
.audience-tabs { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
}
.tab-btn:hover, .tab-btn.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Table ────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-head);
  font-size: .9rem;
}
.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: .95rem;
}
.data-table tr:nth-child(even) td { background: var(--off-white); }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--lavender));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-item h4 { color: var(--navy); margin-bottom: 6px; }

/* ── Form ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(38,197,210,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Badge / Tag ──────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-head);
}
.badge-teal   { background: rgba(38,197,210,.12); color: var(--teal-dark); }
.badge-navy   { background: rgba(27,58,107,.1);   color: var(--navy); }
.badge-lav    { background: var(--lav-light);      color: #6d5ca8; }

/* ── Hero Logo ────────────────────────────────────────────── */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 24px;
}
.hero-logo-img {
  max-height: 440px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45));
}

/* ── Photo Strip ──────────────────────────────────────────── */
.photo-strip {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.photo-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,107,0.82) 0%, rgba(26,171,184,0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.photo-strip-quote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  max-width: 780px;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  margin: 0;
}

/* ── Two-Column Section ───────────────────────────────────── */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-section .col-text h2 { margin-bottom: 16px; }
.two-col-section .col-text p  { margin-bottom: 20px; }

/* ── Mini Stats Grid ──────────────────────────────────────── */
.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.stats-mini-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--gray-100);
}
.stats-mini-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-mini-label {
  font-size: .82rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ── Benefits Infographic ─────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.benefit-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(38,197,210,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.benefit-icon svg { color: var(--teal); }
.benefit-item h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.benefit-item p {
  font-size: .88rem;
  margin: 0;
  line-height: 1.55;
}

/* ── Audience Cards ───────────────────────────────────────── */
.audience-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.card-audience {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.card-audience:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.featured-audience {
  border: 2px solid var(--teal);
  background: linear-gradient(145deg, #f0fdfe 0%, var(--white) 100%);
}
.featured-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercares;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.audience-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.featured-icon {
  background: rgba(38,197,210,.12);
}
.card-audience h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.card-audience p { font-size: .9rem; margin-bottom: 18px; }
.audience-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.audience-link:hover { color: var(--teal); gap: 10px; }
.featured-link { color: var(--teal); }
.featured-link:hover { color: var(--teal-dark); }

/* ── Quote Section ───────────────────────────────────────── */
.quote-section {
  background: var(--lav-light);
  padding: 64px 0;
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.45;
  font-style: italic;
}
.quote-section cite {
  font-size: .9rem;
  color: var(--gray-600);
  font-style: normal;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 70px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero p { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-logo-img { max-height: 338px; }
  .hero-visual img { max-height: 338px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35)); }

  /* Layout */
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2,1fr); }
  .two-col-section { grid-template-columns: 1fr; gap: 36px; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .audience-cards-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Photo strip */
  .photo-strip { height: 260px; }
  .photo-strip-quote { font-size: 1.1rem; }
}

@media (max-width: 600px) {
  /* Spacing */
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav-inner { padding: 10px 16px; }
  .nav-logo img { height: 68px; }

  /* Hero */
  .hero { padding: 52px 0 48px; }
  .hero-inner { gap: 24px; }
  .hero-logo-img { max-height: 270px; }
  .hero-visual img { max-height: 270px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Grids */
  .card-grid-3, .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-mini-grid { grid-template-columns: 1fr 1fr; }
  .audience-cards-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* Photo strip */
  .photo-strip { height: 200px; }
  .photo-strip-quote { font-size: 1rem; }

  /* Stats bar */
  .stats-bar-inner { gap: 32px; }
  .stat-num { font-size: 1.8rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brand img { height: 40px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Cards */
  .card { padding: 24px; }
  .card-audience { padding: 24px; }

  /* Page banner */
  .page-banner { padding: 50px 0 40px; }

  /* CTA banner */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Section header */
  .section-header { margin-bottom: 36px; }

  /* Audience tabs */
  .audience-tabs { gap: 8px; }
  .tab-btn { padding: 8px 16px; font-size: .85rem; }

  /* Quote section */
  .quote-section { padding: 48px 0; }
  .quote-section blockquote { font-size: 1.1rem; }
}

------WebKitFormBoundaryaBVAF8gb8Qd72FkV--
