:root {
  --blue-950: #03102F;
  --blue-900: #061A49;
  --blue-800: #082B7A;
  --blue-600: #075CDB;
  --blue-400: #23A8F2;
  --green: #19C66B;
  --yellow: #FFC400;
  --red: #F04438;
  --white: #FFFFFF;
  --text: #F6F9FF;
  --muted: rgba(246, 249, 255, 0.72);
  --ink: #10203F;
  --soft: #EEF5FF;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(3, 16, 47, 0.24);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(35, 168, 242, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-900);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(8, 43, 122, 0.1);
  backdrop-filter: blur(20px);
}

.header-bar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: auto;
  height: 54px;
  max-width: 170px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(16, 32, 63, 0.72);
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--blue-600);
}

.header-cta,
.button,
.contact-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  box-shadow: 0 12px 26px rgba(7, 92, 219, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 43, 122, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-900);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(8, 43, 122, 0.1);
}

.mobile-menu nav {
  display: grid;
  gap: 6px;
  padding: 14px 0 18px;
}

.mobile-menu a {
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 800;
  background: var(--soft);
}

.hero {
  position: relative;
  --pointer-x: 50%;
  --pointer-y: 42%;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--text);
  background:
    radial-gradient(760px 420px at 18% 22%, rgba(35, 168, 242, 0.34), transparent 70%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 46%, #010817);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(520px 280px at var(--pointer-x) var(--pointer-y), rgba(35, 168, 242, 0.24), transparent 72%),
    conic-gradient(from 130deg at 50% 50%, rgba(7, 92, 219, 0), rgba(7, 92, 219, 0.34), rgba(25, 198, 107, 0.18), rgba(255, 196, 0, 0.16), rgba(7, 92, 219, 0));
  opacity: 0.42;
  filter: blur(18px);
  transform: rotate(0deg) scale(1.08);
  animation: heroField 18s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 62%, transparent);
  opacity: 0.22;
  animation: gridDrift 18s linear infinite;
  pointer-events: none;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-line {
  position: absolute;
  width: 58vw;
  height: 2px;
  left: -18vw;
  border-radius: 999px;
  opacity: 0;
  transform: rotate(-18deg);
  animation: lightSweep 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.line-blue {
  top: 22%;
  background: linear-gradient(90deg, transparent, rgba(35, 168, 242, 0.85), transparent);
  box-shadow: 0 0 28px rgba(35, 168, 242, 0.45);
}

.line-green {
  top: 52%;
  animation-delay: 1.8s;
  background: linear-gradient(90deg, transparent, rgba(25, 198, 107, 0.7), transparent);
  box-shadow: 0 0 26px rgba(25, 198, 107, 0.34);
}

.line-yellow {
  top: 72%;
  animation-delay: 3.4s;
  background: linear-gradient(90deg, transparent, rgba(255, 196, 0, 0.72), transparent);
  box-shadow: 0 0 24px rgba(255, 196, 0, 0.32);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 2;
  width: min(48vw, 680px);
  opacity: 0.42;
  mix-blend-mode: luminosity;
  transform: scale(1.03);
  animation: heroImageReveal 1.2s ease both;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(3, 16, 47, 0.98) 0%, rgba(3, 16, 47, 0.86) 48%, rgba(3, 16, 47, 0.38) 100%),
    linear-gradient(180deg, transparent 58%, rgba(3, 16, 47, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 92px 0 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue-400);
}

.hero .eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(12px);
  animation: contentRise 0.8s ease 0.12s forwards;
}

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

h1,
h2,
h3 {
  color: inherit;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7vw, 6.25rem);
  line-height: 0.96;
  opacity: 0;
  transform: translateY(18px);
  animation: contentRise 0.9s ease 0.24s forwards;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(18px);
  animation: contentRise 0.9s ease 0.36s forwards;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(18px);
  animation: contentRise 0.9s ease 0.48s forwards;
}

.button {
  padding: 0 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.header-cta:hover,
.contact-card a:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--yellow), #FFE06B);
  box-shadow: 0 16px 30px rgba(255, 196, 0, 0.22);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.proof-band {
  width: min(100%, 880px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
  animation: contentRise 0.9s ease 0.62s forwards;
}

.proof-band div {
  min-height: 118px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.proof-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
}

.proof-band span {
  color: var(--muted);
  font-weight: 700;
}

@keyframes heroField {
  0% {
    transform: rotate(0deg) scale(1.08);
  }
  100% {
    transform: rotate(360deg) scale(1.08);
  }
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 78px 78px, 78px 78px;
  }
}

@keyframes lightSweep {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(-18deg);
  }
  14% {
    opacity: 0.85;
  }
  42% {
    opacity: 0;
    transform: translateX(138vw) rotate(-18deg);
  }
  100% {
    opacity: 0;
    transform: translateX(138vw) rotate(-18deg);
  }
}

@keyframes heroImageReveal {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(1.08);
  }
  100% {
    opacity: 0.42;
    transform: translateX(0) scale(1.03);
  }
}

