:root {
  --bg: #f2f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --ink: #0d1e31;
  --ink-soft: #49617a;
  --line: #d7e5f3;
  --primary: #0f4c81;
  --primary-2: #0c6ab3;
  --success: #0d9f6e;
  --warn: #b7791f;
  --danger: #b42318;
  --shadow: 0 14px 38px rgba(9, 46, 77, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 0%, #dcefff 0%, #f2f7fb 35%, #eef4fa 100%);
}

.topbar {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0f4c81, #0ea5e9);
  box-shadow: 0 0 0 6px rgba(15, 76, 129, 0.11);
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.top-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pill,
.pill-badge,
.price-pill {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: var(--surface);
}

.pill-badge {
  background: #ecfdf5;
  border-color: #10b981;
  color: #059669;
}

.price-pill {
  background: #0f4c81;
  color: #fff;
  border-color: #0f4c81;
}

main {
  max-width: 1200px;
  margin: 18px auto 30px;
  padding: 0 16px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-bottom: 14px;
}

.hero-left,
.hero-right {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero-left h1 {
  margin: 0 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  line-height: 1.08;
}

.hero-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.hero-chips {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-chips span,
.hero-badges .badge {
  font-size: 12px;
  border: 1px solid #cae0f5;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f4faff;
  font-weight: 700;
}

.hero-badges {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-badges .badge {
  background: #ecfdf5;
  border-color: #10b981;
  color: #059669;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.hero-stats .stat {
  text-align: center;
  padding: 12px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.hero-stats .stat strong {
  display: block;
  font-size: 24px;
  font-family: 'Space Grotesk', sans-serif;
  color: #0f4c81;
  margin-bottom: 4px;
}

.hero-stats .stat span {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
}

.trust-card h3 {
  margin-top: 0;
}

.trust-card ol {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.trust-card li {
  margin-bottom: 8px;
}

.trust-line {
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #0f4c81;
}

.trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.trust-badges span {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #f0f9ff;
  color: #0f4c81;
  font-weight: 600;
}

.social-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.proof-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}

.proof-item strong {
  display: block;
  font-size: 22px;
  font-family: 'Space Grotesk', sans-serif;
}

.proof-item span {
  font-size: 12px;
  color: var(--ink-soft);
}

.container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.left,
.right {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.step {
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px dashed #b8cde2;
  padding: 8px;
  text-align: center;
  color: #4d647b;
}

.step.done {
  background: #ecf6ff;
  color: #0f4c81;
}

.step.active {
  border-style: solid;
  border-color: #0f4c81;
  color: #0f4c81;
}

.progress-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 14px;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
}

.progress-track {
  height: 8px;
  background: #dde9f5;
  border-radius: 999px;
  overflow: hidden;
}

.progress-track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f4c81, #0b84cc);
  transition: width 0.25s ease;
}

.progress-card p {
  margin: 10px 0 0;
  font-size: 12px;
  color: #4d647b;
}

form label {
  display: block;
  margin-bottom: 11px;
  font-size: 13px;
  font-weight: 700;
}

form label .helper {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  margin-top: 4px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
select,
textarea,
button {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #c8dbed;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 14px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0f4c81;
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
}

.notice {
  border: 1px solid #f6d28f;
  background: #fff6dd;
  border-radius: 12px;
  padding: 10px;
  font-size: 12px;
  color: #7b5704;
}

.cta-main {
  margin-top: 4px;
  border: 0;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(130deg, #0f4c81, #0d6fb9);
  box-shadow: 0 12px 20px rgba(15, 76, 129, 0.2);
}

.cta-helper {
  margin: 8px 0 0;
  color: #5a738d;
  font-size: 12px;
  text-align: center;
}

.cta-trust-elements {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cta-trust-elements .trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #64748b;
}

.cta-trust-elements .trust-item span:first-child {
  font-size: 14px;
}

.right h2,
.faq h2 {
  margin-top: 0;
  font-family: 'Space Grotesk', sans-serif;
}

.preview-sub {
  margin: 0 0 10px;
  color: #4d647b;
  font-size: 13px;
}

.preview-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid #bdd2e6;
  border-radius: 14px;
  min-height: 285px;
  background: linear-gradient(150deg, #fcfdff, #edf5ff);
  margin-bottom: 12px;
}

.preview-content {
  padding: 18px;
  filter: blur(3.8px);
  user-select: none;
  -webkit-user-select: none;
}

.preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.2), rgba(233, 244, 255, 0.45));
}

.preview-overlay span {
  border: 1px solid #c8daee;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px;
  font-weight: 700;
  font-size: 12px;
}

.faded {
  color: #4b627a;
}

.tips,
.value-box,
.benefits-card,
.testimonials-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #f8fcff;
  margin-top: 10px;
}

.benefits-card h3,
.testimonials-card h3 {
  margin: 0 0 12px;
  font-size: 14px;
}

.benefits-card ul {
  margin: 0;
  padding-left: 18px;
}

.benefits-card li {
  margin-bottom: 8px;
  color: #4d647b;
  font-size: 13px;
  line-height: 1.6;
}

.testimonials-card {
  background: #f0fdf4;
  border-color: #10b981;
}

.testimonials-card .testimonial {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d1fae5;
}

.testimonials-card .testimonial:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.testimonials-card .testimonial p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #065f46;
  font-style: italic;
  line-height: 1.6;
}

.testimonials-card .testimonial cite {
  font-size: 11px;
  color: #047857;
  font-weight: 600;
  font-style: normal;
}

.tips h3,
.value-box h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.tips ul,
.value-box ul {
  margin: 0;
  padding-left: 18px;
}

.tips li,
.value-box li {
  margin-bottom: 6px;
  color: #4d647b;
  font-size: 13px;
}

.payment {
  margin-top: 13px;
  border-radius: 12px;
  border: 1px solid #bfd4e7;
  background: #f5fbff;
  padding: 12px;
}

.payment img {
  max-width: 230px;
}

.ok {
  color: var(--success);
  font-weight: 800;
}

.error {
  color: var(--danger);
  font-weight: 800;
}

.warn {
  color: var(--warn);
  font-weight: 800;
}

.info {
  color: #0f4c81;
  font-weight: 800;
}

.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-top: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #f9fcff;
}

.faq-grid h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.faq-grid p {
  margin: 0;
  color: #4d647b;
  font-size: 13px;
}

.final-trust {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-top: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.trust-badges-final {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.trust-badges-final span {
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f0f9ff;
  color: #0f4c81;
  font-weight: 600;
}

.live-counter-final {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #4d647b;
}

.live-counter-final .pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.live-counter-final strong {
  color: #0f4c81;
  font-family: 'Space Grotesk', sans-serif;
}

.footer {
  max-width: 1200px;
  margin: 16px auto 30px;
  padding: 0 16px;
  color: #5a7288;
  font-size: 12px;
  text-align: center;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #5a7288;
  text-decoration: none;
}

.footer-links a:hover {
  color: #0f4c81;
  text-decoration: underline;
}

.hidden {
  display: none;
}

code {
  word-break: break-all;
}

@media (max-width: 980px) {
  .hero,
  .container,
  .faq-grid,
  .social-proof,
  .field-row,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 30px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-meta {
    flex-wrap: wrap;
  }

  .cta-main {
    position: sticky;
    bottom: 8px;
  }

  .trust-badges,
  .trust-badges-final,
  .cta-trust-elements {
    justify-content: flex-start;
  }
}
