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

:root {
  --ink: #0a0f1e;
  --ink2: #111827;
  --paper: #ffffff;
  --card: #f6f7fa;
  --card2: #eef0f5;
  --gold: #8a6d00;
  --gold2: #6b5400;
  --gold-fill: #ffd426;
  --dim: #3a4150;
  --dim2: #667085;
  --border: rgba(10, 15, 30, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 26px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-link {
  font-size: 15px;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover {
  color: var(--ink);
}
.lang-link {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 9px;
}
.lang-link:hover {
  border-color: var(--gold2);
}
.btn-cta {
  background: var(--gold-fill);
  color: var(--ink);
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-cta:hover {
  opacity: 0.88;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: calc(100vh - 58px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 55% at 50% -10%,
      rgba(255, 212, 38, 0.14) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 80% 60% at 80% 110%,
      rgba(196, 154, 60, 0.1) 0%,
      transparent 70%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold-fill);
  opacity: 0.6;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6.5vw, 68px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  position: relative;
}
h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--dim);
  max-width: 520px;
  line-height: 1.65;
  margin: 0 auto 2.5rem;
  position: relative;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-primary {
  background: var(--gold-fill);
  color: var(--ink);
  border: none;
  border-radius: 8px;
  padding: 14px 30px;
  font-size: 16.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    opacity 0.15s,
    transform 0.15s;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(10, 15, 30, 0.2);
  border-radius: 8px;
  padding: 14px 30px;
  font-size: 16.5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.15s,
    transform 0.15s;
}
.btn-outline:hover {
  border-color: rgba(10, 15, 30, 0.4);
  transform: translateY(-1px);
}
.hero-note {
  margin-top: 1rem;
  font-size: 14px;
  color: var(--dim2);
  position: relative;
}

/* ── TRUST STRIP ────────────────────────────── */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--dim);
}
.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-fill);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FUNNEL / HOW IT WORKS ──────────────────── */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-tag {
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 17px;
  color: var(--dim);
  max-width: 500px;
  line-height: 1.6;
}
.section-note {
  font-size: 16px;
  color: var(--gold2);
  margin-top: 0.9rem;
  max-width: 560px;
  line-height: 1.6;
}

.funnel-fork {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem 0 1.2rem;
}
.funnel-fork-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.funnel-fork-label {
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}
.funnel-choice {
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
  background: transparent;
  border-radius: 0;
  gap: 16px;
}
.funnel-step-choice {
  border: 1px solid rgba(196, 154, 60, 0.22);
  position: relative;
  padding-top: 2.5rem;
}
.funnel-choice-badge {
  position: absolute;
  top: -1px;
  left: 1.4rem;
  background: var(--gold-fill);
  color: #0a0f1e;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
}
.funnel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.funnel-step {
  background: var(--card);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}
.funnel-step:hover {
  background: var(--card2);
}
.funnel-num {
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}
.funnel-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}
.funnel-sub {
  font-size: 15px;
  color: var(--gold2);
  font-weight: 600;
}
.funnel-desc {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 0.25rem;
}

/* ── DEPOSIT CALLOUT ────────────────────────── */

