:root {
  --blue: #3D6EEE;
  --cream: #FDF1D7;
  --text: #5D5B5B;
  --orange: #F49926;
  --purple: #9C70F7;
  --coral: #F75D45;
  --green: #05C24C;
  --pink: #F968D9;
  --dark: #0A0B0D;
  --cream-soft: #F1EEE9;
  --max: 1440px;
  --radius: 16px;
  --header-h: 88px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}

h1, h2, h3, h4, .display {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0;
}

/* ========== HEADER ========== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: var(--cream);
}

.site-header.is-fixed {
  position: fixed;
  background: rgba(253, 241, 215, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(13, 11, 13, 0.06);
  animation: dropIn .45s ease;
}

.header-inner {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-mark {
  font-family: "Anton", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-mark .c1 { color: var(--blue); }
.logo-mark .c2 { color: var(--coral); }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a:not(.btn) {
  font-weight: 500;
  color: var(--blue);
  font-size: 0.95rem;
  position: relative;
  padding: 8px 14px;
  border-radius: 8px;
}

.nav a:not(.btn):hover { color: var(--coral); background: rgba(61, 110, 238, 0.06); }

.nav a:not(.btn).is-active {
  color: var(--coral);
}

.nav a:not(.btn).is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.nav-cta { margin-left: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border: 0;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  transition: .25s ease;
  line-height: 1;
}

.btn:hover { background: var(--blue); color: var(--cream); }

.btn-cream {
  background: var(--cream);
  color: var(--purple);
}

.btn-cream:hover { background: #fff; color: var(--blue); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding-left: 0;
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: var(--orange);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--cream);
  content: "";
  transition: transform .2s ease, top .2s ease, background .2s ease;
}

.menu-toggle span { top: 21px; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

body.nav-open .menu-toggle span { background: transparent; }
body.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 13, 0.42);
  z-index: 90;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: var(--cream);
  padding: 140px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(3.2rem, 9.4vw, 10vw);
  color: var(--blue);
  text-transform: uppercase;
  text-align: center;
  max-width: 16ch;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title .accent { color: var(--coral); }

.hero-sub {
  text-align: center;
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.hero-sub .chip {
  display: inline;
  background: var(--coral);
  color: var(--cream);
  padding: 2px 8px;
  border-radius: 6px;
}

.float-img {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: floatY 5s ease-in-out infinite;
}

.float-img img,
.float-img svg {
  width: 100%;
  height: auto;
}

.float-a { width: 22%; top: 12%; left: 8%; animation-delay: 0s; }
.float-b { width: 18%; bottom: 8%; right: 8%; animation-delay: 1s; }
.float-c {
  width: 14%;
  top: 22%;
  right: 16%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(61, 110, 238, 0.2);
  animation-delay: .6s;
}
.float-d {
  width: 12%;
  bottom: 18%;
  left: 10%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(247, 93, 69, 0.2);
  animation-delay: 1.4s;
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-blue { background: var(--blue); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-purple { background: var(--purple); color: var(--cream); }

.eyebrow {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--orange);
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.title-xl {
  font-size: clamp(2.6rem, 5.4vw, 4.5vw);
  color: var(--cream);
}

.title-xl .c-coral { color: var(--coral); }
.title-xl .c-green { color: var(--green); }
.title-xl .c-pink { color: var(--pink); }
.title-xl .c-purple { color: var(--purple); }
.title-xl .c-orange { color: var(--orange); }

.title-xl.dark { color: var(--blue); }

.lead {
  color: var(--cream);
  max-width: 38ch;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: end;
}

.split-end { align-items: flex-end; }

.desk-gap { height: 8vh; }

.rounded-photo {
  width: 100%;
  height: 35em;
  object-fit: cover;
  border-radius: var(--radius);
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

/* ========== SERVICE CARDS ========== */
.cards-3 {
  display: flex;
  gap: 24px;
  margin-top: 50px;
  align-items: stretch;
}

.card {
  flex: 1;
  border-radius: var(--radius);
  padding: 32px;
  color: var(--cream);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  transition: transform .5s ease;
}

