/* Basic Styling (moved from inline <style> block) */

:root {
  --color-bg: #f5f7fb;
  --color-primary: #0a1a3b;
  --color-accent: #c9a86b;
  --color-text: #1f2933;
  --color-muted: #6b7280;
  --max-width: 1100px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header,
main,
footer {
  width: 100%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: var(--color-primary);
}

.logo span {
  color: var(--color-accent);
}

.header-nav a {
  margin-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.header-nav a:hover {
  color: var(--color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 9999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease, color 0.08s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #111827;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: #ffffff;
  color: var(--color-primary);
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background: #f9fafb;
}

/* HERO */
.hero {
  background: radial-gradient(circle at top left, #e1e7ff 0, #f5f7fb 55%, #ffffff 100%);
  padding: 2.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3.5fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 32rem;
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}

.badge {
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  background: rgba(10, 26, 59, 0.05);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.87rem;
  color: var(--color-muted);
}

.hero-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  border: 1px solid #e5e7eb;
}

.hero-card h2 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}

.form-row label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.08s ease, box-shadow 0.08s ease;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(10, 26, 59, 0.12);
}

.hero-card-footer {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* SECTION GENERIC */
section {
  padding: 3rem 0;
  background: transparent;
}

section:nth-of-type(even) {
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--color-muted);
  max-width: 34rem;
  margin: 0 auto;
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.step-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid #e5e7eb;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 26, 59, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

.step-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.87rem;
  color: var(--color-muted);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.highlighted {
  border-color: var(--color-accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.pricing-name {
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--color-primary);
}

.pricing-tagline {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.8rem;
}

.pricing-price {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.pricing-meta {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.9rem;
}

.pricing-features {
  list-style: none;
  font-size: 0.87rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.pricing-features li {
  margin-bottom: 0.3rem;
  position: relative;
}

.pricing-features li::before {
  content: "•";
  position: absolute;
  left: -0.8rem;
  color: var(--color-accent);
}

.pricing-cta {
  margin-top: auto;
}

/* FEATURES / WHAT'S INCLUDED */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.list-block h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.list-block ul {
  list-style: none;
  font-size: 0.87rem;
  color: var(--color-muted);
}

.list-block ul li {
  margin-bottom: 0.3rem;
}

 .hero-form {
      background: white;
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: 0 14px 40px rgba(15, 28, 63, 0.08);
      border: 1px solid var(--border);
    }

    .hero-form h2 {
      font-size: 1.05rem;
      margin-bottom: 0.4rem;
    }

    .hero-form p {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .field-group {
      margin-bottom: 0.9rem;
    }

    label {
      display: block;
      font-size: 0.82rem;
      margin-bottom: 0.2rem;
      color: var(--muted);
    }

    input, select {
      width: 100%;
      padding: 0.55rem 0.6rem;
      border-radius: 6px;
      border: 1px solid var(--border);
      font-size: 0.9rem;
      outline: none;
      background: #ffffff;
    }

    input:focus, select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(27, 75, 122, 0.15);
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.65rem 1rem;
      border-radius: 999px;
      border: none;
      background: var(--primary);
      color: white;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      margin-top: 0.2rem;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
    }

    .helper-text {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      margin-top: 1.4rem;
      font-size: 0.78rem;
      color: var(--muted);
    }

    .trust-pill {
      background: #eef3fa;
      border-radius: 999px;
      padding: 0.3rem 0.6rem;
    }

    .section {
      margin-bottom: 2.75rem;
    }

    .section-header {
      margin-bottom: 1.4rem;
    }

    .section-header h2 {
      font-size: 1.25rem;
      margin-bottom: 0.25rem;
    }

    .section-header p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    @media (max-width: 860px) {
      .grid-3 {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 1.1rem 1.1rem 1rem;
      border: 1px solid var(--border);
      font-size: 0.9rem;
    }

    .card h3 {
      font-size: 1rem;
      margin-bottom: 0.35rem;
    }

    .card p {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .pill-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--primary);
      margin-bottom: 0.35rem;
    }

    .list {
      list-style: none;
      margin-top: 0.4rem;
    }

    .list li {
      padding-left: 1.1rem;
      position: relative;
      margin-bottom: 0.25rem;
      font-size: 0.88rem;
      color: var(--muted);
    }

    .list li::before {
      content: "•";
      position: absolute;
      left: 0.2rem;
      color: var(--accent);
      font-size: 1rem;
      line-height: 1;
      top: 0;
    }

    .faq-item {
      margin-bottom: 1rem;
    }

    .faq-item h3 {
      font-size: 0.98rem;
      margin-bottom: 0.2rem;
    }

    .faq-item p {
      font-size: 0.88rem;
      color: var(--muted);
    }

    .brand-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      font-size: 0.85rem;
      margin-top: 0.4rem;
    }

    .brand-links a {
      padding: 0.25rem 0.65rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: white;
    }
