/* === Reset & Variables === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0b1120;
  --bg-card: #131b2e;
  --bg-card-hover: #1a2540;
  --bg-surface: #0f1729;
  --text: #e2e8f0;
  --text-muted: #8492a6;
  --text-dim: #5a6a80;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --gold: #f5a623;
  --green: #22c55e;
  --border: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11,17,32,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 900;
  font-size: 1rem;
  border-radius: 8px;
}

.logo-text { color: #fff; }
.logo-accent { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav a:hover { color: #fff; }
.nav .btn { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* === Hero === */
.hero {
  position: relative;
  padding: 240px 0 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 30%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%),
    linear-gradient(135deg, rgba(11,17,32,0.9) 0%, rgba(11,17,32,0.6) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230b1120"/><path d="M0 400 Q300 250 600 350 Q900 450 1200 300 L1200 600 L0 600Z" fill="%23131b2e" opacity="0.5"/><path d="M0 450 Q400 350 800 420 Q1000 460 1200 380 L1200 600 L0 600Z" fill="%231a2540" opacity="0.3"/></svg>');
  background-size: cover;
  background-position: center;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.12);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(59,130,246,0.2);
}

.pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 32px;
}

.hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 0;
  margin-bottom: 32px;
}

.hero-number {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 0.75;
  grid-row: 1 / 3;
}

.hero-stat-text { display: contents; }

.hero-unit {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 0.75;
  align-self: start;
}

.text-gold {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  align-self: end;
  line-height: 0.75;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-badges-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.hero-badges {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.badge-item {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.badge-item::first-letter {
  color: var(--green);
}

/* === Hero Card === */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.hero-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.card-sub {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.order-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-form label:first-of-type { margin-top: 0; }

.order-form input,
.order-form select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font);
  transition: var(--transition);
}

.order-form input::placeholder { color: var(--text-dim); }

.order-form input:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.order-form select option { background: var(--bg-card); }

.order-form .btn {
  margin-top: 18px;
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.card-stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.card-stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === Sections === */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-surface);
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === Speed Grid === */
.speed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .speed-grid { grid-template-columns: repeat(2, 1fr); }
}

.speed-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.speed-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.speed-card-accent {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(59, 130, 246, 0.08));
}

.speed-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.speed-result {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.speed-card-accent .speed-result {
  color: var(--gold);
}

.speed-when {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.speed-tagline {
  text-align: center;
  margin-top: 32px;
  font-size: 1.15rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.speed-tagline em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

/* === Steps === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.step:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.step-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(59,130,246,0.2);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === Includes Grid === */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.include-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.include-item:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-featured {
  border-color: rgba(59,130,246,0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(59,130,246,0.05) 100%);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-link:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-featured {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.15);
}

.pricing-card .btn { margin-top: auto; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: #fff;
}

.pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 24px;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
}

.pricing-period {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.pricing-list li:last-child { border-bottom: none; }

.pricing-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* === FAQ === */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary:hover { color: var(--accent); }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-dim);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '\2212';
  color: var(--accent);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* === CTA / Contact === */
.section-cta {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
  padding: 100px 0;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font);
  transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dim); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.contact-form select option { background: var(--bg-card); }

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

.contact-form .btn { margin-top: 8px; }

/* === Footer === */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

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

.footer-brand p {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* === Responsive === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card { max-width: 480px; }

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

  .includes-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 640px) {
  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11,17,32,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero h1 { font-size: 1.75rem; }
  .hero-number { font-size: 4rem; }

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

  .includes-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

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

  .section { padding: 64px 0; }
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success svg {
  margin-bottom: 1rem;
}
.form-success h3 {
  color: var(--green);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--text-muted);
}
