:root {
  --blue: #064f93;
  --blue-deep: #083c72;
  --blue-soft: #edf7ff;
  --green: #18bd32;
  --green-deep: #079447;
  --green-soft: #effcf2;
  --teal: #06a889;
  --orange: #ff7a18;
  --ink: #102033;
  --muted: #637083;
  --line: rgba(8, 60, 114, 0.14);
  --paper: #f7fbff;
  --surface: rgba(255, 255, 255, 0.92);
  --shadow: 0 22px 58px rgba(6, 79, 147, 0.13);
  --pad: clamp(18px, 4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 88% 8%, rgba(24, 189, 50, 0.12), transparent 25rem),
    radial-gradient(circle at 8% 18%, rgba(6, 79, 147, 0.13), transparent 25rem),
    linear-gradient(135deg, var(--paper) 0%, #ffffff 46%, #f7fff8 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

main {
  overflow-x: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: var(--blue);
  background:
    radial-gradient(circle at 55% 45%, rgba(24, 189, 50, 0.13), transparent 16rem),
    linear-gradient(135deg, #f7fbff, #ffffff 52%, #f4fff6);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 22px 58px rgba(6, 79, 147, 0.18);
}

.loader-mark::before {
  position: absolute;
  inset: -7px;
  border: 4px solid rgba(6, 79, 147, 0.12);
  border-top-color: var(--green);
  border-right-color: var(--blue);
  border-radius: inherit;
  content: "";
  animation: loader-spin 950ms linear infinite;
}

.loader-mark img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  animation: loader-pulse 1200ms ease-in-out infinite;
}

.page-loader span {
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

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

@keyframes loader-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 100vw;
  padding: 14px var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 251, 255, 0.94);
  box-shadow: 0 10px 32px rgba(8, 60, 114, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  min-width: 0;
  max-width: 100%;
  color: var(--blue);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 9px 18px rgba(6, 79, 147, 0.12));
}

.brand span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand strong {
  color: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(8, 60, 114, 0.1);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  background: var(--blue-soft);
  outline: none;
}

.main-nav a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal) 58%, var(--green));
  box-shadow: 0 12px 28px rgba(6, 79, 147, 0.22);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--blue-deep);
}

.hero,
.content-section,
.image-story,
.stats-band,
.page-hero,
.contact-section {
  padding-right: var(--pad);
  padding-left: var(--pad);
}

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  grid-template-areas:
    "copy media"
    "proof media";
  gap: 20px 42px;
  align-items: center;
  padding-top: clamp(34px, 4.6vw, 66px);
  padding-bottom: clamp(36px, 4.8vw, 68px);
}

.hero-overlay {
  grid-area: copy;
  width: 100%;
  min-width: 0;
}

.hero-media {
  position: relative;
  width: 100%;
  grid-area: media;
  min-height: clamp(380px, 38vw, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-feature img,
.page-hero img,
.image-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-feature {
  grid-area: proof;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 8px 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 60, 114, 0.08);
}

.hero-feature img {
  grid-row: 1 / 3;
  height: 108px;
  border-radius: 8px;
}

.hero-feature span,
.hero-feature strong {
  grid-column: 2;
}

.hero-feature span,
.eyebrow,
.plan-label {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-feature strong {
  color: var(--blue-deep);
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  line-height: 1.34;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--blue-deep);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero-overlay h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 3.65vw, 4.15rem);
  font-weight: 900;
  line-height: 1.04;
  overflow-wrap: break-word;
}

.hero-overlay p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-action,
.secondary-action,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-action {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 16px 34px rgba(6, 79, 147, 0.2);
}

.secondary-action {
  color: var(--blue);
  border: 1px solid rgba(6, 79, 147, 0.22);
  background: #fff;
}

.text-link {
  min-height: 0;
  padding: 0;
  color: var(--blue);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-band article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.stats-band strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.5rem;
}

.stats-band span {
  color: var(--blue-deep);
  font-weight: 900;
}

