/* ── TOKENS ─────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --bg-1:        #f0f0f0;
  --bg-2:        #f8f8f8;
  --gold:        #f9b000;
  --gold-dim:    rgba(249,176,0,.10);
  --gold-glow:   rgba(249,176,0,.22);
  --w100:        #000000;
  --w60:         rgba(0,0,0,.60);
  --w30:         rgba(0,0,0,.30);
  --w10:         rgba(0,0,0,.10);
  --w06:         rgba(0,0,0,.06);
  --w04:         rgba(0,0,0,.04);
  --g-bg:        rgba(0,0,0,.04);
  --g-bd:        rgba(0,0,0,.09);
  --f:           'Poppins', sans-serif;
  --ease:        cubic-bezier(.25,.46,.45,.94);
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--w100);
  font-family: var(--f);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── GRAIN ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ── GLASS UTIL ─────────────────────────────── */
.glass {
  background: var(--g-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--g-bd);
  color: var(--w100)
}

/* ── VISUALLY HIDDEN ────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ── FADE-IN ────────────────────────────────── */
.fi {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fi.on { opacity: 1; transform: none; }
.fi.d1 { transition-delay: .10s; }
.fi.d2 { transition-delay: .20s; }
.fi.d3 { transition-delay: .30s; }
.fi.d4 { transition-delay: .40s; }

/* ── BTN BASE ───────────────────────────────── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #000;
  font-family: var(--f); font-size: 15px; font-weight: 600;
  padding: 15px 30px; border-radius: 100px; border: none;
  min-height: 52px; cursor: pointer; text-decoration: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn-wa:hover  { opacity: .88; transform: translateY(-2px); box-shadow: 0 14px 36px var(--gold-glow); }
.btn-wa:active { transform: scale(.97); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--w100);
  font-family: var(--f); font-size: 15px; font-weight: 400;
  padding: 14px 30px; border-radius: 100px;
  border: 1px solid var(--w30); min-height: 52px;
  cursor: pointer; text-decoration: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
  color: #000;
}
.btn-ghost:hover { border-color: var(--w60); background: var(--w06); }

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 5vw, 80px);
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--g-bd);
}
.nav__logo { height: 32px; width: auto; }
.nav__cta  { font-size: 13px; padding: 10px 20px; min-height: 44px; }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
  padding: 100px clamp(16px, 5vw, 80px) clamp(60px, 8vw, 100px);
}
.hero__bg {
  position: absolute; inset: 0; will-change: transform;
  background:
    radial-gradient(ellipse 75% 65% at 72% 42%, rgba(249,176,0,.06) 0%, transparent 58%),
    radial-gradient(ellipse 55% 70% at 12% 80%, rgba(249,176,0,.03) 0%, transparent 52%),
    var(--bg);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* ── HERO VISUAL (logo) ─────────────────────── */
.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.hero__product {
  position: relative;
  width: min(100%, 380px); height: 380px;
  display: flex; align-items: center; justify-content: center;
  user-select: none; -webkit-user-select: none;
  filter: drop-shadow(0 0 48px rgba(249,176,0,.18)) drop-shadow(0 24px 64px rgba(0,0,0,.4));
  transition: filter .7s var(--ease), transform .7s var(--ease);
}
.hero__product:hover {
  filter: drop-shadow(0 0 80px rgba(249,176,0,.32)) drop-shadow(0 32px 80px rgba(0,0,0,.5));
  transform: scale(1.04) rotate(3deg);
}
.hero__prod-base {
  width: 100%;
  object-fit: contain;
  border-radius: 20px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 18px;
  font-family: var(--f); font-size: 11px; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase; color: var(--gold);
}
.hero__badge::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; } 50% { opacity: .4; }
}
.hero__h1 {
  font-family: var(--f);
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 800; line-height: 1.14;
  letter-spacing: -.022em;
  margin-bottom: 18px;
}
.hero__h1 em { font-style: normal; color: var(--gold); }
.hero__sub {
  font-family: var(--f); font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; color: var(--w60);
  line-height: 1.72; margin-bottom: 28px;
}
.hero__ctas {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
}
.hero__proof {
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.hero__proof-item {
  font-family: var(--f); font-size: 13px;
  font-weight: 400; color: var(--w60);
  display: flex; align-items: center; gap: 8px;
}
.hero__proof-item::before {
  content: ''; width: 4px; height: 4px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
.hero__proof-sep { width: 1px; height: 12px; background: var(--w30); }

/* ── SECTION WRAPPER ────────────────────────── */
.s {
  padding: clamp(24px, 3vw, 48px) clamp(16px, 5vw, 80px);
}
.s__inner { max-width: 1160px; margin: 0 auto; }
.s__eye {
  font-family: var(--f); font-size: 11px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.s__title {
  font-family: var(--f);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -.018em; margin-bottom: 14px;
}
.s__sub {
  font-family: var(--f); font-size: 15px;
  font-weight: 300; color: var(--w60);
  max-width: 520px; line-height: 1.72;
}

/* ── BENEFITS ───────────────────────────────── */
.benefits { background: var(--bg-1); }
.benefits__hd { max-width: 660px; margin-bottom: 24px; }
.benefits__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.benefit {
  padding: 32px 28px; background: var(--bg-2);
  position: relative;
}
.benefit:first-child { border-radius: 2px 0 0 2px; }
.benefit:last-child  { border-radius: 0 2px 2px 0; }
.benefit__num {
  font-family: var(--f); font-size: 11px; font-weight: 600;
  letter-spacing: .13em; color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.benefit__num::after {
  content: ''; flex: 1; height: 1px;
  background: var(--gold); opacity: .25; max-width: 36px;
}
.benefit__title {
  font-family: var(--f);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 700; line-height: 1.25;
  margin-bottom: 14px; letter-spacing: -.01em;
}
.benefit__text {
  font-family: var(--f); font-size: 14px;
  font-weight: 300; color: var(--w60); line-height: 1.8;
}

/* ── LOGOS 2D MARQUEE ───────────────────────── */
.logos-2d {
  background: var(--bg-1);
  padding: clamp(24px, 3vw, 48px) 0;
  overflow: hidden;
}
.logos-2d__hd {
  text-align: center;
  padding: 0 clamp(16px, 5vw, 80px);
  margin-bottom: 24px;
}
.logos-track-wrap {
  position: relative;
  overflow: hidden;
}
.logos-track-wrap::before,
.logos-track-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: clamp(60px, 8vw, 120px);
  z-index: 2; pointer-events: none;
}
.logos-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-1), transparent);
}
.logos-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-1), transparent);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-slot {
  flex-shrink: 0;
  height: 88px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter .3s var(--ease), transform .3s var(--ease);
}
.logo-slot:hover {
  filter: drop-shadow(0 0 12px rgba(249,176,0,.3));
  transform: translateY(-2px);
}
.logo-slot img {
  height: 60px; width: auto; max-width: 220px;
  object-fit: contain;
  opacity: .8;
  transition: opacity .3s var(--ease);
}
.logo-slot:hover img { opacity: 1; }
.logos-2d__note {
  text-align: center;
  padding: 36px clamp(16px, 5vw, 80px) 0;
  font-family: var(--f); font-size: 12px;
  color: var(--w30); letter-spacing: .04em;
}