.card:hover { transform: translateY(-10px); }

.card-coral { background: var(--coral); }
.card-green { background: var(--green); margin-top: 48px; }
.card-purple { background: var(--purple); }
.card-orange { background: var(--orange); }
.card-pink { background: var(--pink); }
.card-blue { background: var(--blue); }

.card-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
}

.card-icon svg { width: 64px; height: 64px; }

.card h3 {
  font-size: 2.2rem;
  margin: 16px 0;
  text-transform: uppercase;
}

.card p {
  margin: 0 0 auto;
  color: var(--cream);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.04em;
  margin-top: 24px;
  padding-top: 16px;
  color: var(--cream);
}

.card-link:hover { gap: 14px; }

/* ========== MEGA CTA ========== */
.mega-cta {
  text-align: center;
  padding: 100px 24px;
}

.mega-cta h2 {
  font-size: clamp(2.8rem, 9vw, 10vw);
  text-transform: uppercase;
  max-width: 18ch;
  margin: 0 auto 36px;
  color: var(--cream);
}

.mega-cta h2 .accent { color: var(--pink); }

/* ========== BRANDS ========== */
.brands-head {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--cream);
  margin-bottom: 40px;
}

.brands-head span { color: var(--coral); }

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 36s linear infinite;
  align-items: center;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  box-shadow: none;
  height: 72px;
  width: 160px;
  padding: 0;
  flex-shrink: 0;
}

.brand-logo img {
  height: 56px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.15);
}

/* ========== WHY / STATS ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.why-copy p { color: var(--cream); margin: 0 0 18px; }

.why-photo {
  min-height: 20em;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}

.stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.stat { min-width: 160px; flex: 1; }

.live-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E8C48A;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E8C48A;
  box-shadow: 0 0 0 0 rgba(232, 196, 138, 0.7);
  animation: livePulse 1.6s ease-out infinite;
}

.stat-num {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  color: var(--cream);
  line-height: 0.85;
}

.stat-label {
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(253, 241, 215, 0.78);
  margin-top: 10px;
  max-width: 16ch;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 196, 138, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(232, 196, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 196, 138, 0); }
}

/* ========== SHOWCASE ACCORDION ========== */
.accordion {
  display: flex;
  height: 380px;
  gap: 8px;
  margin-top: 50px;
}

.acc-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  transition: flex .55s cubic-bezier(.22, 1, .36, 1);
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.acc-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #F1EEE900 0%, #3D6EEE36 100%);
}

.acc-item:hover,
.acc-item.is-open { flex: 2.2; }

.acc-item:hover::before,
.acc-item.is-open::before {
  background: linear-gradient(180deg, #F1EEE900 10%, #3D6EEEAA 100%);
}

.acc-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: var(--cream);
  width: 100%;
}

.acc-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.acc-content .btn { opacity: 0; transform: translateY(8px); transition: .3s ease; }
.acc-item:hover .btn,
.acc-item.is-open .btn { opacity: 1; transform: none; }

/* ========== TESTIMONIALS ========== */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.t-card {
  border-radius: var(--radius);
  padding: 32px;
  color: var(--cream);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.t-card p { margin: 12px 0 auto; }

.quote-ico { font-size: 42px; line-height: 1; opacity: .9; }

.t-who {
  margin-top: 16px;
}

.t-who strong {
  font-family: "Anton", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  display: block;
}

.t-who span { font-size: 0.9rem; opacity: .9; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--cream);
  padding: 80px 0 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 32px;
}

