:root {
  --color-primary: #00B6FF;
  --color-primary-hover: #009DDC;
  --color-text-dark: #111111;
  --color-text-dark-2: #212121;
  --color-text-gray: #737880;
  --color-text-gray-2: #666B73;
  --color-text-gray-3: #545454;
  --color-text-gray-4: #808287;
  --color-bg-light: #F8F9FB;
  --color-border: #E5E8ED;
  --color-white: #FFFFFF;

  --color-mint: #DDF6ED;
  --color-mint-deep: #BCDED2;
  --color-peach: #FFECDD;
  --color-peach-deep: #FFDFC7;
  --color-lavender: #EAE5FC;
  --color-lavender-deep: #D0C2FF;
  --color-sky: #DDECFF;
  --color-cream: #FFF8DD;

  --color-status-live: #22C55E;
  --color-status-soon: #9CA3AF;

  --step-1-bg: #FFF9EF; --step-1-fg: #FF940A;
  --step-2-bg: #F3F2FD; --step-2-fg: #8B5CF6;
  --step-3-bg: #EEFAFF; --step-3-fg: #00B6FF;
  --step-4-bg: #EBFDF1; --step-4-fg: #00D52A;
  --step-5-bg: #FFF9EF; --step-5-fg: #FF940A;

  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;

  --shadow-xs: 0px 1px 2px 0px rgba(11, 12, 14, 0.06);
  --shadow-sm: 0px 1px 2px 0px rgba(11, 12, 14, 0.04), 0px 4px 10px -2px rgba(11, 12, 14, 0.06);
  --shadow-brand: 0px 4px 12px -2px rgba(0, 182, 255, 0.28);

  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--color-text-dark);
  background: var(--color-white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea {
  font-family: inherit;
}

svg {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.logo span:first-child { color: var(--color-primary); }
.logo span:last-child { color: var(--color-text-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-text-dark);
  border: 1px solid var(--color-text-dark);
}
.btn--secondary:hover {
  background: #F2F3F5;
  border-color: var(--color-border);
}

.btn--lg {
  padding: 16px 26px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn--sm {
  padding: 12px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  color: var(--color-text-gray-2);
  font-size: 12px;
}
.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status--live .status__dot { background: var(--color-status-live); }
.status--soon .status__dot { background: var(--color-status-soon); }

.section-title {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-text-dark);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: var(--shadow-xs);
}

.advantage-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-sky);
  color: var(--color-primary);
}
.advantage-card__icon svg {
  width: 24px;
  height: 24px;
}

.step__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.step {
  background: var(--color-white);
  border-radius: var(--radius-xl);
}
.step__text {
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-text-dark-2);
}

/* ---------- Cookie consent ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0px 8px 20px -4px rgba(11,12,14,0.12), 0px 2px 4px 0px rgba(11,12,14,0.06);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-gray);
}
.cookie-banner__text a { color: var(--color-primary); text-decoration: underline; }
.cookie-banner__btn {
  flex-shrink: 0;
  padding: 12px 24px;
}

@media (max-width: 560px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner__btn { width: 100%; }
}

.offer-card__title { font-size: 16px; font-weight: 600; line-height: 1.3; color: var(--color-text-dark); }
.offer-card__text { font-size: 14px; font-weight: 400; color: var(--color-text-gray-2); }
.offer-card--mint { background: var(--color-mint); }
.offer-card--peach { background: var(--color-peach); }
.offer-card--lavender { background: var(--color-lavender); }
.offer-card--sky { background: var(--color-sky); }
.offer-card--cream { background: var(--color-cream); }
.offer-card__pill {
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: var(--color-text-gray);
}
.offer-card__pill--mint { background: var(--color-mint-deep); }
.offer-card__pill--lavender { background: var(--color-lavender-deep); color: var(--color-white); }
.offer-card__tag {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: var(--color-text-gray);
}
.offer-card__tag--peach { background: var(--color-peach-deep); }

.advantage-card__text {
  font-weight: 500;
  line-height: 1.4;
  color: #111113;
}
.advantage-card__body { display: flex; flex-direction: column; gap: 8px; }
.advantage-card__title { font-size: 16px; font-weight: 600; color: var(--color-text-dark); }

.faq__col { display: flex; flex-direction: column; min-width: 0; }
.faq-item { display: flex; flex-direction: column; gap: 8px; }
.faq-item__q { font-weight: 600; line-height: 1.35; color: var(--color-text-dark); }
.faq-item__a { font-weight: 400; line-height: 1.45; color: var(--color-text-gray); }

.audience-card__title { font-size: 16px; font-weight: 600; line-height: 1.3; color: var(--color-text-dark); }
.audience-card__text { font-size: 14px; font-weight: 400; line-height: 1.45; color: var(--color-text-gray); }
.audience-card__image { object-fit: contain; }

.cta__title-accent { color: var(--color-primary); }

.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text-gray);
  text-transform: uppercase;
}
.footer__link { color: var(--color-text-dark); transition: color 0.15s ease; }
.footer__link:hover { color: var(--color-primary); }
.footer__support-email { font-size: 14px; font-weight: 600; color: var(--color-primary); }
.footer__support-text { font-size: 14px; line-height: 1.45; color: var(--color-text-dark); }
.footer__legal-link:hover { color: var(--color-primary); }
.footer__divider { height: 1px; background: var(--color-border); width: 100%; }
