* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --accent: #0ea5e9;
  --dark: #0f172a;
  --dark-mid: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --green: #16a34a;
  --green-light: #dcfce7;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin-bottom: 0.75rem; }

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

nav {
  background: var(--dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

#hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: var(--white);
  padding: 96px 0 80px;
  text-align: center;
}

#hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

#hero .subhead {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 620px;
  margin: 0 auto 12px;
}

#hero .trust-line {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid #334155;
  display: inline-block;
}

#what {
  background: var(--bg);
}

#what .section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
color: var(--primary);
  margin-bottom: 12px;
}

#what h2 {
  margin-bottom: 20px;
}

#what p {
  font-size: 1.1rem;
  max-width: 680px;
}

.what-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
}

.what-list li::before {
  content: "✓";
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}

#who h2,
#helps h2,
#paths h2,
#pricing h2,
#why h2,
#faq h2 {
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.who-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  font-size: 1.4rem;
}

#helps {
  background: var(--bg);
}

.helps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.helps-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

#paths .section-sub,
#pricing .section-sub,
#why .section-sub,
#faq h2,
#paths h2 {
  text-align: center;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.path-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 2px solid var(--border);
}

.path-card.cloud {
  background: var(--primary-light);
  border-color: var(--primary);
}

.path-card.local {
  background: #f0fdf4;
  border-color: #22c55e;
}

.path-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.path-card.cloud .path-badge {
  background: var(--primary);
  color: var(--white);
}

.path-card.local .path-badge {
  background: var(--green);
  color: var(--white);
}

.path-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.path-tagline {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.path-fits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.path-fits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.path-fits li::before {
  content: "→";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.path-card.local .path-fits li::before {
  color: var(--green);
}

.paths-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

#how {
  background: var(--dark);
  color: var(--white);
}

#how h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
}

#how .section-sub {
  color: #94a3b8;
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--dark-mid);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #334155;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.step-card p {
color: #94a3b8;
  font-size: 0.95rem;
  margin: 0;
}

#pricing {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--primary);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 16px 0 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

#why {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.why-item {
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.why-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

#cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

#cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

#cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

#faq {
  background: var(--bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

footer {
  background: var(--dark);
  color: #64748b;
  text-align: center;
  padding: 32px 24px;
  font-size: 0.88rem;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .paths-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .who-grid,
  .helps-grid {
    grid-template-columns: 1fr;
  }
}
