@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800&display=swap');

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

:root {
  --accent: #6366f1;
  --accent-dark: #4f46e5;
  --accent-light: #eef2ff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-xmuted: #94a3b8;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --success: #059669;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-accent: 0 4px 18px color-mix(in srgb, var(--accent) 35%, transparent);
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
}

/* ─── Top announcement bar ───────────────────────────────────────── */
.topbar {
  background: color-mix(in srgb, var(--accent) 6%, #f8fafc);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}
.topbar-pills { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.topbar-pills span { display: inline-flex; align-items: center; gap: 5px; }
.topbar-pills span::before {
  content: '✓'; color: var(--success);
  font-weight: 700; font-size: 0.72rem;
}

/* ─── Page wrapper ───────────────────────────────────────────────── */
.page-wrapper { max-width: 680px; margin: 0 auto; padding: 0 20px 80px; }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: #0f172a;
  overflow: hidden;
  margin: 0 -20px;
  padding: 60px 20px 52px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 28%, transparent), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 14%, transparent), transparent 65%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.7rem; font-weight: 600;
  padding: 5px 14px; border-radius: 99px;
  margin-bottom: 22px;
  letter-spacing: 0.07em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: 2.75rem; font-weight: 800; color: #ffffff;
  line-height: 1.1; letter-spacing: -0.035em; margin-bottom: 16px;
}
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.62);
  line-height: 1.7; max-width: 500px; margin: 0 auto 28px;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px; padding: 8px 22px;
  font-size: 0.84rem; color: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.hero-meta .price {
  font-weight: 700; font-size: 1rem; color: #ffffff;
}
.hero-meta .sep { opacity: 0.3; }

/* ─── Dividers ───────────────────────────────────────────────────── */
hr.divider { border: none; border-top: 1px solid var(--border); }

/* ─── Section ────────────────────────────────────────────────────── */
.section { padding: 40px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.section-tag::before {
  content: '';
  display: inline-block; width: 14px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.section h2 {
  font-size: 1.5rem; font-weight: 700; color: var(--text);
  margin-bottom: 28px; letter-spacing: -0.025em; line-height: 1.25;
}

/* ─── Feature grid ───────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fcard {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: default;
}
.fcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.fcard-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 12px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent) 25%, transparent);
}
.fcard-icon svg {
  width: 19px; height: 19px; stroke: #fff;
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.fcard strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.fcard span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ─── Steps ──────────────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; }
.step-row { display: flex; gap: 18px; align-items: flex-start; }
.step-left { display: flex; flex-direction: column; align-items: center; width: 40px; flex-shrink: 0; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 3px 12px color-mix(in srgb, var(--accent) 30%, transparent);
}
.step-line { width: 2px; height: 36px; background: var(--border); margin-top: 5px; }
.step-row:last-child .step-line { display: none; }
.step-content { padding-top: 9px; padding-bottom: 10px; }
.step-content strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.step-content span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ─── What's inside ──────────────────────────────────────────────── */
.inside-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}
.inside-box h3 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.inside-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.inside-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text); line-height: 1.5; }
.chk {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ─── Form card ──────────────────────────────────────────────────── */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-card h2 {
  font-size: 1.3rem; font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 4px; color: var(--text);
}
.form-card .fc-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.83rem; font-weight: 600; color: var(--text); }
.opt-label { font-weight: 400; color: var(--text-muted); }
.field input, .field textarea, .field select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.95rem;
  font-family: inherit; color: var(--text);
  background: var(--bg-subtle); width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-xmuted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-size: 14px; padding-right: 40px;
  background-color: var(--bg-subtle);
}
.field .hint { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }

.submit-btn {
  margin-top: 8px; width: 100%; padding: 15px 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; border: none; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-accent);
  transition: box-shadow 0.2s ease, transform 0.15s ease, opacity 0.15s;
  font-family: inherit;
}
.submit-btn:hover:not(:disabled) {
  box-shadow: 0 6px 24px color-mix(in srgb, var(--accent) 45%, transparent);
  transform: translateY(-1px);
}
.submit-btn:active:not(:disabled) { transform: scale(0.99); }
.submit-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ─── Trust strip ────────────────────────────────────────────────── */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 18px; margin-top: 18px;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 5px; font-size: 0.77rem; color: var(--text-muted); }
.trust-strip span svg {
  width: 13px; height: 13px; stroke: var(--success);
  fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

/* ─── Guarantee ──────────────────────────────────────────────────── */
.guarantee {
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg); padding: 20px 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.guarantee svg {
  width: 22px; height: 22px; stroke: #059669;
  fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px;
}
.guarantee p { font-size: 0.855rem; color: #15803d; line-height: 1.6; }
.guarantee p strong { font-weight: 700; display: block; margin-bottom: 1px; }
.guarantee p em { font-style: normal; opacity: 0.8; font-size: 0.82rem; }

/* ─── Spacing ────────────────────────────────────────────────────── */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  text-align: center; padding: 32px 20px;
  font-size: 0.77rem; color: var(--text-xmuted);
  border-top: 1px solid var(--border); margin-top: 48px;
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .topbar-pills { gap: 14px; font-size: 0.74rem; }
  .hero p { font-size: 0.97rem; }
  .section h2 { font-size: 1.3rem; }
}
