:root {
  --bg-dark: #0a0e14;
  --bg-card: #111820;
  --bg-accent: #151c26;
  --green: #00e676;
  --green-dim: #00c853;
  --gold: #ffd740;
  --white: #f0f2f5;
  --gray: #8a94a6;
  --gray-light: #c0c8d4;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 8% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,230,118,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,230,118,0.3), transparent);
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  max-width: 900px;
  letter-spacing: -2px;
}

.hero h1 .highlight {
  color: var(--green);
  position: relative;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--gray-light);
  max-width: 560px;
  margin-top: 28px;
  line-height: 1.7;
}

.hero-stat-row {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 8%;
  position: relative;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  max-width: 600px;
  line-height: 1.15;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(0,230,118,0.2);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 8%;
  background: var(--bg-accent);
}

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

.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 32px;
}

.price-card.featured {
  border-color: var(--green);
  position: relative;
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--green);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 4px;
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.price-amount .currency {
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--gray);
}

.price-amount .period {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 400;
}

.price-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 8px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 8%;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,230,118,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.1;
  letter-spacing: -1px;
  position: relative;
}

.closing p {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px 8%;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.footer-brand span {
  color: var(--green);
}

.footer-info {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 100px 6% 60px;
  }

  .hero-stat-row {
    gap: 32px;
  }

  .services, .pricing, .closing {
    padding: 60px 6%;
  }

  .services-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }

  .hero-stat .number {
    font-size: 1.8rem;
  }

  .service-card, .price-card {
    padding: 28px 24px;
  }
}