/* ── SERVICES ───────────────────────────────── */
.services-wrap {
  background: #1a2440;
}
.services-wrap .section-tag {
  color: var(--gold-fill);
}
.services-wrap .section-title {
  color: #fff;
}
.services-wrap .section-sub {
  color: rgba(255, 255, 255, 0.82);
}
.services {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.svc-label {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── PRODUCT LINEUP ─────────────────────────── */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 2rem;
}
.product {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.9rem 1.6rem 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  column-gap: 2.4rem;
  align-items: start;
  transition: border-color 0.18s;
}
.product-left {
  display: flex;
  flex-direction: column;
}
.product-right {
  display: flex;
  flex-direction: column;
}
.product .product-btn {
  margin-top: auto;
}
@media (max-width: 760px) {
  .product {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }
}
.product:hover {
  border-color: rgba(196, 154, 60, 0.35);
}
.product-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.product-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.product-price {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 14px;
}
.product-price .price-note {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dim);
  margin-left: 2px;
}
.product-desc {
  font-size: 15.5px;
  color: var(--dim);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.product-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 9px;
}
.product-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--dim);
  line-height: 1.5;
}
.product-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
  background: rgba(196, 154, 60, 0.12);
  border: 1px solid rgba(196, 154, 60, 0.35);
  color: var(--gold2);
}
.product-list.tiers li {
  justify-content: space-between;
  gap: 12px;
}
.product-list.tiers li::before {
  content: none;
}
.product-list.tiers li strong {
  color: var(--gold2);
  font-weight: 600;
  white-space: nowrap;
}
.product-list.tiers li {
  align-items: flex-start;
}
.product-list.tiers li strong.wrap {
  white-space: nowrap;
  text-align: right;
  line-height: 1.85;
}
.tiers-pay li span {
  font-weight: 600;
  color: var(--gold2);
}
.btn-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--gold-fill);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    opacity 0.15s,
    transform 0.15s;
}
.btn-pay:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.product-btn {
  margin-top: auto;
}
.product-note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--dim2);
  text-align: center;
}
.svc-sub {
  font-size: 15.5px;
  color: var(--dim);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-width: 640px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
  transition:
    border-color 0.15s,
    transform 0.2s;
}
.card:hover {
  border-color: rgba(196, 154, 60, 0.35);
  transform: translateY(-2px);
}
.card-price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 8px;
}
.price-note {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--dim);
  margin-left: 6px;
}
.card-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.card-desc {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.5;
}
.card-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--gold);
  border: 1px solid rgba(196, 154, 60, 0.3);
  border-radius: 4px;
  padding: 2px 8px;
}

/* ── WHY US ─────────────────────────────────── */
.why-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.why-icon {
  font-size: 22px;
  margin-bottom: 0.75rem;
}
.why-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.why-desc {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.55;
}