/* ── FORM SECTION ───────────────────────────── */
.form-s { background: var(--bg-1); }
.form-s__in {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.form-s__h {
  font-family: var(--f);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -.018em; margin-bottom: 16px;
}
.form-s__sub {
  font-family: var(--f); font-size: 14px;
  font-weight: 300; color: var(--w60); line-height: 1.8;
}
.form-s__check {
  margin-top: 28px; display: flex; flex-direction: column; gap: 12px;
}
.form-s__check-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--f); font-size: 13px; color: var(--w60); line-height: 1.5;
}
.form-s__check-item::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%; background: var(--gold-dim);
  border: 1px solid rgba(249,176,0,.4);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.8 6.5L9 1' stroke='%23f9b000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}
.form-card { padding: 44px 40px; border-radius: 18px; background-color: #fff;}
.fg { margin-bottom: 18px; }
.fl {
  display: block; font-family: var(--f);
  font-size: 12px; font-weight: 500;
  color: var(--w60); margin-bottom: 7px; letter-spacing: .02em;
}
.fi-inp {
  width: 100%; background: rgb(171 171 171 / 5%);
  border: 1px solid var(--g-bd); border-radius: 10px;
  padding: 14px 16px; color: var(--w100);
  font-family: var(--f); font-size: 15px;
  outline: none; min-height: 52px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  -webkit-appearance: none;
}
.fi-inp::placeholder { color: var(--w30); }
.fi-inp:focus { border-color: var(--gold); background: rgba(0,0,0,.07); }
.fi-inp:focus-visible { outline: 2px solid rgba(249,176,0,.32); outline-offset: 2px; }
.btn-submit {
  width: 100%; background: var(--gold); color: #000;
  font-family: var(--f); font-size: 15px; font-weight: 600;
  padding: 16px; border-radius: 12px; border: none;
  cursor: pointer; min-height: 52px; margin-top: 8px;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn-submit:hover  { opacity: .88; }
.btn-submit:active { transform: scale(.98); }
.btn-submit:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.fg-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.fg-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.fg-checkbox label {
  font-size: 13px;
  font-weight: 300;
  color: var(--w60);
  line-height: 1.4;
  cursor: pointer;
}
.fg-checkbox label a {
  text-decoration: underline;
  transition: color .2s var(--ease);
}
.fg-checkbox label a:hover {
  color: var(--gold);
}

/* ── MOBILE STICKY CTA ──────────────────────── */
.mob-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 16px env(safe-area-inset-bottom, 16px);
  background: linear-gradient(to top, rgba(255,255,255,1) 60%, rgba(255,255,255,0));
  z-index: 700; pointer-events: none;
}
.mob-sticky a {
  pointer-events: all; width: 100%;
  justify-content: center; font-size: 15px;
}

/* ── WA FLOAT ───────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 20px;
  z-index: 800; display: flex; flex-direction: column;
  align-items: flex-end; gap: 10px;
}
.wa-tip {
  background: var(--bg-2); border: 1px solid var(--g-bd);
  color: var(--w100); font-family: var(--f); font-size: 13px;
  padding: 8px 14px; border-radius: 100px; white-space: nowrap;
  opacity: 0; transform: translateX(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  pointer-events: none;
  color: #000;
}
.wa-float:hover .wa-tip { opacity: 1; transform: none; }
.wa-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.32); position: relative;
  transition: transform .2s var(--ease);
}
.wa-btn:hover  { transform: scale(1.08); }
.wa-btn:active { transform: scale(.95); }
.wa-btn svg { width: 26px; height: 26px; fill: #fff; }
.wa-btn::before, .wa-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: wa-pulse 2.5s var(--ease) infinite;
}
.wa-btn::after { animation-delay: .9s; }
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--g-bd);
  padding: 36px clamp(16px, 5vw, 80px) 28px;
}
.footer__in { max-width: 1160px; margin: 0 auto; }
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--g-bd); margin-bottom: 36px;
}
.footer__logo { height: 50px; width: auto; }
.footer__tagline {
  font-family: var(--f); font-size: 15px;
  color: var(--w60); font-style: italic; margin-bottom: 14px;
}
.footer__contact p {
  font-family: var(--f); font-size: 14px;
  color: var(--w60); line-height: 1.85;
}
.footer__contact a { color: var(--w60); transition: color .2s var(--ease); }
.footer__contact a:hover { color: var(--gold); }
.footer__col-h {
  font-family: var(--f); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--w30); margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-family: var(--f); font-size: 14px; color: var(--w60); transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--w100); }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__soc {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--g-bd);
  display: flex; align-items: center; justify-content: center;
  color: var(--w60); min-height: 40px;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.footer__soc:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.footer__soc svg { width: 15px; height: 15px; fill: currentColor; }
.footer__partners { display: flex; align-items: center; gap: 20px; margin-top: 22px; }
.footer__partner {
  height: 50px; width: auto;
  filter: brightness(0) invert(0); opacity: .35;
  transition: opacity .2s var(--ease);
}
.footer__partner:hover { opacity: .65; filter:none; }
.footer__bot {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-family: var(--f); font-size: 12px; color: var(--w30); }

/* ── FOCUS GLOBAL ───────────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--w10); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--w30); }

/* ── RESPONSIVE 1024 ────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { gap: 32px; }
  .hero__product { width: min(100%, 360px); height: 360px; }
  .hero__visual { min-height: 360px; }
  .form-s__in { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ── RESPONSIVE 768 ─────────────────────────── */
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__visual { min-height: 240px; margin-bottom: 8px; }
  .hero__product { width: min(100%, 240px); height: 240px; }
  .benefits__grid { grid-template-columns: 1fr; gap: 2px; }
  .benefit:first-child { border-radius: 2px 2px 0 0; }
  .benefit:last-child  { border-radius: 0 0 2px 2px; }
  .benefit { padding: 32px 22px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { grid-column: 1; }
  .footer__bot { flex-direction: column; text-align: center; }
  .form-card { padding: 28px 20px; }
  .mob-sticky { display: flex; }
  .wa-float { bottom: 96px; right: 16px; }
  .footer { padding-bottom: 100px; }
}

/* ── RESPONSIVE 480 ─────────────────────────── */
@media (max-width: 480px) {
  .hero { padding-top: 88px; }
  .hero__h1 { font-size: 26px; letter-spacing: -.015em; }
  .hero__sub { font-size: 14px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .btn-wa, .btn-ghost { justify-content: center; width: 100%; }
  .hero__proof { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__proof-sep { display: none; }
  .nav__cta { padding: 9px 14px; font-size: 12px; }
  .s__title { font-size: 22px; }
  .benefit__title { font-size: 16px; }
  .form-card { border-radius: 14px; }
}

/* ── RESPONSIVE 375 ─────────────────────────── */
@media (max-width: 375px) {
  .hero__h1 { font-size: 24px; }
  .hero__badge { font-size: 11px; padding: 7px 14px; }
  .nav__logo { height: 28px; }
  .benefit { padding: 28px 18px; }
  .form-card { padding: 24px 16px; }
}

/* ── COOKIE BANNER ────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 999;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform .4s var(--ease), opacity .4s var(--ease), visibility .4s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-banner__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 50%;
  color: var(--gold);
}
.cookie-banner__title {
  font-family: var(--f);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}
.cookie-banner__text {
  font-family: var(--f);
  font-size: 13px;
  font-weight: 300;
  color: var(--w60);
  line-height: 1.6;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-banner__btn {
  font-family: var(--f);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid var(--g-bd);
  background: var(--w04);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.cookie-banner__btn:hover {
  background: var(--w06);
  border-color: var(--w30);
}
.cookie-banner__btn--accept {
  background: var(--gold);
  color: #000;
  font-weight: 600;
  border-color: var(--gold);
}
.cookie-banner__btn--accept:hover {
  opacity: .88;
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 20px;
    gap: 20px;
  }
  .cookie-banner__content {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-banner__text-wrap {
    max-width: 420px;
  }
}

