/* === BASE STYLES === */:root {
  --c1: #0a0118;
  --c2: #1a0533;
  --c3: #ff2bd6;
  --c4: #b855ff;
  --c5: #ffd84d;
  --bg: #0a0118;
  --fg: #ffffff;
  --muted: #b8a8d4;
  --card: #16082e;
  --border: rgba(184, 85, 255, 0.25);
  --sp1: 1rem;
  --sp2: 2rem;
  --sp3: 4rem;
  --rad: 18px;
  --rad-sm: 10px;
  --grad: linear-gradient(135deg, #ff2bd6 0%, #b855ff 50%, #6b2fff 100%);
  --grad2: linear-gradient(135deg, #ffd84d 0%, #ff2bd6 100%);
  --shadow: 0 20px 60px rgba(255, 43, 214, 0.25);
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  background-image: 
    radial-gradient(ellipse at 20% 0%, rgba(255, 43, 214, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(107, 47, 255, 0.18) 0%, transparent 50%);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 1rem; }

p { color: var(--muted); margin-bottom: 1.2rem; }
a { color: var(--c3); text-decoration: none; transition: color .3s; }
a:hover { color: var(--c5); }

.btn-primary, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  background: var(--grad);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 43, 214, 0.4);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before, .cta-button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left .6s;
}

.btn-primary:hover, .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 43, 214, 0.6);
  color: #fff !important;
}

.btn-primary:hover::before, .cta-button:hover::before { left: 100%; }

.container {
  max-width: 1280px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

main section {
  padding: var(--sp3) 0;
  position: relative;
}

.content-image {
  margin: 2rem 0;
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

.content-image.wide img { max-height: 520px; }
.content-image.portrait img { max-height: 600px; object-fit: cover; }

figure { margin: 0; }

ul.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

ul.checklist li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2.5rem;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
}

ul.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 15px rgba(255, 43, 214, 0.5);
}

ul.checklist li::after {
  content: '';
  position: absolute;
  left: 7px; top: 1.4rem;
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* === LAYOUT STYLES === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 1, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1rem;
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--fg);
  text-decoration: none;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  transition: transform .3s, opacity .3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.main-nav .nav-list a {
  color: var(--fg);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav .nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width .3s;
}

.main-nav .nav-list a:hover { color: var(--c3); }
.main-nav .nav-list a:hover::after { width: 100%; }

.site-footer {
  background: linear-gradient(180deg, var(--c1) 0%, #050010 100%);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  margin-top: 3rem;
}

.footer-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a { color: var(--muted); }
.footer-info {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 991px) {
  .hamburger { display: flex; }
  
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 1, 24, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    padding: 2rem 1.25rem;
  }
  
  .main-nav.open { transform: translateY(0); }
  
  .main-nav .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .header-inner .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .logo { font-size: 1.3rem; }
  .header-inner { gap: 0.5rem; padding: 0.8rem 1rem; }
  .header-inner .cta-button { padding: 0.6rem 1rem; font-size: 0.8rem; }
}

@media (max-width: 991px) {
  .hamburger { display: flex; }
  
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 1, 24, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    padding: 2rem 1.25rem;
  }
  
  .main-nav.open { transform: translateY(0); }
  
  .main-nav .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .header-inner .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .logo { font-size: 1.3rem; }
  .header-inner { gap: 0.5rem; padding: 0.8rem 1rem; }
  .header-inner .cta-button { padding: 0.6rem 1rem; font-size: 0.8rem; }
}

@media (max-width: 600px) {
  main section { padding: 3rem 0; }
  .hero-section { padding: 3rem 0 4rem !important; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; padding: 1rem; }
  .stat-item { border-right: none; padding: 0.5rem; }
  .stat-value { font-size: 1.3rem; }
  .offer-card { padding: 1.5rem; }
  .offer-amount { font-size: 2rem; }
  .accordion-header { padding-right: 3rem; font-size: 0.98rem; }
}