@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Source+Serif+4:wght@400;600&display=swap");

:root {
  --bg: #E4F1F7;
  --bg-2: #EDF0EF;
  --ink: #141414;
  --muted: #365374;
  --accent: #257BC3;
  --accent-2: #B1E2F3;
  --accent-3: #F87C3C;
  --card: #FFFFFF;
  --stroke: #D9E6EF;
  --focus: #1E4B97;
  --shadow: 0 10px 30px rgba(20, 20, 20, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 60%, #f7f7f7 100%);
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(248, 120, 56, 0.12), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(32, 120, 192, 0.12), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(100% - 2rem, var(--max)); margin: 0 auto; }

.preload {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 999;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.preload.hidden {
  opacity: 0;
  visibility: hidden;
}
.preload-logo {
  width: 160px;
  max-width: 60vw;
  height: auto;
}
.preload-text {
  color: var(--muted);
  font-size: 0.95rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}
.brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-logo {
  width: 140px;
  max-height: 42px;
  object-fit: contain;
}
.nav-links {
  display: none;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--accent-3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost {
  border-color: var(--stroke);
  background: #fff;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.85;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}
.hero::before {
  width: 460px;
  height: 460px;
  right: -140px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, #f9e6b5 0%, transparent 60%);
}
.hero::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle at 60% 60%, #b7eed6 0%, transparent 60%);
  animation-delay: 2s;
}
.hero-grid {
  display: grid;
  gap: 2.2rem;
  position: relative;
  z-index: 1;
  animation: rise 0.7s ease both;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-2);
  font-weight: 600;
  width: fit-content;
}
.price-pill {
  background: var(--accent-3);
  color: #3b2a00;
  border-radius: 10px;
  padding: 0.2rem 0.5rem;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.highlight {
  background: linear-gradient(120deg, #fff2c2 0%, #ffe08a 100%);
  padding: 0 0.35rem;
  border-radius: 6px;
}
.title-accent {
  background: linear-gradient(180deg, transparent 60%, #ffe8a3 60%);
  padding: 0 0.25rem;
  border-radius: 6px;
  display: inline;
  box-decoration-break: clone;
}
.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-note {
  font-size: 0.95rem;
  color: var(--muted);
}
.legal-note {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  margin: 0.8rem 0 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-icons span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-icons .material-symbols-outlined {
  font-size: 1.2rem;
  color: var(--accent);
}

section { padding: 4rem 0; }
.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}
.section-lead { color: var(--muted); max-width: 44rem; }
.inline-cta {
  display: grid;
  gap: 0.8rem 1.2rem;
  margin-top: 1.2rem;
}
.inline-cta .section-lead { max-width: none; margin: 0; }

.grid-3, .grid-2, .grid-4, .grid-6 {
  display: grid;
  gap: 1rem;
}
.grid-6 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 20px rgba(20, 20, 20, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pain-grid .card {
  position: relative;
  overflow: hidden;
  border-color: rgba(32, 120, 192, 0.25);
}
.pain-grid .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  opacity: 0.8;
}
.pain-grid .card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(32, 120, 192, 0.12);
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(20, 20, 20, 0.12);
}
.card-icon {
  display: inline-flex;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.card h3 { margin: 0 0 0.4rem; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.pill-row.center {
  justify-content: center;
}
.pill {
  background: #f1eee6;
  border: 1px solid var(--stroke);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.pill:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
}

.steps .step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.price-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f7f3 60%, #fff 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  animation: rise 0.7s ease both;
}
.price-grid {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}
.price-hero {
  display: grid;
  gap: 0.6rem;
}
.price-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.price-strike {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 600;
}
.price-free {
  background: var(--accent-3);
  color: #2c1c00;
  border-radius: 10px;
  padding: 0.2rem 0.5rem;
  font-weight: 700;
}
.price-meta {
  display: grid;
  gap: 0.6rem;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.price-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.5rem;
  align-items: start;
  color: var(--muted);
}
.price-list .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 0.1rem;
}
.price-meta .pill {
  background: #eef4fb;
  border-color: rgba(32, 120, 192, 0.2);
}
.scarcity {
  background: #fff1d7;
  border: 1px solid #f0d39a;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  text-align: center;
}
.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.price-value {
  font-size: 2rem;
  font-weight: 700;
}
.muted { color: var(--muted); }

.urgency {
  background: #fff6df;
  border: 1px solid #f2d99b;
  border-radius: var(--radius);
  padding: 1.2rem;
  animation: rise 0.7s ease both;
  text-align: center;
}
.urgency-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.full-bleed {
  width: 100%;
  padding: 4rem 0;
}
.full-bleed.blue {
  background: linear-gradient(120deg, rgba(32, 120, 192, 0.12), rgba(248, 120, 56, 0.08));
}
.full-bleed.warm {
  background: linear-gradient(120deg, rgba(248, 120, 56, 0.14), rgba(32, 120, 192, 0.06));
}

.trust-single {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
}
.trust-logo {
  width: 260px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.logo-placeholder {
  background: #fff;
  border: 1px dashed var(--stroke);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

details {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
details:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(20, 20, 20, 0.08);
}
details + details { margin-top: 0.7rem; }
summary {
  cursor: pointer;
  font-weight: 600;
}
details p { margin: 0.7rem 0 0; color: var(--muted); }

form {
  display: grid;
  gap: 1rem;
}
label { font-weight: 600; font-size: 0.95rem; }
input, select, textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  font: inherit;
  background: #fff;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus, button:focus {
  outline: 3px solid rgba(31, 122, 100, 0.25);
  border-color: var(--focus);
}
.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.checkbox input { width: auto; margin-top: 0.2rem; }
.iframe-wrap {
  border-radius: var(--radius);
  animation: rise 0.7s ease both;
}
.iframe-form {
  width: 100%;
  height: 520px;
  min-height: 520px;
  border: 0;
}

footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}
.footer-title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.footer-text {
  margin: 0 0 0.4rem;
  color: var(--muted);
}
.footer-small {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-logo {
  width: 140px;
  max-height: 42px;
  object-fit: contain;
}
.footer-links {
  display: grid;
  gap: 0.4rem;
}
.footer-note {
  border-top: 1px dashed var(--stroke);
  padding-top: 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.legal-info {
  display: grid;
  gap: 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #fff;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(20, 20, 20, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 80;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top .material-symbols-outlined {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .iframe-form {
    height: 600px;
    min-height: 600px;
  }
  .legal-info { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links { display: flex; }
  .hero-grid { grid-template-columns: 60% 40%; align-items: center; }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .trust-logos { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .inline-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .price-grid { grid-template-columns: 1.2fr 1fr; }
}
@media (max-width: 640px) {
  .back-to-top {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 44px;
    height: 44px;
  }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(14px); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
