
:root {
  --bg: #08080c;
  --card: #11131d;
  --blue: #3b6bff;
  --blueGlow: #5b85ff;
  --white: #ffffff;
  --text: rgba(255,255,255,0.7);
  --border: rgba(255,255,255,0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.small {
  max-width: 800px;
}

h1,h2,h3,h4 {
  font-family: 'Sora', sans-serif;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(20px);
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img{
  width: 160px;
  height: auto;
}


.logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blueGlow));
  font-weight: bold;
  box-shadow: 0 0 30px rgba(59,107,255,0.4);
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blueGlow));
  color: white;
  box-shadow: 0 0 40px rgba(59,107,255,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: white;
}

.large {
  padding: 18px 36px;
}

.full {
  width: 100%;
  display: block;
  text-align: center;
}

.hero {
  position: relative;
  padding: 120px 0;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(59,107,255,0.2);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(91,133,255,0.1);
  bottom: 0;
  right: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(59,107,255,0.1);
  border: 1px solid rgba(59,107,255,0.2);
  color: var(--blueGlow);
  margin-bottom: 30px;
}

.hero-content h2 {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 30px;
}

.hero-content h2 span {
  color: var(--blue);
}

.hero-content p {
  color: var(--text);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.numbers {
  display: flex;
  gap: 50px;
}

.numbers h3 {
  font-size: 42px;
}

.numbers span {
  color: var(--text);
}

.hero-card {
  background: linear-gradient(180deg,#131620,#09090c);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 30px;
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.badge {
  background: rgba(59,107,255,0.1);
  border: 1px solid rgba(59,107,255,0.2);
  color: var(--blueGlow);
  padding: 10px 16px;
  border-radius: 999px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-item {
  aspect-ratio: 9/16;
  border-radius: 30px;
  background: linear-gradient(180deg,var(--blue),#0c2d96);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  padding: 20px;
}

.benefits,
.packs,
.pricing,
.faq,
.final-cta {
  padding: 120px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: var(--blueGlow);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
}

.section-title h2 {
  font-size: 54px;
  margin-top: 20px;
  line-height: 1.1;
}

.section-title h2 strong {
  color: var(--blue);
}

.benefit-grid,
.packs-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.benefit-card,
.pack-card,
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 35px;
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(59,107,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 24px;
}

.benefit-card p,
.pack-content p,
.price-card li,
.faq p,
.final-cta p {
  color: var(--text);
  line-height: 1.7;
}

.pack-image {
  height: 300px;
  border-radius: 24px;
  background: linear-gradient(180deg,var(--blue),#0f318d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.pack-content span {
  color: var(--blueGlow);
  text-transform: uppercase;
  font-size: 12px;
}

.price-card {
  position: relative;
}

.featured {
  border: 1px solid var(--blue);
  box-shadow: 0 0 50px rgba(59,107,255,0.25);
}

.featured-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
}

.price {
  font-size: 48px;
  font-family: 'Sora';
  margin: 20px 0;
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.price-card li {
  margin-bottom: 14px;
}

.faq-list details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
}

summary {
  cursor: pointer;
  font-weight: bold;
}

.faq p {
  margin-top: 15px;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: 64px;
  margin-bottom: 25px;
}

.final-cta p {
  margin-bottom: 40px;
  font-size: 20px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-content {
  text-align: center;
  color: var(--text);
}

@media(max-width: 980px) {

  .hero-grid,
  .benefit-grid,
  .packs-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .hero-content h2,
  .section-title h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .hero-buttons,
  .numbers {
    flex-direction: column;
  }

}