.foot-grid h4 {
  color: var(--blue);
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.foot-grid a,
.foot-grid li {
  color: var(--text);
  list-style: none;
}

.foot-grid ul { margin: 0; padding: 0; display: grid; gap: 10px; }

.foot-grid a:hover { color: var(--coral); }

.foot-cta {
  background: var(--cream);
  padding: 80px 0 100px;
}

.foot-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.foot-cta h2 {
  font-size: clamp(2.6rem, 6vw, 5.4vw);
  color: var(--blue);
  max-width: 12ch;
}

.foot-cta h2 span { color: var(--coral); }

.foot-cta p { max-width: 36ch; margin: 16px 0 0; }

.legal-bar {
  border-top: 1px solid rgba(61, 110, 238, 0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

/* ========== INNER PAGES ========== */
.page-hero {
  background: var(--blue);
  padding: 160px 0 80px;
  color: var(--cream);
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.4vw);
  text-transform: uppercase;
}

.page-hero h1 span { color: var(--coral); }

.crumb {
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 10px;
}

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

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

.soft-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(61, 110, 238, 0.08);
}

.price {
  font-family: "Anton", sans-serif;
  font-size: 3.4rem;
  color: var(--blue);
  line-height: 1;
}

.price small {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--text);
}

/* ========== FORM ========== */
.form {
  display: grid;
  gap: 14px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px 16px;
  background: #fff;
  color: var(--dark);
  font-size: 1rem;
}

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

.form label { font-weight: 500; color: var(--cream); font-size: 0.92rem; }

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--cream);
  font-size: 0.88rem;
}

.form-panel {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
}

/* ========== FAQ ========== */
.faq details {
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
}

.faq summary {
  font-family: "Anton", sans-serif;
  font-size: 1.25rem;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq details p { margin: 12px 0 0; }

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .8s ease forwards;
}

.reveal-d1 { animation-delay: .12s; }
.reveal-d2 { animation-delay: .24s; }
.reveal-d3 { animation-delay: .36s; }

.bounce-in {
  animation: bounceDown 1s cubic-bezier(.22, 1.4, .36, 1) both;
}

/* ========== WHATSAPP / COOKIES ========== */
.wa {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 120;
  box-shadow: 0 10px 24px rgba(244, 153, 38, .4);
}

body { padding-bottom: 24px; }

.cookies {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  background: var(--dark);
  color: var(--cream);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  z-index: 130;
  max-width: 920px;
  margin: 0 auto;
}

