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

:root {
  --brand: #0b2a9b;
  --brand-dark: #0600c0;
  --accent: #c10fff;
  --text: #1e293b;
  --text-muted: #475569;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --surface-alt: #eef2ff;
  --chip: #f2f5f7;
  --border: #e2e8f0;
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  background: var(--brand);
  color: #fff;
  z-index: 100;
  box-shadow: 0 6px 18px rgba(7, 12, 44, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 22px;
  font-weight: 500;
}

.nav a {
  color: rgba(255, 255, 255, 0.8);
}

.nav a:hover,
.nav a:focus {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--brand-dark);
  color: #fff;
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--brand);
  color: #fff;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--brand);
  background: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--brand);
  color: var(--brand);
}

.hero {
  background: linear-gradient(135deg, #f6f8ff 0%, #eef2ff 60%, #ffffff 100%);
  padding: 44px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-aside {
  display: grid;
  gap: 14px;
}

.form-shell {
  background: rgba(11, 42, 155, 0.08);
  border: 1px solid rgba(11, 42, 155, 0.18);
  padding: 14px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(11, 42, 155, 0.12);
}

.swiss-sticker {
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(11, 42, 155, 0.15);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
}

.swiss-cross {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #d80621;
  position: relative;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.swiss-cross::before,
.swiss-cross::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 1px;
}

.swiss-cross::before {
  width: 10px;
  height: 3px;
  left: 4px;
  top: 7.5px;
}

.swiss-cross::after {
  width: 3px;
  height: 10px;
  left: 7.5px;
  top: 4px;
}

.form-shell-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.form-shell-title {
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.form-shell-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  background: #fff;
  border: 1px solid rgba(11, 42, 155, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 12px;
}

.swiss-sticker {
  white-space: nowrap;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin: 0 0 12px;
}


.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--brand);
  font-size: 0.7rem;
  margin-bottom: 12px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chips span {
  background: var(--chip);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-chips span::before {
  content: "✓";
  font-weight: 700;
  color: var(--brand);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e9edff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-visual-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.illustration,
.illustration-image {
  width: 100%;
  height: auto;
}

.illustration.wide,
.illustration-image.wide {
  max-width: 720px;
  margin: 0 auto;
  display: block;
}

.break-mobile {
  display: none;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.badge {
  background: var(--brand);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.muted {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-steps {
  display: grid;
  gap: 16px;
}

.hero-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-index {
  background: var(--surface-alt);
  color: var(--brand);
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-step p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-progress {
  margin-top: 22px;
}

.progress-bar {
  height: 8px;
  background: var(--surface-alt);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin: 6px 0;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: #78e479;
  border-radius: var(--radius-pill);
}

.value-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  color: var(--brand);
  margin-bottom: 12px;
}

.value-icon svg {
  width: 20px;
  height: 20px;
}

.value-strip {
  padding: 30px 0;
  background: var(--surface);
}

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

.value-card {
  background: var(--surface-soft);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.value-card h3 {
  margin: 6px 0 8px;
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--surface-soft);
}

.section-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin: 8px 0 10px;
}

.section-header p {
  color: var(--text-muted);
}

.section-visual {
  margin: 18px 0 32px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.step-card h3 {
  margin-top: 14px;
}

.centered {
  text-align: center;
  margin-top: 28px;
}

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

.hybrid-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
}

.hybrid-card.featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow);
}

.hybrid-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
}

.hybrid-card li::before {
  content: "•";
  color: var(--brand);
  margin-right: 6px;
}

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

.pricing-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.pricing-card.featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.8rem;
  margin: 0;
}

.price span {
  font-size: 2.3rem;
  font-weight: 700;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--text-muted);
}

.pricing-card li::before {
  content: "✓";
  color: var(--brand);
  margin-right: 8px;
  font-weight: 700;
}

.pricing-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.why-grid article {
  background: var(--surface);
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.why-grid h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #a855f7;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

.testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.testimonial blockquote {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--text);
}

.testimonial figcaption {
  color: var(--text-muted);
  font-weight: 500;
}

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

.multi-step {
  display: grid;
  gap: 14px;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.form-progress {
  display: grid;
  gap: 6px;
}

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

.form-step {
  display: none;
  gap: 12px;
}

.form-step.is-active {
  display: grid;
}

.form-step h3 {
  margin: 0 0 6px;
}

.form-step .muted {
  margin: 0 0 6px;
}

.option-grid {
  display: grid;
  gap: 10px;
}

.option-card {
  display: grid;
  gap: 4px;
  border: 1px solid var(--border);
  padding: 12px 40px 12px 42px;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  position: relative;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease, background 0.18s ease;
}

.option-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #cbd5f5;
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

.option-card::after {
  content: "→";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-weight: 700;
  transition: transform 0.18s ease, color 0.18s ease;
}

.option-card:hover {
  border-color: var(--brand);
  box-shadow: 0 14px 28px rgba(11, 42, 155, 0.16);
  transform: translateY(-2px);
}

.option-card:hover::after {
  color: var(--brand);
  transform: translateY(-50%) translateX(2px);
}

.option-card input {
  display: none;
}

.option-title {
  font-weight: 600;
}

.option-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.option-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  background: #eef2ff;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

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

.option-card.is-selected {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(11, 42, 155, 0.12);
}

.option-card.is-selected::before {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: inset 0 0 0 4px #fff;
}

.option-card.is-selected::after {
  color: var(--brand);
}

.option-card:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 42, 155, 0.12);
  transform: translateY(-2px);
}

