/* בוטק׳לה - premium AI assistant palette */
:root {
  --font: "Heebo", system-ui, sans-serif;

  /* רקעים */
  --bg: #060816;
  --bg-elev: #0f172a;
  --bg-card: #111827;
  --bg-problem: #060816;

  /* מותג סגול */
  --purple: #7c3aed;
  --purple-glow: #a855f7;
  --purple-hover: #c084fc;
  --purple-cta-hover: #8b5cf6;
  --purple-deep: #6d28d9;
  --purple-rgb: 124, 58, 237;

  /* טקסט */
  --white: #ffffff;
  --text-secondary: #cbd5e1;
  --muted: #94a3b8;
  --muted-dark: #64748b;

  /* קווים / משטחים */
  --line: rgba(124, 58, 237, 0.2);
  --line-subtle: rgba(148, 163, 184, 0.1);
  --surface-glass: rgba(17, 24, 39, 0.75);

  /* הצללות / glow */
  --glow: rgba(124, 58, 237, 0.35);
  --glow-blue: rgba(59, 130, 246, 0.2);
  --glow-focus: rgba(124, 58, 237, 0.12);

  --danger: #fb7185;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#mvp-content {
  position: relative;
  z-index: 1;
}

a {
  color: var(--purple);
}

a:hover {
  color: var(--white);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 8, 22, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.85rem clamp(1rem, 4vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.header__brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.header__brand-img {
  width: auto;
  height: 52px;
  max-width: min(220px, 55vw);
  object-fit: contain;
  border-radius: 0;
}

.header__brand-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.header__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--header {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--purple);
  box-shadow: none;
}

.btn--header:hover {
  border-color: var(--purple-hover);
  color: var(--purple-hover);
  background: rgba(var(--purple-rgb), 0.1);
}

.btn--header-app {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  box-shadow: 0 0 20px var(--glow);
}

.btn--header-app:hover {
  background: var(--purple-cta-hover);
  border-color: var(--purple-cta-hover);
  color: var(--white);
}

@media (max-width: 480px) {
  .header__actions .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }
}

.btn--hero {
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 0 40px var(--glow);
}

.btn--hero:hover {
  background: var(--purple-cta-hover);
  box-shadow: 0 0 48px var(--glow);
}

/* Hero - רקע לילה + overlay */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 12vw, 6rem) clamp(1rem, 4vw, 1.5rem);
  background: var(--bg-elev) url("../images/botkale-banner-night.png") center /
    cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 8, 22, 0.7) 0%,
    rgba(6, 8, 22, 0.82) 45%,
    rgba(6, 8, 22, 0.92) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 0.25rem;
  line-height: 0;
}

.hero__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(360px, 88vw);
  margin-inline: auto;
  object-fit: contain;
}

.hero__subtitle {
  margin: 0.4rem 0 1.25rem;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 600;
  color: var(--purple-glow);
}

.hero__lead {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.hero__tagline {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--white);
  opacity: 0.92;
}

.hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.btn--ghost {
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--purple);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: var(--purple-hover);
  color: var(--purple-hover);
  background: rgba(var(--purple-rgb), 0.08);
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 4.5rem) clamp(1rem, 4vw, 1.5rem);
}

.section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 420px;
}

.section__inner--split {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (max-width: 768px) {
  .section__inner--split {
    grid-template-columns: 1fr;
  }
}

.section__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}

.section__title--center {
  text-align: center;
}

/* Problem - כהה יותר */
.section--problem {
  background: var(--bg-problem);
  border-block: 1px solid var(--line);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.35rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* What - ימין טקסט, שמאל באנר (RTL) */
.section--what {
  background: var(--bg-elev);
}

.what__banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.what__list {
  margin: 0 0 1.5rem;
  padding: 0 1.25rem 0 0;
  list-style: disc;
  color: var(--muted);
  line-height: 1.8;
}

.what__list li {
  margin-bottom: 0.35rem;
}

.what__footer {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.95;
}

/* Social proof */
.section--proof {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.quote-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-inline-start: 2px solid var(--purple);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.quote-card__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  font-style: normal;
}

.quote-card__cite {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple-glow);
  font-style: normal;
}

