:root {
  --bg: #E5E9F0;
  --surface: #ECEFF4;
  --text: #2E3440;
  --muted: #4C566A;
  --primary: #5E81AC;
  --secondary: #81A1C1;
  --accent: #BF616A;
  --border: rgba(46,52,64,0.1);
  --ai: 0;
  --future: 0;
  --assistant: 0;
  --smart: 0;
  --adaptive: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(165deg, rgba(94, 129, 172, 0.18) 0%, transparent 42%),
    linear-gradient(345deg, rgba(191, 97, 106, 0.1) 0%, transparent 38%),
    radial-gradient(ellipse at 80% 0%, rgba(129, 161, 193, 0.22), transparent 50%),
    var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

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

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

.disclosure-banner {
  width: 100%;
  background: #2E3440;
  color: #ECEFF4;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #2E3440;
  height: 56px;
  box-shadow: 0 1px 0 rgba(94, 129, 172, 0.55), 0 0 8px rgba(94, 129, 172, 0.65);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  padding: 0 48px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 36px;
  width: auto;
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ECEFF4;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #ECEFF4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.28s ease;
  box-shadow: 0 0 8px rgba(94, 129, 172, 0.7);
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 280px;
  padding: 60px 24px;
  background: #2E3440;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 60px;
  background: var(--accent);
  opacity: 0.2;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero-brand {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ECEFF4;
  text-shadow: 0 0 24px rgba(94, 129, 172, 0.55);
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(236, 239, 244, 0.85);
  max-width: 540px;
  margin: 0 auto 22px;
}

.hero-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #ECEFF4;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 0 18px rgba(94, 129, 172, 0.45);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
  background: var(--secondary);
  box-shadow: 0 0 28px rgba(129, 161, 193, 0.55);
  transform: translateY(-2px);
}

.ai {
  position: relative;
}

.future {
  animation: futurePulse 4.5s ease-in-out infinite;
}

.assistant {
  border-radius: 16px;
}

.smart {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.adaptive {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@keyframes futurePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(94, 129, 172, 0);
  }
  50% {
    box-shadow: 0 0 22px 2px rgba(94, 129, 172, 0.28);
  }
}

@keyframes ai {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

@keyframes future {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

@keyframes assistant {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

@keyframes smart {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

@keyframes adaptive {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes glowShift {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.85;
  }
}

.offers-section {
  padding: 56px 24px 40px;
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 12% 8% auto;
  height: 180px;
  background: radial-gradient(ellipse, rgba(94, 129, 172, 0.16), transparent 70%);
  pointer-events: none;
}

.section-heading {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text);
}

.section-lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(145deg, #1B2433 0%, #243044 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  color: #F5F7FA;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(94, 129, 172, 0.25);
}

.offer-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.offer-card-top > div:not(.offer-logo) {
  min-width: 0;
  flex: 1;
}

.offer-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 8px;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.offer-bonus {
  font-size: clamp(0.85rem, 2.4vw, 1.1rem);
  font-weight: 600;
  color: #EBCB8B;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
}

.offer-terms {
  font-size: 11px;
  color: rgba(245, 247, 250, 0.55);
  line-height: 1.4;
}

.offer-desc {
  font-size: 13px;
  color: rgba(245, 247, 250, 0.7);
  line-height: 1.5;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 11px 22px;
  background: #A3BE8C;
  color: #1B2433;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.offer-cta:hover {
  background: #B4D19A;
  transform: translateY(-1px);
}

.info-sections {
  padding: 24px 0 64px;
}

.info-block {
  position: relative;
  margin: 28px auto;
  max-width: 1100px;
  padding: 0 24px;
}

.info-block h2 {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.info-block p {
  color: var(--muted);
  font-size: 0.98rem;
}

.info-1 .info-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  box-shadow: 0 10px 28px rgba(46, 52, 64, 0.06), 0 0 20px rgba(94, 129, 172, 0.12);
  animation: floatPanel 7s ease-in-out infinite;
}

.info-1 .info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.6;
  animation: glowShift 3s ease-in-out infinite;
}

.info-2 .info-panel {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(120deg, var(--surface), rgba(94, 129, 172, 0.12));
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 0 14px 14px 0;
}

.info-2 .info-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 16px rgba(94, 129, 172, 0.4);
}

.info-3 .chat-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.info-3 .chat-bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 6px 18px rgba(46, 52, 64, 0.07);
}

.info-3 .chat-bubble.reply {
  align-self: flex-end;
  border-radius: 18px 18px 4px 18px;
  background: rgba(94, 129, 172, 0.15);
  box-shadow: 0 0 16px rgba(94, 129, 172, 0.2);
}

.info-4 .float-frame {
  background: #2E3440;
  color: #ECEFF4;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(46, 52, 64, 0.25), 0 0 30px rgba(94, 129, 172, 0.2);
  position: relative;
  overflow: hidden;
}

.info-4 .float-frame h2 {
  color: #ECEFF4;
}

.info-4 .float-frame p {
  color: rgba(236, 239, 244, 0.82);
}

.info-4 .float-frame::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -30px;
  bottom: -30px;
  background: radial-gradient(circle, rgba(191, 97, 106, 0.35), transparent 70%);
  pointer-events: none;
}