.content-section {
  padding-top: clamp(46px, 6vw, 88px);
  padding-bottom: clamp(46px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.content-section.tinted {
  background: linear-gradient(135deg, rgba(237, 247, 255, 0.86), rgba(239, 252, 242, 0.9));
}

.section-heading {
  max-width: 980px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow),
.image-story p,
.page-hero p,
.feature-card p,
.price-card p,
.audience-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-grid,
.pricing-grid,
.audience-card-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.price-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 60, 114, 0.08);
}

.feature-card {
  min-height: 210px;
  padding: 24px;
}

.feature-card span,
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 0.82rem;
  font-weight: 900;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding-top: clamp(46px, 6vw, 90px);
  padding-bottom: clamp(46px, 6vw, 90px);
}

.image-story.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
}

.image-story img {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding-top: clamp(40px, 6vw, 88px);
  padding-bottom: clamp(36px, 5vw, 70px);
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4.2vw, 4.7rem);
  font-weight: 900;
}

.page-hero img {
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.price-card.highlighted {
  border-color: rgba(24, 189, 50, 0.42);
  box-shadow: 0 26px 68px rgba(6, 79, 147, 0.16);
}

.price-card h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #344054;
  line-height: 1.5;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.price-card .primary-action,
.price-card .secondary-action {
  margin-top: auto;
}

.audience-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(8, 60, 114, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(6, 79, 147, 0.14);
  isolation: isolate;
  transform: translateY(0) scale(1);
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 280ms ease,
    box-shadow 360ms ease,
    background 360ms ease;
}

.audience-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
  content: "";
  transform: scaleX(0.42);
  transform-origin: left;
  transition: transform 360ms ease;
}

.audience-card::after {
  position: absolute;
  top: -54px;
  right: -54px;
  z-index: -1;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 189, 50, 0.17), transparent 70%);
  content: "";
  opacity: 0.85;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 360ms ease, transform 360ms ease;
}

.audience-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(24, 189, 50, 0.34);
  box-shadow: 0 34px 86px rgba(6, 79, 147, 0.2);
}

.audience-card:hover::before {
  transform: scaleX(1);
}

.audience-card:hover::after {
  opacity: 1;
  transform: translate3d(-14px, 12px, 0) scale(1.18);
}

.audience-card .card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  box-shadow: 0 14px 30px rgba(6, 79, 147, 0.14);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.audience-card:hover .card-icon {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow: 0 20px 42px rgba(6, 79, 147, 0.2);
}

.audience-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
}

.audience-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 28px;
  color: #344054;
  line-height: 1.5;
  transition: color 220ms ease, transform 220ms ease;
}

.audience-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
  transition: transform 220ms ease;
}

.audience-card:hover li {
  color: var(--ink);
}

.audience-card:hover li:hover {
  transform: translateX(4px);
}

.audience-card:hover li:hover::before {
  transform: scale(1.15);
}

.audience-card .primary-action,
.audience-card .secondary-action {
  margin-top: auto;
}