.cookies p { margin: 0; }
.cookies a { color: var(--orange); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-deny { background: transparent; border: 1px solid var(--cream); }

.cookies.hide { display: none; }

/* ========== 404 / THANKS ========== */
.center-page {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 160px 24px 80px;
  background: var(--cream);
}

.center-page h1 {
  font-size: clamp(4rem, 14vw, 12rem);
  color: var(--blue);
}

/* ========== ANIM ========== */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

@keyframes bounceDown {
  0% { opacity: 0; transform: translateY(-40px); }
  60% { opacity: 1; transform: translateY(8px); }
  100% { transform: none; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes dropIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .split, .why-grid, .grid-2, .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr 1fr; }
  .cards-3 { flex-wrap: wrap; }
  .card { min-width: 280px; }
  .card-green { margin-top: 0; }
  .rounded-photo { height: 22rem; }
  .nav { gap: 8px; }
}

@media (max-width: 860px) {
  body.nav-open { overflow: hidden; }

  .wrap, .header-inner { width: min(100% - 28px, var(--max)); }

  .site-header,
  .site-header.is-fixed {
    position: sticky;
    top: 0;
    padding: 12px 0;
    padding-top: max(12px, env(safe-area-inset-top));
    animation: none;
  }

  .logo-mark { font-size: 1.45rem; }

  .menu-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 12px; right: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: 0 18px 50px rgba(10, 11, 13, .18);
    max-height: calc(100dvh - 90px);
    overflow: auto;
    z-index: 110;
  }
  .nav.open { display: flex; }
  .nav a:not(.btn) {
    padding: 14px 16px;
    font-size: 1.05rem;
  }
  .nav a:not(.btn).is-active::after { display: none; }
  .nav a:not(.btn).is-active { background: rgba(247, 93, 69, 0.1); }
  .nav-cta {
    margin: 8px 0 4px;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
  }

  .float-img { display: none; }
  .desk-gap { display: none; }

  .hero {
    min-height: auto;
    padding: 24px 12px 36px;
  }
  .hero-title {
    font-size: clamp(2.05rem, 10.5vw, 2.85rem);
    max-width: 12ch;
  }
  .hero-sub {
    font-size: 1rem;
    margin-top: 18px;
    padding: 0 4px;
  }

  .section { padding: 48px 0; }
  .page-hero { padding: 40px 0 44px; }
  .page-hero h1 { font-size: clamp(2.1rem, 10.5vw, 2.9rem); }

  .title-xl { font-size: clamp(1.95rem, 9vw, 2.55rem); }
  .lead { max-width: none; }

  .split,
  .why-grid,
  .grid-2,
  .grid-3,
  .t-grid { grid-template-columns: 1fr; gap: 28px; }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .foot-grid > :first-child { grid-column: 1 / -1; }

  .rounded-photo,
  img.rounded-photo { height: 16rem !important; }
  .row-between { align-items: stretch; }
  .row-between .btn { width: 100%; justify-content: center; }
  .btn { min-height: 48px; }

  .cards-3 { flex-direction: column; margin-top: 28px; gap: 16px; }
  .card {
    min-height: 0;
    min-width: 0;
    padding: 24px;
  }
  .card:hover { transform: none; }
  .card-green { margin-top: 0; }
  .card h3 { font-size: 1.7rem; }
  .card-icon, .card-icon svg { width: 56px; height: 56px; }

  .mega-cta { padding: 56px 16px; }
  .mega-cta h2 { font-size: clamp(2rem, 10vw, 2.8rem); margin-bottom: 24px; }

  .brands-head { font-size: 1.8rem; margin-bottom: 20px; }
  .brand-logo { width: 120px; height: 56px; }
  .brand-logo img { height: 42px; }
  .marquee-track { gap: 16px; animation-duration: 28s; }
  .marquee:hover .marquee-track { animation-play-state: running; }

  .why-photo { min-height: 14em; }

  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
    margin-top: 36px;
  }
  .stat { min-width: 0; }
  .stat-num { font-size: 2.35rem; }
  .stat-label { font-size: 0.78rem; max-width: none; }

  .accordion { flex-direction: column; height: auto; gap: 8px; margin-top: 28px; }
  .acc-item,
  .acc-item:hover { flex: none; min-height: 118px; }
  .acc-item.is-open { min-height: 168px; }
  .acc-content { padding: 16px; }
  .acc-content h3 { font-size: 1.35rem; margin-bottom: 8px; }
  .acc-content .btn { opacity: 1; transform: none; }

  .t-card { min-height: 0; padding: 24px; }
  .t-grid { gap: 14px; }

  .soft-card { padding: 20px; }
  .soft-card .btn { width: 100%; justify-content: center; }

  .form-panel { padding: 22px 18px; }
  .form input,
  .form select,
  .form textarea {
    font-size: 16px;
    padding: 14px 14px;
  }
  .form textarea { min-height: 110px; }
  .form .btn { width: 100%; justify-content: center; }
  .check { font-size: 0.84rem; }
  .lead a, .foot-grid a { overflow-wrap: anywhere; }

  .site-footer { padding-top: 48px; }
  .foot-cta { padding: 40px 0 48px; }
  .foot-cta-box { align-items: stretch; }
  .foot-cta h2 { font-size: clamp(2.1rem, 12vw, 3rem); }
  .foot-cta .btn { width: 100%; justify-content: center; }
  .legal-bar {
    flex-direction: column;
    font-size: 0.82rem;
    padding: 20px 0 88px;
  }

  .wa {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
  body:has(.cookies:not(.hide)) .wa {
    visibility: hidden;
    pointer-events: none;
  }

  .cookies {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 14px;
  }
  .cookies p { font-size: 0.82rem; line-height: 1.4; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.9rem;
    min-height: 42px;
  }

  .center-page { padding: 48px 20px 80px; }
  .center-page h1 { font-size: clamp(3.4rem, 22vw, 6rem); }
}

@media (max-width: 480px) {
  .stats { gap: 18px 12px; }
  .stat-num { font-size: 1.85rem; }
  .hero { padding-bottom: 32px; }
  .section { padding: 40px 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.15rem, 13vw, 2.8rem); }
}
