:root {
  --navy-950: #030a19;
  --navy-900: #07142f;
  --navy-800: #0b173d;
  --navy-700: #132755;
  --gold-500: #d6b15f;
  --gold-600: #bf9131;
  --paper: #ffffff;
  --surface: #f3f6fa;
  --surface-strong: #e7edf5;
  --ink: #15213c;
  --muted: #5d6b82;
  --line: #d6deea;
  --green: #2d8d60;
  --shadow: 0 18px 48px rgba(7, 20, 47, 0.1);
  --radius: 22px;
  --shell: 1216px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #1d6fd8; outline-offset: 4px; }
section[id] { scroll-margin-top: 88px; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy-900);
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-soft { background: var(--surface); }
.section-dark { color: #fff; background: var(--navy-900); }
.centered { text-align: center; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-500); }
h1, h2, h3 {
  margin: 0;
  color: var(--navy-800);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}
h1 { font-size: clamp(2.55rem, 5.4vw, 4.75rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; }
h1 span, h2 span { color: var(--gold-600); }
.section-dark h2, .section-dark h3, .final-cta h2 { color: #fff; }
.section-dark h2 span { color: var(--gold-500); }
.section-heading { max-width: 820px; margin: 0 auto 44px; }
.section-heading > p:last-child { margin: 18px auto 0; color: var(--muted); font-size: 1.08rem; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(214, 177, 95, 0.38);
  background: rgba(7, 20, 47, 0.97);
  box-shadow: 0 8px 26px rgba(3, 10, 25, 0.16);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: grid; place-items: center; width: 78px; height: 52px; overflow: hidden; }
.brand img { width: 78px; transform: scale(1.8); }
.edition { justify-self: end; margin: 0; color: #fff; font-size: 0.84rem; font-weight: 750; }
.edition span { display: inline-block; width: 8px; height: 8px; margin-right: 9px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 5px rgba(214,177,95,.12); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: #07142f; background: linear-gradient(135deg, #efd17e, var(--gold-500)); box-shadow: 0 10px 24px rgba(214,177,95,.22); }
.button-gold:hover { background: linear-gradient(135deg, #f5dc98, #dfbd6d); }
.button-outline { color: var(--navy-800); border-color: #8fa0b8; background: #fff; }
.button-outline:hover { border-color: var(--navy-700); }
.button-large { min-height: 56px; padding: 15px 23px; }
.button-full { width: 100%; }
[aria-disabled="true"] { cursor: not-allowed; }

.hero { overflow: hidden; padding: 58px 0 70px; background: radial-gradient(circle at 88% 16%, rgba(214,177,95,.18), transparent 27%), linear-gradient(180deg, #eef3f9 0%, #fff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: clamp(38px, 6vw, 84px); }
.hero-copy { max-width: 690px; }
.hero-lead { margin: 24px 0 18px; color: #3e4e69; font-size: 1.14rem; }
.responsibility { margin: 0 0 22px; padding: 15px 17px; border-left: 4px solid var(--gold-500); border-radius: 0 13px 13px 0; color: #40506a; background: #fff; box-shadow: 0 8px 24px rgba(7,20,47,.07); }
.responsibility strong { color: var(--navy-800); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-demo-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--navy); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.hero-demo-link:hover { color: var(--gold-dark); }
.payment-note { margin: 14px 0 0; color: #53627a; font-size: .84rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.trust-row li { padding: 7px 11px; border: 1px solid #bcc8d8; border-radius: 999px; color: var(--navy-800); background: rgba(255,255,255,.75); font-size: .76rem; font-weight: 800; }
.hero-visual { position: relative; margin: 0; padding: 15px; border: 1px solid rgba(214,177,95,.6); border-radius: 26px; background: var(--navy-900); box-shadow: var(--shadow); }
.hero-visual::before { content: ""; position: absolute; inset: -14px 32px auto; height: 28px; border-radius: 999px; background: rgba(214,177,95,.12); filter: blur(12px); }
.hero-visual img { width: 100%; border-radius: 15px; }
.hero-visual figcaption { padding: 13px 4px 2px; color: var(--gold-500); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-align: center; text-transform: uppercase; }

.story-grid { display: grid; grid-template-columns: 1fr 1.65fr 1fr; align-items: stretch; gap: 16px; }
.story-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.story-card .number { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 28px; border: 1px solid var(--gold-500); border-radius: 50%; color: var(--gold-600); font-family: Georgia, serif; font-weight: 800; }
.story-card p { margin: 12px 0 0; color: var(--muted); }
.story-visual { margin: 0; overflow: hidden; border: 1px solid var(--gold-500); border-radius: var(--radius); box-shadow: var(--shadow); background: var(--navy-900); }
.story-visual img { width: 100%; height: 100%; object-fit: cover; }

.demo-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 50px; }
.demo-copy > p:not(.eyebrow,.disclosure) { margin: 20px 0; color: #d5dfec; font-size: 1.05rem; }
.sequence { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 24px 0; padding: 0; list-style: none; }
.sequence li { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid rgba(214,177,95,.3); border-radius: 11px; background: rgba(255,255,255,.045); font-weight: 750; }
.sequence span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: var(--navy-900); background: var(--gold-500); font-size: .75rem; }
.disclosure { color: #aebbd0; font-size: .79rem; }
.video-frame { padding: 10px; border: 1px solid rgba(214,177,95,.72); border-radius: 18px; background: var(--navy-950); box-shadow: 0 24px 60px rgba(0,0,0,.24); }
.video-frame video { width: 100%; aspect-ratio: 16/9; border-radius: 11px; background: #000; }
.video-caption { display: flex; justify-content: space-between; gap: 16px; padding: 10px 6px 3px; color: #b9c6d8; font-size: .75rem; }
.video-caption strong { color: var(--gold-500); }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.benefit-grid article { min-height: 210px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(150deg, #fff, #f7f9fc); box-shadow: var(--shadow); }
.benefit-grid article > span { display: block; margin-bottom: 26px; color: var(--gold-600); font-family: Georgia, serif; font-size: 1.15rem; font-weight: 800; }
.benefit-grid p { margin: 12px 0 0; color: var(--muted); }

.implementation-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 48px; }
.implementation-grid > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.stage-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; }
.stage-list li { padding: 12px; border: 1px solid var(--line); border-radius: 11px; color: var(--navy-800); background: #fff; font-size: .82rem; font-weight: 800; }
.stage-list span { display: block; color: var(--gold-600); font-size: .7rem; }
.portal-figure { margin: 0; overflow: hidden; border: 1px solid var(--gold-500); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.portal-figure img { width: 100%; }
.portal-figure figcaption { padding: 13px; color: #fff; background: var(--navy-800); font-size: .78rem; font-weight: 750; text-align: center; }

.requirements-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px 70px; }
.requirements-grid > div > p:last-child { color: var(--muted); }
.requirement-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0; padding: 0; list-style: none; }
.requirement-list li { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.requirement-list strong, .requirement-list span { display: block; }
.requirement-list strong { color: var(--navy-800); }
.requirement-list span { margin-top: 3px; color: var(--muted); font-size: .85rem; }
.requirements-note { grid-column: 1/-1; margin: 0; padding: 16px 19px; border-left: 4px solid var(--gold-500); border-radius: 0 13px 13px 0; color: #45536b; background: #f8f4e9; }

.certification-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 48px; }
.certification-grid > div:first-child > p:not(.eyebrow,.disclosure) { color: #d5dfec; }
.certificate-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.certificate-pair figure { margin: 0; }
.certificate-pair figure:last-child { margin-top: 44px; }
.certificate-pair img { border: 1px solid rgba(214,177,95,.65); border-radius: 14px; box-shadow: 0 18px 38px rgba(0,0,0,.25); }
.certificate-pair figcaption { margin-top: 8px; color: #bdc8d7; font-size: .74rem; font-weight: 700; text-align: center; }

.offer-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.offer-copy, .offer-summary { padding: clamp(25px, 4vw, 42px); border: 1px solid rgba(214,177,95,.55); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.offer-copy > p:not(.eyebrow,.payment-condition,.checkout-status,.secure-note) { color: var(--muted); }
.price { display: flex; align-items: flex-start; gap: 9px; margin: 25px 0 18px; }
.price small { padding-top: 12px; color: var(--gold-600); font-size: 1.1rem; font-weight: 900; }
.price strong { color: var(--navy-800); font: 700 clamp(4rem, 7vw, 6rem)/.82 Georgia, serif; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.payment-options > div { padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.payment-options span, .payment-options strong { display: block; }
.payment-options span { color: var(--gold-600); font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.payment-options strong { margin-top: 3px; color: var(--navy-800); }
.payment-condition { margin: 14px 0 18px; color: #53617a; font-size: .82rem; }
.secure-note { margin: 10px 0 0; color: #68758a; font-size: .77rem; text-align: center; }
.checkout-status { margin: 12px 0 0; padding: 10px; border: 1px solid #ca3e3e; border-radius: 9px; color: #8c1f1f; background: #fff2f2; font-size: .82rem; }
.offer-summary { color: #fff; background: var(--navy-800); }
.offer-summary { display: flex; flex-direction: column; }
.offer-summary h3 { margin-bottom: 22px; color: var(--gold-500); font-size: 1.6rem; }
.check-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #e1e8f1; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-500); font-weight: 900; }
.license-offer-figure { margin: 26px 0 0; overflow: hidden; border: 1px solid rgba(214,177,95,.5); border-radius: 16px; background: var(--navy-950); box-shadow: 0 16px 34px rgba(0,0,0,.22); }
.license-offer-figure img { width: 100%; }

.after-purchase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: item; }
.after-purchase li { display: flex; gap: 15px; padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow); }
.after-purchase li > span { flex: 0 0 auto; display: grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; color: var(--navy-900); background: var(--gold-500); font-size: .74rem; font-weight: 900; }
.after-purchase p { margin: 8px 0 0; color: var(--muted); font-size: .88rem; }

.continuity-grid { display: grid; grid-template-columns: 1.05fr .95fr .95fr; gap: 16px; align-items: center; }
.continuity-grid > div { padding-right: 28px; }
.continuity-grid > div p:last-child { color: #d6dfeb; }
.continuity-grid article { align-self: center; padding: 25px; border: 1px solid rgba(214,177,95,.55); border-radius: 19px; background: #eef3f8; box-shadow: 0 16px 34px rgba(0,0,0,.18); }
.continuity-grid article small { color: var(--gold-500); font-weight: 900; letter-spacing: .09em; }
.continuity-grid article strong { display: block; margin: 8px 0 10px; color: var(--navy-800); font: 700 2rem Georgia, serif; }
.continuity-grid article p { margin: 0; color: #40516b; }

.guarantee-support { background: #fff; }
.guarantee-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 16px; }
.guarantee-card, .support-card { border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.guarantee-card { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 26px; padding: 30px; }
.guarantee-card img { width: 180px; }
.guarantee-card p:last-child { color: var(--muted); }
.support-card { padding: 30px; color: #fff; background: var(--navy-800); }
.support-card h2 { color: #fff; font-size: 2rem; }
.support-card > p:not(.eyebrow,.support-warning) { color: #d8e2ee; }
.support-email { display: inline-block; margin: 6px 0 12px; color: var(--gold-500); font-size: 1.16rem; font-weight: 850; text-decoration: underline; text-underline-offset: 4px; }
.support-warning { margin: 20px 0 0; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.15); color: #b9c5d6; font-size: .8rem; }
.support-whatsapp { color: var(--navy-800); font-weight: 900; }

.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.decision-grid article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.decision-grid ul { display: grid; gap: 10px; margin: 0; padding-left: 21px; color: var(--muted); }
.decision-grid li::marker { color: var(--gold-600); }

.faq-shell { max-width: 940px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: clip; }
.faq-list summary { position: relative; cursor: pointer; padding: 18px 54px 18px 20px; color: var(--navy-800); font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--gold-600); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details[open] summary { border-bottom: 1px solid var(--line); background: var(--surface); }
.faq-list details p { margin: 0; padding: 18px 20px 20px; color: var(--muted); }

.final-cta { color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); }
.final-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 40px; }
.final-grid > div:first-child p:last-child { margin-bottom: 0; color: #d4dfeb; }
.final-action { display: grid; gap: 10px; text-align: center; }
.final-action > strong { color: var(--gold-500); font: 700 1.55rem Georgia, serif; }
.final-action small { color: #becbda; }

.risk-disclosure { padding: 20px 0; color: #d4ddea; background: var(--navy-950); }
.risk-disclosure strong { color: var(--gold-500); font-size: .72rem; letter-spacing: .12em; }
.risk-disclosure p { margin: 5px 0 0; font-size: .75rem; }
.site-footer { padding: 34px 0; color: #aebccd; border-top: 1px solid rgba(214,177,95,.28); background: #020714; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.35fr; align-items: center; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 64px; height: 64px; object-fit: contain; }
.footer-brand p { margin: 0; font-size: .8rem; }
.footer-brand strong { color: #fff; font-family: Georgia, serif; font-size: 1rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; font-size: .78rem; }
.site-footer nav a:hover { color: var(--gold-500); }
.copyright { grid-column: 1/-1; margin: 4px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; text-align: center; }
@media (max-width: 1020px) {
  .section { padding: 72px 0; }
  .hero-grid, .demo-grid, .implementation-grid, .certification-grid, .requirements-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { max-width: 760px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-visual { grid-column: 1/-1; grid-row: 1; max-height: 520px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .requirements-grid { gap: 28px; }
  .requirements-note { grid-column: auto; }
  .offer-grid, .guarantee-grid { grid-template-columns: 1fr; }
  .after-purchase { grid-template-columns: 1fr 1fr; }
  .continuity-grid { grid-template-columns: 1fr 1fr; }
  .continuity-grid > div { grid-column: 1/-1; padding-right: 0; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 24px), var(--shell)); }
  .section { padding: 58px 0; }
  .header-inner { min-height: 64px; gap: 10px; }
  .brand { width: 58px; height: 42px; }
  .brand img { width: 58px; }
  .edition { font-size: .69rem; line-height: 1.25; text-align: right; }
  .header-cta { display: none; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.65rem); }
  .hero { padding: 42px 0 54px; }
  .hero-grid { gap: 34px; }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .trust-row li { flex: 1 1 calc(50% - 8px); text-align: center; }
  .story-grid, .benefit-grid, .payment-options, .after-purchase, .continuity-grid, .guarantee-grid, .decision-grid, .footer-grid { grid-template-columns: 1fr; }
  .story-visual { grid-column: auto; }
  .sequence, .stage-list, .requirement-list { grid-template-columns: 1fr 1fr; }
  .video-caption { display: grid; gap: 2px; }
  .benefit-grid article { min-height: auto; }
  .certificate-pair { gap: 9px; }
  .certificate-pair figure:last-child { margin-top: 24px; }
  .offer-copy, .offer-summary { padding: 24px 19px; }
  .price strong { font-size: 4.4rem; }
  .guarantee-card { grid-template-columns: 110px 1fr; gap: 16px; padding: 22px; }
  .guarantee-card img { width: 110px; }
  .support-card { padding: 24px; }
  .final-grid { grid-template-columns: 1fr; text-align: center; }
  .site-footer nav { justify-content: flex-start; }
  .copyright { grid-column: auto; }
}

@media (max-width: 470px) {
  .edition { max-width: 170px; }
  .trust-row li { flex-basis: 100%; }
  .sequence, .stage-list, .requirement-list { grid-template-columns: 1fr; }
  .certificate-pair { grid-template-columns: 1fr; }
  .certificate-pair figure:last-child { margin-top: 0; }
  .guarantee-card { grid-template-columns: 1fr; text-align: center; }
  .guarantee-card img { margin: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Ajustes finales de lanzamiento · Landing /licencia */
.button-blue { color: #fff; border-color: var(--navy-700); background: linear-gradient(135deg, #17366f, var(--navy-800)); box-shadow: 0 10px 24px rgba(7,20,47,.18); }
.button-blue:hover { background: linear-gradient(135deg, #20488f, #0d214b); }
.brand { width: 58px; height: 48px; overflow: visible; }
.brand img { width: 46px; max-height: 46px; object-fit: contain; transform: none; }
.hero { min-height: calc(100svh - 74px); display: grid; align-items: center; padding: 30px 0 36px; }
.hero-grid { grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 58px); }
.hero-copy { max-width: 610px; }
.hero h1 { font-size: clamp(2.3rem, 3.55vw, 3.35rem); }
.hero-lead { margin: 16px 0 13px; font-size: .96rem; line-height: 1.46; }
.responsibility { margin-bottom: 18px; padding: 13px 15px; font-size: .93rem; }
.hero-visual { padding: 12px; }
.hero-visual img { min-height: 330px; object-fit: cover; }
.trust-row { margin-top: 18px; }
.story-card { display: flex; flex-direction: column; padding: 24px; }
.story-card .number { margin-bottom: 18px; }
.story-card p { font-size: .94rem; }
.sequence li { color: var(--navy-800); border-color: rgba(255,255,255,.55); background: #fff; }
.sequence span { color: #fff; background: var(--navy-700); }
.license-section { background: linear-gradient(180deg, #fff, #eef3f9); }
.benefit-grid article { min-height: 178px; padding: 22px; background: linear-gradient(145deg, #eaf0f7, #fff); }
.benefit-grid article > span { margin-bottom: 18px; }
.stage-list li { position: relative; min-height: 82px; padding: 11px 10px 10px 42px; color: #fff; border-color: var(--navy-700); background: var(--navy-700); }
.stage-list li span { color: #cfd9e8; }
.stage-list li b { position: absolute; left: 12px; top: 24px; display: grid; place-items: center; width: 23px; height: 23px; color: var(--gold-500); font-size: 1rem; }
.implementation-section { padding-bottom: 0; }
.implementation-band { margin-top: 64px; padding: 24px 0; color: #fff; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); }
.implementation-band .shell { display: flex; align-items: center; justify-content: center; gap: 18px; text-align: center; }
.implementation-band strong { color: var(--gold-500); font-family: Georgia, serif; font-size: 1.15rem; }
.implementation-band span { color: #d8e1ed; }
.requirements-visual-grid { align-items: center; }
.requirements-figure { margin: 0; overflow: hidden; border: 1px solid var(--gold-500); border-radius: var(--radius); box-shadow: var(--shadow); background: var(--navy-900); }
.requirements-figure img { width: 100%; }
.affiliate-link { margin-top: 18px; }
.affiliate-note { display: block; max-width: 560px; margin-top: 9px; color: var(--muted); font-size: .72rem; }
.certificate-single { margin: 0; padding: 16px; border: 1px solid rgba(214,177,95,.65); border-radius: 20px; background: rgba(255,255,255,.04); box-shadow: 0 22px 50px rgba(0,0,0,.25); }
.certificate-single img { width: 100%; border-radius: 12px; }
.certificate-single figcaption { margin-top: 10px; color: #c7d2e1; font-size: .78rem; text-align: center; }
.price-note { margin: 0 0 10px; color: var(--navy-800); font-size: 1rem; }
.tax-note { margin: 0 0 14px; padding: 12px 14px; border-radius: 11px; color: #4f5f76; background: var(--surface); font-size: .82rem; }
.check-list li { display: grid; gap: 2px; }
.check-list li strong { color: #fff; }
.check-list li span { color: #cbd6e4; font-size: .84rem; }
.after-section { border-top: 1px solid #dce3ed; }
.after-purchase li { background: linear-gradient(145deg, #fff, #edf2f8); }
.continuity-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 18px; border: 1px solid rgba(214,177,95,.55); border-radius: 50%; color: var(--gold-500); font: 700 1.45rem Georgia, serif; }
.guarantee-card { color: #fff; border-color: rgba(214,177,95,.5); background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); }
.guarantee-card h2 { color: #fff; }
.guarantee-card p:last-child, .guarantee-card p { color: #d7e0ec; }
.support-card { color: var(--ink); border-color: var(--line); background: #fff; }
.support-card h2 { color: var(--navy-800); }
.support-card > p:not(.eyebrow,.support-warning) { color: var(--muted); }
.support-card .support-warning { color: #56647a; border-top-color: var(--line); }
.decision-grid article { color: #fff; border-color: rgba(214,177,95,.35); background: linear-gradient(145deg, var(--navy-800), var(--navy-700)); }
.decision-grid ul { color: #dce4ef; }
.decision-grid li::marker { color: var(--gold-500); }
.decision-close { max-width: 880px; margin: 30px auto 0; color: var(--navy-800); font: 700 clamp(1.2rem, 2vw, 1.55rem)/1.45 Georgia, serif; text-align: center; }

@media (max-width: 1020px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: none; }
  .hero-visual img { min-height: 0; }
}

@media (max-width: 720px) {
  .brand { width: 45px; height: 42px; }
  .brand img { width: 38px; max-height: 38px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .hero-actions .button { width: 100%; }
  .implementation-band { margin-top: 44px; }
  .implementation-band .shell { display: grid; gap: 4px; }
  .requirements-visual-grid { grid-template-columns: 1fr; }
  .requirements-note { grid-column: auto; }
  .guarantee-card { text-align: left; }
}