@keyframes contentRise {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

section {
  scroll-margin-top: 92px;
}

.pain-section,
.visual-proof,
.solutions,
.method,
.about,
.audience,
.contact {
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.split h2,
.section-head h2,
.method-copy h2,
.about h2,
.contact-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1.02;
  color: var(--blue-950);
}

.split > p,
.section-head > p,
.visual-copy p,
.method-copy p,
.about p,
.contact-head p {
  color: rgba(16, 32, 63, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.visual-proof {
  padding-top: 0;
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.visual-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
}

.image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 43, 122, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-card {
  aspect-ratio: 1 / 1;
}

.visual-copy h2 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1.02;
  color: var(--blue-950);
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.mini-list span {
  min-height: 92px;
  display: flex;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(8, 43, 122, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(8, 43, 122, 0.06);
}

.mini-list span:nth-child(1) {
  border-top: 4px solid var(--blue-400);
}

.mini-list span:nth-child(2) {
  border-top: 4px solid var(--green);
}

.mini-list span:nth-child(3) {
  border-top: 4px solid var(--yellow);
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head.compact {
  margin-bottom: 28px;
}

.solutions {
  background: var(--soft);
}

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

.service-card,
.values-card,
.method-panel,
.contact-shell {
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(8, 43, 122, 0.08);
}

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(8, 43, 122, 0.1);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.service-card.featured {
  color: var(--white);
  background:
    radial-gradient(280px 160px at 85% 20%, rgba(255, 196, 0, 0.22), transparent),
    linear-gradient(135deg, var(--blue-900), var(--blue-600));
}

.service-card span,
.contact-card span {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue-600);
}

.service-card.featured span {
  color: var(--yellow);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(16, 32, 63, 0.68);
  line-height: 1.62;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-icon {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 92, 219, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(35, 168, 242, 0.12), rgba(25, 198, 107, 0.1));
  color: var(--blue-600);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card.featured .service-icon {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--yellow);
}

.method {
  background: var(--blue-950);
}

.method-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(420px 260px at 14% 10%, rgba(35, 168, 242, 0.16), transparent),
    rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.method-copy h2 {
  color: var(--white);
}

.method-copy p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.steps article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps strong {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--yellow);
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 48% center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.values-card {
  width: min(92%, 430px);
  margin: -96px auto 0;
  position: relative;
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(25, 198, 107, 0.18), transparent 38%),
    var(--blue-900);
}

.values-card h3 {
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.values-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-card li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  line-height: 1.62;
}

.values-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.audience {
  padding-top: 0;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-grid span {
  padding: 13px 18px;
  border: 1px solid rgba(8, 43, 122, 0.12);
  border-radius: 999px;
  background: var(--soft);
  font-weight: 800;
  color: var(--blue-900);
}

.contact {
  background:
    radial-gradient(580px 300px at 70% 12%, rgba(35, 168, 242, 0.18), transparent),
    var(--blue-950);
}

.contact-shell {
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.contact-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.contact-head h2 {
  color: var(--white);
}

.contact-head p {
  color: var(--muted);
}

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

.contact-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.contact-card.muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.22rem, 2vw, 1.85rem);
  overflow-wrap: anywhere;
}

.contact-card p {
  color: rgba(16, 32, 63, 0.68);
  line-height: 1.6;
}

.contact-card.muted p {
  color: var(--muted);
}

.contact-card a {
  width: max-content;
  margin-top: 8px;
  padding: 0 20px;
  color: var(--blue-950);
  background: var(--yellow);
}

.site-footer {
  padding: 70px 0 22px;
  background: #020613;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 22px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid img {
  width: 168px;
  max-width: 45vw;
  height: auto;
}

.footer-grid p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(246, 249, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.5;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #073B1F;
  background: var(--green);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(25, 198, 107, 0.28);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(880px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(3, 16, 47, 0.96);
  color: var(--text);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  color: var(--white);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-accept {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--yellow);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-accept:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu[aria-hidden="false"] {
    display: block;
  }

  .hero-media {
    width: 100%;
    opacity: 0.24;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(3, 16, 47, 0.86), rgba(3, 16, 47, 0.96));
  }

  .proof-band,
  .split,
  .visual-grid,
  .service-grid,
  .method-panel,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .method-panel,
  .contact-shell {
    padding: 30px;
  }

  .mini-list {
    grid-template-columns: 1fr;
  }

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

  .values-card {
    margin-top: -52px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    background: rgba(255, 255, 255, 0.94);
  }

  .header-bar {
    min-height: 72px;
    gap: 12px;
  }

  .brand img {
    height: 52px;
    max-width: 132px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }

  .hero {
    min-height: auto;
    display: block;
    align-items: flex-start;
    padding-top: 1px;
  }

  .hero-content {
    padding: 22px 0 46px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    z-index: 4;
    width: min(100% - 28px, var(--max));
    height: 218px;
    margin: 16px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    opacity: 1;
    mix-blend-mode: normal;
    transform: none;
    animation: none;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
  }

  .hero-media img {
    object-position: 50% 28%;
  }

  .hero-overlay {
    background:
      radial-gradient(480px 260px at 50% 8%, rgba(35, 168, 242, 0.15), transparent 70%),
      linear-gradient(180deg, rgba(3, 16, 47, 0.82), rgba(3, 16, 47, 0.98)),
      linear-gradient(90deg, rgba(3, 16, 47, 0.98), rgba(3, 16, 47, 0.82));
  }

  .hero .eyebrow {
    max-width: 100%;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 24px;
    font-size: 0.64rem;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
  }

  .hero h1 {
    max-width: 13.5ch;
    margin-bottom: 16px;
    font-size: clamp(2.15rem, 9.4vw, 2.75rem);
    line-height: 1.06;
  }

  .hero-text {
    max-width: 34ch;
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .cta-row {
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .proof-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .proof-band div {
    min-height: auto;
    padding: 12px 10px;
  }

  .proof-band strong {
    margin-bottom: 4px;
    font-size: 1.12rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .proof-band span {
    display: block;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .pain-section,
  .visual-proof,
  .solutions,
  .method,
  .about,
  .audience,
  .contact {
    padding: 72px 0;
  }

  .about {
    padding-top: 64px;
  }

  .about-media > img {
    aspect-ratio: 1 / 1;
    object-position: 50% 22%;
  }

  .audience {
    padding-top: 0;
  }

  .service-card {
    min-height: 220px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 78px;
  }

  .cookie-accept {
    width: 100%;
  }
}
