:root {
  --brand-primary: #5B5BE6;
  --brand-secondary: #F5C842;
  --brand-accent: #FFD700;
  --brand-bg: #FFFFFF;
  --brand-text: #2D2D5E;
  --brand-header-bg: #FFFFFF;
  --brand-btn-bg: #F5C842;
  --brand-btn-text: #2D2D5E;
  --brand-btn-radius: 30px;
  --brand-head-font: 'Poppins', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --brand-body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --brand-head-weight: 800;
  --brand-body-size: 16px;
  --brand-border: #e6e6f0;
}

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

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

body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  font-weight: 400;
  line-height: 1.6;
  color: var(--brand-text);
  background: var(--brand-bg);
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: var(--brand-primary);
  text-decoration: none;
}

a:hover {
  color: #4141c4;
}

ul,
ol {
  padding-left: 1.25rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  line-height: 1.2;
  color: var(--brand-text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

p {
  margin-bottom: 18px;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

.site-header {
  background: var(--brand-header-bg);
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 2px 12px rgba(45, 45, 94, 0.05);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

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

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 600;
  color: var(--brand-text);
  padding: 8px 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
  color: var(--brand-primary);
  background: rgba(91, 91, 230, 0.06);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 0;
  font-size: 30px;
  line-height: 1;
  color: var(--brand-text);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}

.mobile-menu-btn:focus {
  outline: 3px solid rgba(91, 91, 230, 0.35);
  outline-offset: 2px;
}

.btn,
.btn-hero,
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--brand-btn-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover,
.btn-hero:hover,
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  opacity: 1;
  background: #e8b72e;
  color: var(--brand-btn-text);
}

.btn:focus,
.btn-hero:focus,
.btn-cta:focus,
a:focus {
  outline: 3px solid rgba(91, 91, 230, 0.5);
  outline-offset: 3px;
}

.btn-hero {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  padding: 16px 34px;
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(45, 45, 94, 0.2);
}

.btn-hero:hover {
  background: var(--brand-accent);
  box-shadow: 0 12px 32px rgba(45, 45, 94, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-text);
  border: 2px solid var(--brand-border);
  border-radius: var(--brand-btn-radius);
  padding: 14px 28px;
  font-family: var(--brand-body-font);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(91, 91, 230, 0.05);
}

.hero {
  background: linear-gradient(135deg, #2e2e8f 0%, var(--brand-primary) 52%, var(--brand-secondary) 100%);
  color: #fff;
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -140px;
  right: -100px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  bottom: -140px;
  left: 20%;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 640px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #fff;
}

.hero-copy h1 {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.12);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
  display: inline-block;
}

.glass-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  position: relative;
}

.hero-card-title {
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.offer-value {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.offer-note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.glass-row {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.glass-item {
  min-width: 110px;
}

.glass-item span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

.glass-item strong {
  font-size: 18px;
  color: #fff;
}

.main-content {
  padding: 50px 0 10px;
}

.content-section {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 8px 28px rgba(45, 45, 94, 0.05);
}

.content-section .section-intro {
  font-size: 18px;
  color: #54607f;
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 26px 0 10px;
}

.feature-card {
  background: #f9fafc;
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  padding: 24px;
}

.feature-card h3 {
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 15px;
  color: #4e5670;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0 10px;
}

.metric-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(45, 45, 94, 0.04);
}

.metric-number {
  display: block;
  font-family: var(--brand-head-font);
  font-size: 30px;
  font-weight: var(--brand-head-weight);
  color: var(--brand-primary);
  line-height: 1.1;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 14px;
  color: #54607f;
  font-weight: 600;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.friction-box {
  background: #fdf8f2;
  border: 1px solid #f2d9c0;
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
}

.friction-box h3 {
  color: #7a4d1d;
}

.friction-box p {
  margin-bottom: 8px;
}

.inline-list {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.inline-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid #eef0f5;
}

.inline-list li:last-child {
  border-bottom: 0;
}

.inline-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: 17px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  background: #f1f1fb;
  border: 1px solid #dedeef;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
}

.cta-band {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #7d7dec 60%, var(--brand-secondary) 100%);
  border-radius: 24px;
  color: #fff;
  padding: 40px;
  text-align: center;
  margin: 20px 0 30px;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-hero {
  margin-top: 14px;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  color: #fff;
  background: #4141c4;
}

.page-content {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  padding: 44px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 28px rgba(45, 45, 94, 0.05);
}

.page-content h1 {
  color: var(--brand-text);
  margin-bottom: 24px;
}

.page-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
}

.page-content p {
  margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
  margin-bottom: 16px;
}

.site-footer {
  background: #111136;
  color: #b9b9d6;
  padding: 56px 0 24px;
  margin-top: 30px;
}

.site-footer h2 {
  color: #fff;
  font-size: 16px;
  font-family: var(--brand-body-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand-name {
  font-family: var(--brand-head-font);
  font-size: 22px;
  font-weight: var(--brand-head-weight);
  color: #fff;
  margin-bottom: 12px;
}

.footer-description {
  font-size: 15px;
  max-width: 360px;
  color: #b9b9d6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b9b9d6;
  font-size: 15px;
  transition: color 0.2s;
}

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

.footer-security {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 20px;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  padding: 7px 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-bottom a {
  color: #fff;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--brand-accent);
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .main-nav.mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 18px 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    gap: 0;
    border-radius: 0 0 16px 16px;
    z-index: 10001;
    border-bottom: 1px solid var(--brand-border);
  }

  .main-nav.mobile-nav-active ul li {
    width: 100%;
  }

  .main-nav.mobile-nav-active ul a {
    display: block;
    padding: 12px 8px;
    border-bottom: 1px solid #eef0f5;
  }

  .main-nav.mobile-nav-active ul li:last-child a {
    border-bottom: 0;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .glass-card {
    width: 100%;
    max-width: 520px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-two {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero,
  .btn-ghost {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .content-section {
    padding: 28px 20px;
  }

  .page-content {
    padding: 30px 20px;
  }

  .cta-band {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 46px 0 50px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .glass-card {
    padding: 24px 20px;
  }

  .glass-row {
    gap: 14px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .site-logo-img {
    height: 38px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 15px;
  }
}