.influencers-card {
  background: linear-gradient(180deg, #fff 0%, rgba(237, 247, 255, 0.78) 100%);
}

.brands-card {
  background: linear-gradient(180deg, #fff 0%, rgba(239, 252, 242, 0.82) 100%);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  padding-top: clamp(38px, 5vw, 72px);
  padding-bottom: clamp(52px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.contact-card,
.contact-form {
  padding: 28px;
}

.contact-points {
  display: grid;
  margin-top: 24px;
}

.contact-points span {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-points strong {
  display: block;
  color: var(--blue-deep);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 60, 114, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-deep);
  font-weight: 800;
}

.contact-form label:last-of-type {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(6, 79, 147, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(24, 189, 50, 0.12);
}

.contact-form button {
  justify-self: start;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 18px 38px rgba(6, 79, 147, 0.2);
  cursor: pointer;
  font-weight: 900;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--blue);
  font-weight: 900;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green);
  outline: none;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.whatsapp-button,
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(8, 60, 114, 0.18);
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
}

.whatsapp-button {
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-button svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #16bd58;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34);
  outline: none;
  transform: translateY(-2px);
}

.back-to-top {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-size: 1.15rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.effects-ready .animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

body.effects-ready .editorial-hero .animate-on-scroll,
body.effects-ready .page-hero .animate-on-scroll {
  opacity: 1;
  transform: none;
}

body.effects-ready .animate-on-scroll.slide-in-right {
  transform: translateX(24px);
}

body.effects-ready .animate-on-scroll.slide-in-left {
  transform: translateX(-24px);
}

body.effects-ready .animate-on-scroll.in-view {
  opacity: 1;
  transform: none;
}

body.effects-ready .animate-on-scroll.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

body.effects-ready .animate-on-scroll.stagger.in-view > * {
  opacity: 1;
  transform: none;
}

body.effects-ready .animate-on-scroll.stagger.in-view > *:nth-child(2) {
  transition-delay: 90ms;
}

body.effects-ready .animate-on-scroll.stagger.in-view > *:nth-child(3) {
  transition-delay: 180ms;
}

body.effects-ready .animate-on-scroll.stagger.in-view > *:nth-child(4) {
  transition-delay: 270ms;
}

.reveal-text span {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .audience-card,
  .audience-card::before,
  .audience-card::after,
  .audience-card .card-icon,
  .audience-card li,
  .audience-card li::before {
    transition: none;
  }

  .audience-card:hover,
  .audience-card:hover::after,
  .audience-card:hover .card-icon,
  .audience-card:hover li:hover,
  .audience-card:hover li:hover::before {
    transform: none;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    border-radius: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .editorial-hero,
  .page-hero,
  .image-story,
  .image-story.reverse,
  .contact-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "proof";
  }

  .hero-overlay,
  .hero-media,
  .hero-feature {
    grid-area: auto;
  }

  .hero-media {
    min-height: 400px;
  }

  .feature-grid,
  .feature-grid.four,
  .pricing-grid,
  .audience-card-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 16px;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
    max-width: 100vw;
  }

  .brand {
    flex: 1 1 auto;
    font-size: clamp(0.78rem, 3.5vw, 0.95rem);
    width: auto;
  }

  .brand span {
    max-width: calc(100vw - 100px);
  }

  .menu-toggle {
    flex: 0 0 46px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
  }

  body.nav-open .site-header {
    overflow: visible;
  }

  .editorial-hero,
  .page-hero,
  .image-story,
  .contact-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
  }

  .editorial-hero > *,
  .page-hero > *,
  .image-story > *,
  .contact-section > * {
    max-width: 100%;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .editorial-hero {
    padding-top: 28px;
  }

  .hero-overlay,
  .hero-media,
  .hero-feature,
  .page-hero,
  .image-story,
  .content-section,
  .contact-section {
    min-width: 0;
    max-width: 100%;
  }

  .hero-overlay {
    overflow: hidden;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    position: static;
    height: 280px;
  }

  .hero-feature {
    grid-template-columns: 1fr;
  }

  .hero-feature img {
    width: 100%;
    height: 170px;
  }

  .hero-overlay h1,
  .page-hero h1 {
    max-width: min(calc(100vw - 32px), 28ch);
    font-size: clamp(1.35rem, 5.1vw, 1.72rem);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-overlay p:not(.eyebrow),
  .page-hero p,
  .section-heading p:not(.eyebrow),
  .image-story p {
    max-width: calc(100vw - 32px);
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .stats-band,
  .feature-grid,
  .pricing-grid,
  .audience-card-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .page-hero img,
  .image-story img {
    min-height: 280px;
  }

  .feature-card,
  .price-card,
  .audience-card,
  .contact-card,
  .contact-form {
    padding: 20px;
  }

  .audience-card {
    min-height: auto;
  }

  .contact-form button,
  .form-status {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-actions {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    gap: 10px;
  }

  .whatsapp-button,
  .back-to-top {
    width: 48px;
    height: 48px;
    min-height: 48px;
  }

  .whatsapp-button svg {
    width: 27px;
    height: 27px;
  }
}
