:root {
  --bg: #f7f5ef;
  --panel: rgba(255, 255, 255, 0.9);
  --card: #ffffff;
  --text: #1c2233;
  --muted: #4e566a;
  --accent: #c28f00;
  --accent-strong: #e6b31a;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 55px rgba(20, 30, 60, 0.12);
}

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

body {
  margin: 0;
  font-family: 'Manrope', 'Playfair Display', serif;
  background: radial-gradient(circle at 12% 20%, rgba(226, 199, 120, 0.16), transparent 32%),
    radial-gradient(circle at 78% 0%, rgba(120, 146, 255, 0.14), transparent 30%),
    linear-gradient(140deg, #fdfaf4, #f2eee3 50%, #ebe6da);
  color: var(--text);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

a {
  color: var(--text);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 44px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  border: none;
  background: transparent;
  padding: 0;
}

.menu-toggle div {
  width: 26px;
  height: 3px;
  background: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active-link {
  color: var(--accent);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #2f1f00;
  box-shadow: 0 12px 28px rgba(194, 143, 0, 0.26);
}

.btn.ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.btn.link {
  background: transparent;
  color: var(--accent);
  padding-left: 0;
}

.btn.small {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

.btn.full {
  width: 100%;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(194, 143, 0, 0.12), transparent 36%),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.75), transparent 35%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-copy {
  grid-column: span 7;
}

.hero-visual {
  grid-column: span 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
}

h1,
h2,
h3 {
  margin: 0.6rem 0 0.6rem;
  font-family: 'Playfair Display', 'Manrope', serif;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.stat-card {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #11162a;
}

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

.glass-card {
  width: 100%;
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.glass-card .accent {
  color: var(--accent);
  font-weight: 700;
  margin: 0;
}

.card-metric {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.card-metric strong {
  display: block;
  color: #11162a;
  margin-bottom: 0.25rem;
}

.card-metric span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 4rem 0;
}

.section.muted {
  background: rgba(255, 255, 255, 0.75);
  border-block: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 242, 230, 0.95));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
}

.feature-card img {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

.feature-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
}

.feature-list li {
  line-height: 1.5;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.step-card {
  padding: 1.4rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
}

.step-number {
  display: inline-block;
  font-weight: 800;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.plans {
  background: rgba(255, 255, 255, 0.6);
}

.plan-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.plan-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 1.3rem;
  display: grid;
  gap: 0.6rem;
}

.plan-card.featured {
  background: linear-gradient(140deg, #fff8ea, #fffdf7);
  border-color: rgba(194, 143, 0, 0.3);
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1c2233;
}

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

.plan-desc {
  color: var(--muted);
  margin: 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.plan-features li {
  position: relative;
  padding-left: 20px;
  color: #1c2233;
  font-weight: 700;
}

.plan-features li.check::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.plan-features li.dash::before {
  content: "—";
  position: absolute;
  left: 2px;
  color: var(--muted);
  font-weight: 800;
}

.plan-note {
  margin-top: 0.8rem;
  color: var(--muted);
}

.coverage-belts {
  display: grid;
  gap: 1rem;
}

.coverage-belt {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(120deg, #fffdfa, #f6f1e7);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.belt-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.belt-count {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #fff2d8;
  color: #2f1f00;
  font-weight: 800;
  border: 1px solid var(--border);
}

.belt-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.belt-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  color: #1c2233;
  font-weight: 700;
  border: 1px solid var(--border);
  position: relative;
}

.belt-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 4px rgba(194, 143, 0, 0.18);
}

.testimonials h2,
.drops h2 {
  margin-bottom: 0.5rem;
}

.testimonial-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.testimonial {
  padding: 1.3rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.7rem;
}

.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial cite {
  color: var(--accent);
  font-weight: 700;
  font-style: normal;
}

.newsletter {
  padding-bottom: 5rem;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(226, 199, 120, 0.25), rgba(255, 255, 255, 0.9));
}

.newsletter-form {
  width: 100%;
}

.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter input[type="email"] {
  flex: 1 1 230px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: #1c2233;
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
  max-height:50px;
}

.newsletter input[type="email"]::placeholder {
  color: rgba(28, 34, 51, 0.55);
}

.newsletter-message {
  margin-bottom: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
}

.newsletter-success {
  background: rgba(226, 199, 120, 0.2);
  color: #c28f00;
}

.newsletter-info {
  background: rgba(28, 34, 51, 0.08);
  color: #1c2233;
}

.newsletter-error {
  background: rgba(205, 61, 50, 0.18);
  color: #b42318;
}

.signup-form {
  display: grid;
  gap: 0.8rem;
}

.signup-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  color: #1c2233;
}

.signup-form input,
.signup-form textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #1c2233;
}

.signup-form textarea {
  resize: vertical;
}

.radio-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.radio-option {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.radio-option span {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  min-width: 170px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  transition: border 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
  text-align: center;
}

.radio-option span strong {
  font-size: 1rem;
  color: var(--text);
}

.radio-option span small {
  font-size: 0.85rem;
  color: var(--muted);
}

.radio-option input[type="radio"]:checked + span {
  border-color: rgba(194, 143, 0, 0.6);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  background: rgba(194, 143, 0, 0.08);
}

.radio-option input[type="radio"]:checked + span strong {
  color: var(--accent);
}

.radio-option input[type="radio"]:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .radio-row {
    flex-direction: column;
    align-items: stretch;
  }

  .radio-option {
    width: 100%;
  }

  .radio-option span {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
}

.signup-card {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.form-block {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.billing-block {
  display: none;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.helper {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.helper.error {
  color: #b00020;
}

footer {
  border-top: 1px solid var(--border);
  background: #fbf8f1;
  color: var(--muted);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-logo {
  height: 38px;
  margin-bottom: 0.65rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: #1c2233;
  font-weight: 600;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    width: 100%;
    padding: 1.25rem;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    border-radius: 16px;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    z-index: 20;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav {
    gap: 0.75rem;
    padding: 1rem;
  }

  .site-nav .cta-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .site-nav .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .split,
  .newsletter-inner {
    grid-template-columns: 1fr;
  }

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

  .coverage-belts {
    gap: 0.75rem;
  }

  .hero-copy {
    grid-column: span 12;
  }

  .hero-visual {
    grid-column: span 12;
  }

  .section {
    padding: 3.2rem 0;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    gap: 1.5rem;
  }

  .hero-visual {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .belt-line {
    gap: 0.3rem;
  }

.belt-chip {
  width: 100%;
  justify-content: flex-start;
}
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.loading-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.loading-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  max-width: 320px;
}

.loading-card p {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(226, 199, 120, 0.25);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .stat-row {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input[type="email"] {
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
  }
}