.info-5 .split-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: stretch;
}

.info-5 .split-accent {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(94, 129, 172, 0.35);
}

.info-5 .split-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.info-6 .timeline {
  border-left: 2px solid rgba(94, 129, 172, 0.35);
  padding-left: 24px;
  margin-left: 8px;
}

.info-6 .timeline-item {
  position: relative;
  padding-bottom: 8px;
}

.info-6 .timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 10px rgba(129, 161, 193, 0.7);
}

.info-7 .quote-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
}

.info-7 .quote-panel::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 18px;
  width: 28px;
  height: 28px;
  border-left: 3px solid var(--accent);
  border-top: 3px solid var(--accent);
  opacity: 0.7;
}

.info-8 .tip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-8 .tip-cell {
  background: rgba(94, 129, 172, 0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-8 .tip-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(94, 129, 172, 0.25);
}

.info-8 .tip-cell h2 {
  font-size: 1.15rem;
}

.info-9 .stripe-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 4px 16px 16px 4px;
  border-left: 6px solid var(--accent);
  box-shadow: 0 8px 24px rgba(46, 52, 64, 0.08);
}

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

.info-10 .step {
  background: #2E3440;
  color: #ECEFF4;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 0 18px rgba(94, 129, 172, 0.2);
  transition: transform 0.3s ease;
}

.info-10 .step:hover {
  transform: translateY(-4px);
}

.info-10 .step h2 {
  color: #ECEFF4;
  font-size: 1.05rem;
}

.info-10 .step p {
  color: rgba(236, 239, 244, 0.8);
  font-size: 0.9rem;
}

.info-10 .step span {
  display: inline-block;
  font-size: 12px;
  color: var(--secondary);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-main {
  padding: 40px 24px 64px;
}

.page-shell {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 12px 36px rgba(46, 52, 64, 0.08), 0 0 24px rgba(94, 129, 172, 0.1);
}

.page-shell h1 {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.85rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-shell h2 {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  margin: 24px 0 10px;
}

.page-shell p,
.page-shell li {
  color: var(--muted);
  margin-bottom: 10px;
}

.page-shell ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.site-footer {
  background: #2E3440;
  color: #ECEFF4;
  padding: 48px 24px 32px;
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 129, 172, 0.7), transparent);
  box-shadow: 0 0 10px rgba(94, 129, 172, 0.5);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.footer-brand span {
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  margin-bottom: 28px;
}

.footer-links a {
  color: rgba(236, 239, 244, 0.85);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
}

.footer-badges img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-requisites {
  font-size: 12px;
  color: rgba(236, 239, 244, 0.55);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-nz-disclosure {
  font-size: 12px;
  color: rgba(236, 239, 244, 0.55);
  line-height: 1.7;
  max-width: 720px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  white-space: pre-line;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #2E3440;
  color: #ECEFF4;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.25), 0 0 20px rgba(94, 129, 172, 0.2);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.cookie-toggle {
  display: none;
}

.cookie-toggle:not(:checked) ~ .cookie-banner {
  transform: translateY(0);
}

.cookie-toggle:checked ~ .cookie-banner {
  transform: translateY(110%);
  pointer-events: none;
}

.cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  flex: 1;
  min-width: 220px;
  font-size: 13px;
  color: rgba(236, 239, 244, 0.9);
}

.cookie-accept {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary);
  color: #ECEFF4;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 0 14px rgba(94, 129, 172, 0.4);
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--text);
  box-shadow: 0 0 0 0 rgba(94, 129, 172, 0);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(94, 129, 172, 0.25);
}

.field-error {
  display: none;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

.contact-form textarea + .field-error {
  display: none;
}

.contact-form button {
  align-self: flex-start;
  padding: 12px 24px;
  background: var(--primary);
  color: #ECEFF4;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(94, 129, 172, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: var(--secondary);
  transform: translateY(-1px);
}

#form-success {
  display: none;
  background: rgba(94, 129, 172, 0.12);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.error-page {
  text-align: center;
  padding: 80px 24px;
}

.error-page h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

.error-page a {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  color: #ECEFF4;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 0 16px rgba(94, 129, 172, 0.35);
}

@media (max-width: 900px) {
  .nav-inner {
    padding: 0 20px;
  }

  .nav-burger {
    display: flex;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: #2E3440;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
  }

  .nav-links a {
    font-size: 20px;
  }

  .nav-toggle:checked ~ .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-toggle:checked + .nav-burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-burger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 32px 20px;
    min-height: 220px;
  }

  .hero::before {
    height: 36px;
  }

  .info-1 .info-panel,
  .info-8 .tip-grid,
  .info-10 .step-row {
    grid-template-columns: 1fr;
  }

  .info-5 .split-row {
    grid-template-columns: 1fr;
  }

  .info-5 .split-accent {
    height: 8px;
  }

  .offer-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
  }

  .offer-bonus {
    font-size: 0.95rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .offer-card-top {
    align-items: flex-start;
  }
}