.form-fields {
  display: grid;
  gap: 10px;
}

.form-fields label {
  display: grid;
  gap: 4px;
  font-weight: 500;
}

.form-fields input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  min-height: 48px;
}

.form-fields input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 42, 155, 0.12);
}

.form-note {
  font-size: 0.7rem;
  color: #d80621;
  font-weight: 600;
}

.social-proof {
  display: grid;
  gap: 4px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  padding: 8px 10px;
  border-radius: 14px;
}

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

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 8px 14px rgba(15, 23, 42, 0.12);
  object-fit: cover;
  background: #fff;
}

.avatar + .avatar {
  margin-left: -8px;
}


.social-proof-text {
  font-size: 0.9rem;
  color: var(--text);
}

.stars {
  color: #f5b400;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.form-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.form-privacy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-success {
  background: #ecfdf3;
  border: 1px solid #86efac;
  padding: 16px;
  border-radius: 12px;
  display: grid;
  gap: 6px;
}

.form-success[hidden] {
  display: none !important;
}

details {
  background: var(--surface);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

summary {
  font-weight: 600;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  color: var(--text-muted);
  margin: 10px 0 0;
}

.cta-section {
  padding: 50px 0;
  background: var(--brand);
  color: #fff;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--brand);
}

.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus {
  background: #e6ecff;
  color: var(--brand);
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-section h2 {
  margin: 0 0 8px;
  font-size: 1.85rem;
}

.cta-note {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.footer-grid a {
  color: #cbd5f5;
  display: block;
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 24px;
  padding: 14px 0;
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .pricing-grid,
  .hybrid-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    box-shadow: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--brand);
    padding: 16px;
    border-radius: 0 0 16px 16px;
    flex-direction: column;
    gap: 12px;
    display: none;
    box-shadow: 0 12px 24px rgba(7, 12, 44, 0.2);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 26px 0 26px;
  }

  .eyebrow {
    margin-bottom: 6px;
  }

  .hero-lead {
    margin-bottom: 12px;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .hero-aside {
    order: 2;
  }

  .hero-visual-card {
    display: none;
  }

  .trust-chips span {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .form-shell {
    padding: 12px;
  }

  .swiss-sticker {
    font-size: 0.68rem;
    padding: 5px 10px 5px 7px;
  }

  .swiss-cross {
    width: 16px;
    height: 16px;
  }

  .hero-badges {
    margin: 3px 0 10px;
    gap: 6px;
  }

  .social-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-proof-text {
    font-size: 0.85rem;
  }

  .avatar {
    width: 28px;
    height: 28px;
  }

  .break-mobile {
    display: block;
  }

  .section {
    padding: 44px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 6px 0 8px;
  }

  .section-header p {
    margin: 0;
    font-size: 0.95rem;
  }

  .section-visual {
    margin: 12px 0 20px;
  }

  .hybrid-grid {
    gap: 14px;
  }

  .hybrid-card {
    padding: 18px;
  }

  .hybrid-card h3 {
    margin: 0 0 10px;
  }

  .hybrid-card p {
    margin: 0 0 10px;
  }

  .hybrid-card ul {
    gap: 6px;
  }

  .value-strip {
    padding: 16px 0;
  }

  .value-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .value-grid::-webkit-scrollbar {
    display: none;
  }

  .value-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

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

  .form-actions .btn-primary {
    order: -1;
  }

  .form-actions .btn {
    width: 100%;
  }

  .pricing-card .btn {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .value-grid,
  .steps-grid,
  .pricing-grid,
  .hybrid-grid,
  .why-grid,
  .testimonials-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  html {
    font-size: 16px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-card {
    padding: 20px;
  }

  .trust-chips {
    gap: 6px;
  }

  .trust-chips span {
    padding: 6px 10px;
  }

  .section {
    padding: 60px 0;
  }
}
