:root {
  --bg: #2E1065;
  --surface: #4C1D95;
  --text: #F5F3FF;
  --muted: #C4B5FD;
  --primary: #F472B6;
  --secondary: #5B21B6;
  --accent: #EC4899;
  --border: rgba(255, 255, 255, 0.12);
  --max-w: 1280px;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", Times, serif;
  --glass-border: rgba(255, 255, 255, 0.12);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

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

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.disclosure-bar {
  width: 100%;
  padding: 6px 16px;
  text-align: center;
}

.disclosure-bar p {
  font-size: 10px;
  line-height: 1.5;
  color: #9CA3AF;
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  order: 1;
}

.site-header__logo {
  order: 2;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 36px;
  width: auto;
}

.site-nav a {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 14px;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  opacity: 1;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  order: 3;
}

.burger-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
  opacity: 0;
}

.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 16, 101, 0.75);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  z-index: 200;
  background: var(--surface);
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 32px 32px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-diagonal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
}

.hero-left {
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  align-items: center;
  padding: 64px 48px 64px 40px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease forwards;
}

.hero-left h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--bg);
  max-width: 480px;
}

.hero-right {
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: relative;
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(46, 16, 101, 0.45));
}

.hero-strip {
  padding: 18px 24px;
  background: var(--surface);
  text-align: center;
  border-top: 1px solid var(--border);
}

.hero-strip p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.offers-section {
  position: relative;
  padding: 72px 24px;
  background: var(--surface) url("/images/offers_bg/offers_bg.webp") center/cover no-repeat;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 16, 101, 0.88);
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.offers-intro {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(41, 50, 65, 0.95), rgba(4, 28, 44, 0.9));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61, 90, 128, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: rgba(152, 193, 217, 0.3);
}

.offer-logo {
  width: 200px;
  height: 100px;
  margin: 24px auto 0;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  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-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text);
}

.offer-bonus-wrap {
  margin-bottom: 12px;
}

.offer-bonus {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.offer-terms {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.85;
}

.offer-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
  flex: 1;
}

.offer-cta {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--text);
  border: 1px solid rgba(152, 193, 217, 0.2);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.offer-cta:hover {
  background: #4a6d96;
  box-shadow: 0 0 24px rgba(61, 90, 128, 0.5);
}

.info-section {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.info-section:nth-child(odd) {
  background: var(--bg);
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.decor-wrap {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.decor-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 500px;
  max-height: 320px;
}

.info-1__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  animation: revealSlow 0.9s ease forwards;
}

.info-1__visual {
  position: relative;
}

.info-1__visual .decor-wrap {
  margin-left: auto;
}

.info-2__band {
  text-align: center;
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(91, 33, 182, 0.3), transparent);
}

.info-2__icons {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.info-2__icon {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.info-3__overlap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-3__phone {
  position: relative;
  padding: 32px;
  background: var(--secondary);
  border-radius: 24px;
  border: 1px solid var(--border);
}

.info-3__phone::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.2;
}

.info-4__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.info-4__step {
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: rgba(91, 33, 182, 0.25);
}

.info-4__step strong {
  display: block;
  font-family: var(--serif);
  margin-bottom: 8px;
  color: var(--primary);
}

.info-5__split {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

.info-5__text {
  flex: 1;
}

.info-5__image-side {
  flex: 0 0 340px;
  background-image: url("/images/decorative/decor_5.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  min-height: 260px;
  border: 1px solid var(--border);
}

.info-6__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.info-6__card {
  padding: 28px;
  background: rgba(244, 114, 182, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.info-6__card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.info-7__quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.info-7__mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
}

.info-8__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.info-8__list {
  list-style: none;
  margin-top: 20px;
}

.info-8__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.info-9__feature {
  display: flex;
  gap: 48px;
  align-items: center;
}

.info-9__badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--primary);
  text-align: center;
  line-height: 1.3;
}

.info-10__banner {
  padding: 56px 48px;
  background: linear-gradient(135deg, var(--secondary), rgba(236, 72, 153, 0.15));
  border-radius: 4px;
  border: 1px solid var(--border);
  text-align: center;
}

.info-10__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.info-10__links a {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-nav a {
  font-size: 0.85rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.footer-disclosure {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-updated,
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
}

.footer-cookie-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(46, 16, 101, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.modal-box h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.modal-box p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.92rem;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--muted);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cookie-inner > p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cookie-panel.visible {
  display: block;
}

.cookie-panel p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.subpage-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.subpage-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 20px;
}

.subpage-header__logo img {
  height: 36px;
  width: auto;
}

.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.content-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 24px;
}

.content-page h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--primary);
}

.content-page p,
.content-page li {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

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

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

.contact-form label {
  font-size: 0.88rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(91, 33, 182, 0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
}

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

.form-error {
  display: none;
  font-size: 0.82rem;
  color: #FCA5A5;
}

.form-error.visible {
  display: block;
}

.contact-success {
  display: none;
  padding: 24px;
  background: rgba(244, 114, 182, 0.12);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 24px;
}

.contact-success.visible {
  display: block;
}

.contact-success p {
  color: var(--text);
  margin: 0;
}

.page-404 {
  text-align: center;
  padding: 100px 24px;
}

.page-404 h1 {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.go-redirect {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.go-page {
  text-align: center;
  padding: 48px 24px;
  max-width: 520px;
}

.go-ad {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.go-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-page h1 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.go-page > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.go-compliance {
  text-align: left;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(76, 29, 149, 0.4);
}

.go-compliance p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .nav-overlay,
  .mobile-nav {
    display: flex;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
  }

  .site-header__logo {
    order: 1;
    justify-self: start;
  }

  .burger-btn {
    order: 2;
    justify-self: end;
  }

  .site-nav {
    display: none;
  }

  .hero-diagonal {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    clip-path: none;
    padding: 48px 24px;
    min-height: 280px;
  }

  .hero-right {
    clip-path: none;
    min-height: 240px;
    background-position: center;
  }

  .info-1__layout,
  .info-3__overlap,
  .info-5__split,
  .info-7__quote,
  .info-8__grid,
  .info-9__feature {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-5__image-side {
    flex: none;
    width: 100%;
    min-height: 200px;
  }

  .info-4__timeline {
    grid-template-columns: 1fr;
  }

  .info-6__cards {
    grid-template-columns: 1fr;
  }

  .info-7__mark {
    font-size: 4rem;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .offers-section,
  .info-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .info-2__band {
    padding: 32px 20px;
  }

  .info-10__banner {
    padding: 36px 20px;
  }

  .offer-logo {
    width: 200px;
    height: 100px;
  }

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

  .offer-bonus {
    font-size: 0.88rem;
  }
}

@media (max-width: 375px) {
  .decor-wrap {
    max-width: 100%;
    width: 100%;
    max-height: 240px;
  }

  .decor-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
  }

  .info-1__visual .decor-wrap,
  .info-3__overlap .decor-wrap,
  .info-8__grid .decor-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .info-3__phone::before {
    display: none;
  }

  .info-3__overlap figure {
    max-width: 100%;
    overflow: hidden;
  }

  .info-10__banner .decor-wrap {
    max-width: 100%;
  }

  .hero-right {
    max-width: 100%;
    overflow: hidden;
  }

  .info-5__image-side {
    max-width: 100%;
    overflow: hidden;
  }
}