/* ── SCENARIOS ──────────────────────────────── */
.scenario-wrap {
  background: var(--card2);
}
.scenario {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.scene-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 2.5rem;
}
.scene-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.scene-who {
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.scene-quote {
  font-family: var(--serif);
  font-size: 16.5px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.scene-how {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.55;
}

/* ── CTA ────────────────────────────────────── */
.cta-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #fbf3df 100%);
  border: 1px solid rgba(196, 154, 60, 0.3);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.cta-sub {
  font-size: 17px;
  color: var(--dim);
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 15px;
}
.footer-links a {
  color: var(--dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  margin-top: 0.75rem;
  font-size: 14px;
  color: var(--dim2);
}

/* ── CHOOSER (2-step decision tree) ─────────── */
.chooser {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  scroll-margin-top: 72px;
}
.chooser-head {
  margin-bottom: 2rem;
}
.step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 1.1rem;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.step-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.step-label .n {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.chooser-foot {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 15px;
  color: var(--dim2);
}
.chooser-foot a {
  color: var(--gold);
}
.choice {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.9rem 1.6rem;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  column-gap: 2.4rem;
  align-items: center;
}
.choice-left {
  display: flex;
  flex-direction: column;
}
.choice .mini-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border-top: none;
  padding-top: 0;
}
.choice .mini {
  font-size: 13px;
}
.choice-right {
  display: flex;
  flex-direction: column;
}
.choice .btn-card {
  margin-top: 12px;
}
@media (max-width: 760px) {
  .choice {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }
}
.choice .price-hint {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 14px;
}
.choice:hover {
  border-color: rgba(196, 154, 60, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(10, 15, 30, 0.12);
}
.choice:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.choice.selected {
  border-color: var(--gold);
}
.choice.selected::after {
  content: "✓ Selected";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 30px;
  background: var(--gold-fill);
  color: var(--ink);
}
.choice-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 23px;
  background: rgba(196, 154, 60, 0.12);
  border: 1px solid rgba(196, 154, 60, 0.35);
}
.choice-icon.neutral {
  background: rgba(10, 15, 30, 0.04);
  border-color: var(--border);
}
.choice .choice-icon {
  margin-left: 0;
  margin-right: 0;
}
.choice-icon-pair {
  display: flex;
  justify-content: center;
  margin: 0 auto 1rem;
}
.choice-icon-pair .choice-icon {
  margin: 0;
  position: relative;
}
.choice-icon-pair .choice-icon + .choice-icon {
  margin-left: -12px;
  background: var(--card2);
  z-index: 1;
}
.choice h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.choice h2 .accent {
  color: var(--gold);
  font-style: italic;
}
.choice .sub {
  font-size: 16px;
  color: var(--dim);
  margin-bottom: 1.2rem;
}
.check-list {
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-bottom: 1.4rem;
  display: grid;
  gap: 8px;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--dim);
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 3px;
  background: rgba(10, 15, 30, 0.04);
  border: 1px solid var(--border);
  color: var(--dim);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-bottom: 1.4rem;
  text-align: left;
}
.split-col {
  background: rgba(10, 15, 30, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
}
.split-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}
.split-head .split-icon {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(196, 154, 60, 0.12);
  border: 1px solid rgba(196, 154, 60, 0.25);
  flex-shrink: 0;
}
.split-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16.5px;
  color: var(--gold2);
  line-height: 1.2;
}
.split-tag {
  font-size: 13px;
  color: var(--dim2);
  margin-bottom: 8px;
}
.split ul {
  list-style: none;
  display: grid;
  gap: 6px;
}
.split li {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--dim);
  line-height: 1.45;
}
.split li::before {
  content: "✓";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
  background: rgba(196, 154, 60, 0.12);
  border: 1px solid rgba(196, 154, 60, 0.35);
  color: var(--gold2);
}
.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--sans);
  transition:
    opacity 0.15s,
    transform 0.15s;
  text-decoration: none;
}
.btn-card:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-card.gold {
  background: var(--gold-fill);
  color: var(--ink);
}
.btn-card.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(10, 15, 30, 0.2);
}
.btn-card.ghost:hover {
  opacity: 1;
  border-color: rgba(10, 15, 30, 0.4);
}
.btn-card .arrow {
  transition: transform 0.15s;
}
.btn-card:hover .arrow {
  transform: translateX(3px);
}
.price-hint {
  margin-top: 10px;
  font-size: 14px;
  color: var(--dim2);
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.4rem 0 0.25rem;
}
.connector .stem {
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, transparent, rgba(255, 212, 38, 0.45));
}
.connector .stem.down {
  background: linear-gradient(180deg, rgba(255, 212, 38, 0.45), transparent);
}
.connector .bubble {
  border: 1px dashed rgba(196, 154, 60, 0.35);
  background: var(--card2);
  border-radius: 12px;
  padding: 13px 24px;
  text-align: center;
  font-size: 15.5px;
  color: var(--dim);
}
.connector .bubble strong {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--gold2);
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.3rem;
}
.mini {
  text-align: center;
  font-size: 14px;
  color: var(--dim);
  display: grid;
  gap: 6px;
  justify-items: center;
  line-height: 1.4;
}
.mini .glyph {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background: rgba(196, 154, 60, 0.12);
  border: 1px solid rgba(196, 154, 60, 0.2);
}
.reset {
  display: block;
  margin: 1.4rem auto 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--dim2);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.reset:hover {
  color: var(--ink);
}
.svc-anchor {
  scroll-margin-top: 80px;
}

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.anim-d1 {
  animation-delay: 0.1s;
}
.anim-d2 {
  animation-delay: 0.25s;
}
.anim-d3 {
  animation-delay: 0.4s;
}
.anim-d4 {
  animation-delay: 0.55s;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.pulse {
  animation: pulse 2s ease infinite;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 760px) {
  .split {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 560px) {
  nav {
    padding: 0 1.25rem;
  }
  .nav-link:not(.lang-link) {
    display: none;
  }
  .hero {
    padding: 4rem 1.25rem 3rem;
  }
  .section,
  .why-wrap,
  .cta-wrap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .services {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .scenario {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .chooser {
    padding: 3.5rem 1.25rem 3rem;
  }
  .choice {
    padding: 1.6rem 1.2rem 1.3rem;
  }
  .cta-card {
    padding: 2rem 1.5rem;
  }
  .trust {
    gap: 1.25rem;
  }
  .funnel {
    grid-template-columns: 1fr;
  }
  .funnel-choice {
    grid-template-columns: 1fr;
  }
}
