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

:root {
  --navy: #1B2D45;
  --navy-light: #243B55;
  --navy-accent: #1E3A5F;
  --gold: #C49A2A;
  --gold-light: #D4AD3E;
  --cream: #FAFAF7;
  --cream-warm: #F2F0EB;
  --white: #FFFFFF;
  --text: #1C1C1C;
  --text-mid: #555555;
  --text-soft: #888888;
  --text-light: #F5F5F0;
  --text-light-mid: #C0C5CE;
  --border: rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(196,154,42,0.1);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(27,45,69,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
}
.nav-brand span { color: var(--gold); }
.nav-planet { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-light); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.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-light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(27,45,69,0.98);
  backdrop-filter: blur(16px);
  padding: 20px 28px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light-mid);
  padding: 8px 0;
}
.mobile-menu .nav-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(196,154,42,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(30,58,95,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light-mid);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #34D399;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-light-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 4px 16px rgba(196,154,42,0.3); }

.btn-share {
  background: rgba(255,255,255,0.08);
  color: var(--text-light-mid);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-share:hover { background: rgba(255,255,255,0.14); }
.btn-share svg { width: 16px; height: 16px; }

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy-accent), var(--gold));
}

/* ============================================
   SERVICES — Compare
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--cream);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.compare-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.compare-card--app {
  border-color: rgba(196,154,42,0.3);
}

.compare-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 12px;
  letter-spacing: 0.04em;
}

.compare-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,154,42,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.compare-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.compare-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.compare-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 24px;
}

.compare-list {
  list-style: none;
  margin-bottom: 24px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 6px 0;
}
.compare-list svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--gold);
  margin-top: 2px;
}

.compare-best {
  font-size: 0.8rem;
  color: var(--text-soft);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ============================================
   PROCESS — How It Works
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--cream-warm);
}

.steps {
  max-width: 580px;
  margin: 0 auto;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.25s;
}
.step:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

.step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.step-price {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 12px;
  background: rgba(196,154,42,0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.step-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--border), rgba(196,154,42,0.3));
  margin: 0 auto;
  border-radius: 1px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.price-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.price-card--highlight {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 4px 20px rgba(196,154,42,0.12);
}
.price-card--highlight:hover {
  box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(196,154,42,0.18);
}

.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.price-dollar {
  font-size: 1.6rem;
  vertical-align: super;
  color: var(--gold);
  font-weight: 600;
}
.price-unit {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 500;
}
.price-custom {
  font-size: 2rem;
  color: var(--navy-accent);
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 7px 0;
}
.price-features svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--gold);
  margin-top: 2px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.hosting-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 600px;
  margin: 48px auto 0;
  padding: 20px 24px;
  background: rgba(196,154,42,0.06);
  border: 1px solid rgba(196,154,42,0.15);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.hosting-note svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--gold);
  margin-top: 1px;
}
.hosting-note strong {
  color: var(--text);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 0;
  background: var(--cream-warm);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.04); }

.faq-item summary {
  padding: 20px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s;
  min-width: 20px;
  text-align: center;
}
.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item p a {
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid rgba(196,154,42,0.3);
}
.faq-item p a:hover { border-color: var(--gold); }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy-accent), var(--gold));
}

.contact h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--text-light);
  margin-bottom: 8px;
}
.contact-sub {
  font-size: 1rem;
  color: var(--text-light-mid);
  margin-bottom: 40px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  min-width: 120px;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-btn:hover { transform: translateY(-2px); }
.contact-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-call { background: var(--gold); color: var(--navy); }
.btn-call:hover { box-shadow: 0 4px 16px rgba(196,154,42,0.3); }
.btn-text {
  background: rgba(255,255,255,0.1);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-text:hover { background: rgba(255,255,255,0.15); }
.btn-email {
  background: rgba(255,255,255,0.06);
  color: var(--text-light-mid);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn-email:hover { background: rgba(255,255,255,0.1); }

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact-detail {
  font-size: 0.88rem;
  color: var(--text-light-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-detail svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 24px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer-link {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid rgba(196,154,42,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.footer-link:hover { border-color: var(--gold); }
.footer p { font-size: 0.78rem; color: var(--text-soft); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid rgba(196,154,42,0.3);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 200;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .hero { min-height: 70svh; padding: 100px 24px 60px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  .compare {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-buttons {
    flex-direction: column;
    max-width: 280px;
  }

  .services, .process, .pricing, .faq, .contact {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .compare-card { padding: 28px 20px; }
  .price-card { padding: 28px 20px; }
  .step { padding: 20px 16px; gap: 14px; }
}