/* How */
.section--how {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.steps-simple {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.steps-simple li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.steps-simple__n {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--glow);
}

/* CTA + form */
.section--cta {
  position: relative;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  width: 80%;
  max-width: 480px;
  height: 280px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse,
    var(--glow) 0%,
    var(--glow-blue) 45%,
    transparent 72%
  );
  opacity: 0.5;
  pointer-events: none;
}

.section--cta .section__inner {
  position: relative;
  z-index: 1;
}

.cta__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 800;
  text-align: center;
  color: var(--white);
}

.cta__lead {
  margin: 0 0 1.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.req {
  color: var(--danger);
}

.field__input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s var(--ease);
}

.field__input::placeholder {
  color: var(--muted-dark);
}

.field__input:focus {
  outline: none;
  border-color: rgba(var(--purple-rgb), 0.55);
  box-shadow: 0 0 0 3px var(--glow-focus);
}

.field--invalid .field__input {
  border-color: rgba(251, 113, 133, 0.6);
}

.field--checkbox {
  gap: 0.25rem;
}

.field__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}

.field__checkbox {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--purple);
  cursor: pointer;
}

.field__link {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field__link:hover {
  color: var(--white);
}

.field--invalid.field--checkbox .field__checkbox-label {
  color: var(--danger);
}

.field__err {
  min-height: 1.1em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--danger);
}

.form__submit {
  margin-top: 0.35rem;
  padding: 0.95rem 1.25rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  background: var(--purple);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 32px var(--glow);
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.form__submit:hover {
  transform: translateY(-2px);
  background: var(--purple-cta-hover);
  box-shadow: 0 0 40px var(--glow);
}

/* Footer */
.footer {
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--bg-problem);
}

.footer__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.footer__brand {
  margin-bottom: 1rem;
}

.footer__img {
  margin: 0 auto 0.75rem;
  display: block;
  width: auto;
  height: 46px;
  max-width: 180px;
  object-fit: contain;
  border-radius: 0;
}

.footer__tagline {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}

.footer__nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--purple);
}

.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted-dark);
}

/* Thanks */
.thanks-mode .header,
.thanks-mode .footer {
  display: none;
}

/* `hidden` must win: author `.thanks { display: grid }` otherwise overrides UA [hidden] */
.thanks[hidden] {
  display: none !important;
}

.thanks {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  position: relative;
  z-index: 60;
  background: var(--bg);
}

.thanks__card {
  max-width: 400px;
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.thanks__mark {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--purple-glow);
}

.thanks__title:focus {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

.thanks__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.thanks__text {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.thanks__btn {
  display: inline-flex;
  padding: 0.65rem 1.2rem;
  font-weight: 700;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 0 24px var(--glow);
}

.thanks__btn:hover {
  background: var(--purple-cta-hover);
  text-decoration: none;
}

/* עמוד קביעת פגישה (ווידג׳ט GHL) */
.booking-page {
  padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 1.5rem) 3.5rem;
}

.booking-page__inner {
  max-width: 52rem;
  margin: 0 auto;
}

.booking-page__intro {
  text-align: center;
  margin-bottom: 1.75rem;
}

.booking-page__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-glow);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-page__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.booking-page__lead {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.booking-widget {
  padding: clamp(1rem, 3vw, 1.25rem);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0 40px var(--glow-focus);
}

.booking-widget__frame {
  display: block;
  width: 100%;
  min-height: 680px;
  border: none;
  overflow: hidden;
  background: transparent;
}

@media (max-width: 640px) {
  .booking-widget__frame {
    min-height: 720px;
  }
}

/* אישור קביעת פגישה (redirect מ-GHL) */
.booking-confirmed {
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
  padding: 2.5rem 1rem 3rem;
}

.booking-confirmed__card {
  max-width: 28rem;
}

.booking-confirmed__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.booking-confirmed__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-confirmed__link:hover {
  color: var(--white);
}

/* Scroll margin */
#lead,
#how,
#pain,
#what,
#guides,
#top {
  scroll-margin-top: 76px;
}

/* Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

/* Legal - מדיניות פרטיות */
.legal {
  padding: clamp(2.5rem, 8vw, 4rem) clamp(1rem, 4vw, 1.5rem) 3rem;
}

.legal__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.legal__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal__updated {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--muted-dark);
}

.legal__lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.legal__section {
  margin-bottom: 1.75rem;
}

.legal__section h2 {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
}

.legal__section p {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.legal__section a {
  color: var(--purple-glow);
  font-weight: 600;
}

.legal__section a:hover {
  color: var(--white);
}

.legal__list {
  margin: 0 0 0.75rem;
  padding: 0 1.25rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal__list li {
  margin-bottom: 0.5rem;
}

.legal__list strong {
  color: var(--white);
  font-weight: 600;
}

.legal__back {
  margin: 2.5rem 0 0;
  text-align: center;
}

.footer__nav a[aria-current="page"] {
  color: var(--purple);
}

.footer--compact {
  padding: 1.75rem 1rem;
}

.footer--compact .footer__inner {
  max-width: 960px;
}

/* נגישות - דילוג לתוכן */
.skip-link {
  position: absolute;
  top: -120%;
  right: 1rem;
  left: auto;
  z-index: 1000;
  padding: 0.75rem 1.1rem;
  background: var(--purple);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 24px var(--glow);
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* באנר הסכמה לעוגיות */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(1rem, 4vh, 2rem) clamp(0.75rem, 4vw, 1.5rem)
    max(clamp(14vh, 18vh, 22vh), calc(env(safe-area-inset-bottom) + 1rem));
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-open {
  overflow: hidden;
}

.cookie-banner__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 22, 0.72);
  pointer-events: auto;
}

.cookie-banner__card {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  max-height: min(92vh, 640px);
  overflow: auto;
  pointer-events: auto;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  background: linear-gradient(
    145deg,
    rgba(17, 24, 39, 0.98) 0%,
    rgba(6, 8, 22, 0.99) 100%
  );
  border: 1px solid rgba(var(--purple-rgb), 0.45);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 60px var(--glow);
}

.cookie-banner__close {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.cookie-banner__close:hover {
  color: var(--white);
  border-color: rgba(var(--purple-rgb), 0.5);
}

.cookie-banner__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cookie-banner__layout {
    flex-direction: row;
    align-items: center;
    text-align: right;
    gap: 1.25rem;
  }
}

.cookie-banner__media {
  flex-shrink: 0;
}

.cookie-banner__img {
  display: block;
  width: clamp(7.5rem, 28vw, 9.5rem);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(var(--purple-rgb), 0.35);
}

.cookie-banner__content {
  flex: 1;
  min-width: 0;
}

.cookie-banner__emoji {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  line-height: 1;
}

.cookie-banner__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 3.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
}

.cookie-banner__text {
  margin: 0 0 1.15rem;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

.cookie-banner__text strong {
  color: var(--purple-glow);
  font-weight: 700;
}

.cookie-banner__link {
  color: var(--purple-hover);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__link:hover {
  color: var(--white);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

.cookie-banner__btn {
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--line);
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

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

.cookie-banner__btn--accept {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  box-shadow: 0 0 28px var(--glow);
}

.cookie-banner__btn--accept:hover {
  background: var(--purple-cta-hover);
}

.cookie-banner__btn--reject {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.cookie-banner__btn--reject:hover {
  border-color: rgba(var(--purple-rgb), 0.55);
  background: rgba(var(--purple-rgb), 0.12);
}

.footer__cookie-settings {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__cookie-settings:hover {
  color: var(--purple-glow);
}

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

  .wiz__spinner {
    animation: none;
  }
}
