:root {
    --navy-950: #03111f;
    --navy-900: #071c2f;
    --navy-850: #0a253a;
    --navy-800: #0d2b42;
    --navy-700: #173c54;
    --teal-500: #1fc5b1;
    --teal-400: #3bd8c3;
    --teal-100: #d9f8f2;
    --gold-500: #c9a24c;
    --gold-300: #efd98e;
    --ink: #102536;
    --muted: #617281;
    --white: #fff;
    --off-white: #f8fbfb;
    --soft: #eef5f4;
    --line: #dce8e6;
    --danger-soft: #fff6e2;
    --shadow-sm: 0 12px 36px rgba(7, 28, 47, .08);
    --shadow-md: 0 22px 60px rgba(7, 28, 47, .14);
    --shadow-lg: 0 30px 90px rgba(3, 17, 31, .28);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1180px;
    --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: Georgia, "Times New Roman", serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--gold-300);
    outline-offset: 4px;
}

::selection {
    color: var(--navy-950);
    background: var(--teal-400);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.narrow-container {
    width: min(calc(100% - 40px), 980px);
}

.section {
    position: relative;
    padding: 104px 0;
}

.section-dark {
    color: var(--white);
    background: var(--navy-950);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--navy-950);
    background: var(--white);
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.announcement {
    position: relative;
    z-index: 30;
    padding: 8px 20px;
    color: #dffcf8;
    background: linear-gradient(90deg, #0a6b68, #0c847b, #0a6b68);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.announcement span {
    color: var(--gold-300);
    margin-inline: 7px;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    color: var(--white);
    background: rgba(3, 17, 31, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

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

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(201, 162, 76, .26));
}

.brand span {
    display: grid;
    line-height: 1;
}

.brand strong {
    color: #f8ecbd;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
}

.brand small {
    margin-top: 6px;
    color: rgba(255, 255, 255, .64);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .3em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease;
}

.main-nav a:hover {
    color: var(--teal-400);
}

.main-nav .nav-cta {
    padding: 10px 18px;
    color: var(--navy-950);
    background: var(--teal-400);
    border-radius: 999px;
}

.main-nav .nav-cta:hover {
    color: var(--navy-950);
    background: #65ebd9;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: inherit;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    cursor: pointer;
}

.menu-toggle span {
    width: 19px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .025em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button span {
    font-size: 19px;
    line-height: 0;
}

.button-large {
    min-height: 60px;
    padding: 17px 28px;
}

.button-small {
    min-height: 42px;
    padding: 10px 17px;
    font-size: 11px;
}

.button-primary {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--teal-400), #23bda9);
    box-shadow: 0 14px 32px rgba(31, 197, 177, .24);
}

.button-primary:hover {
    background: linear-gradient(135deg, #68eedc, var(--teal-400));
    box-shadow: 0 18px 42px rgba(31, 197, 177, .34);
}

.button-outline,
.button-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .04);
}

.button-outline:hover,
.button-outline-light:hover {
    border-color: var(--teal-400);
    background: rgba(59, 216, 195, .08);
}

.button-outline-dark {
    color: var(--navy-900);
    border-color: #a8bbb8;
    background: transparent;
}

.button-outline-dark:hover {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.is-unconfigured {
    cursor: not-allowed;
}

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    padding: 92px 0 104px;
    background:
        radial-gradient(circle at 78% 25%, rgba(31, 197, 177, .13), transparent 24%),
        radial-gradient(circle at 82% 74%, rgba(201, 162, 76, .12), transparent 22%),
        linear-gradient(135deg, #03111f 0%, #08243a 58%, #031724 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    pointer-events: none;
}

.hero-glow-one {
    width: 520px;
    height: 520px;
    top: -340px;
    left: -120px;
    border: 1px solid rgba(59, 216, 195, .2);
    box-shadow: inset 0 0 90px rgba(59, 216, 195, .06);
}

.hero-glow-two {
    width: 340px;
    height: 340px;
    right: -190px;
    bottom: -170px;
    border: 1px solid rgba(239, 217, 142, .2);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--teal-400);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow span {
    display: inline-block;
    width: 26px;
    height: 1px;
    background: currentColor;
}

.eyebrow-dark {
    color: #087f76;
}

.hero h1,
.section-heading h2,
.ebook-intro h2,
.support-copy h2,
.guarantee-copy h2,
.about-copy h2,
.faq-intro h2,
.final-cta h2,
.legal-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -.042em;
    line-height: 1.05;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(44px, 5.2vw, 72px);
}

h1 em,
h2 em {
    color: var(--gold-300);
    font-weight: inherit;
}

.section-heading h2 em,
.ebook-intro h2 em,
.support-copy h2 em,
.about-copy h2 em,
.faq-intro h2 em {
    color: #88702b;
}

.hero-lead {
    max-width: 650px;
    margin: 24px 0 26px;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.7;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-benefits li {
    position: relative;
    padding-left: 25px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 650;
}

.hero-benefits li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--teal-400);
    font-weight: 900;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 34px;
}

.microcopy {
    max-width: 165px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    line-height: 1.45;
}

.microcopy strong {
    display: block;
    color: var(--gold-300);
    font-size: 12px;
}

.trust-strip {
    display: flex;
    gap: 26px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.trust-strip span {
    color: rgba(255, 255, 255, .52);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.trust-strip b {
    color: var(--teal-400);
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 540px;
    place-items: center;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(59, 216, 195, .15);
    border-radius: 50%;
}

.orbit-one {
    width: 440px;
    height: 440px;
}

.orbit-two {
    width: 330px;
    height: 330px;
    border-color: rgba(239, 217, 142, .18);
    transform: rotate(-20deg);
}

.orbit-two::before,
.orbit-one::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--teal-400);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--teal-400);
}

.orbit-two::before {
    top: 25px;
    right: 56px;
}

.orbit-one::after {
    bottom: 57px;
    left: 22px;
    background: var(--gold-300);
    box-shadow: 0 0 18px var(--gold-300);
}

.ebook-stage {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
}

.ebook-book {
    position: relative;
    width: 288px;
    border-radius: 5px 16px 16px 5px;
    box-shadow: 36px 40px 60px rgba(0, 0, 0, .46), -6px 8px 0 #061421, -11px 12px 0 #d9e0dc;
}

.ebook-book::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255,255,255,.22), transparent 7%, transparent 88%, rgba(0,0,0,.22));
    pointer-events: none;
}

.ebook-book img {
    width: 100%;
    border: 1px solid rgba(239, 217, 142, .45);
    border-radius: inherit;
}

.ebook-spine {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 3px;
    background: linear-gradient(#d9ba61, #6d5115, #d9ba61);
    box-shadow: 4px 0 8px rgba(0, 0, 0, .28);
}

.guarantee-seal,
.large-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    background: radial-gradient(circle at 35% 25%, #fff7ce, #d1a844 68%, #9f7622);
    border: 2px solid #f5e09d;
    border-radius: 50%;
    box-shadow: 0 12px 40px rgba(201, 162, 76, .28), inset 0 0 0 5px rgba(255,255,255,.3);
}

.guarantee-seal {
    position: absolute;
    z-index: 3;
    right: -52px;
    bottom: 24px;
    width: 104px;
    height: 104px;
    gap: 5px;
    transform: rotate(8deg);
}

.guarantee-seal strong {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1;
}

.guarantee-seal span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .05em;
    line-height: 1.2;
    text-transform: uppercase;
}

.insight-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
    color: var(--white);
    background: rgba(8, 36, 58, .82);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.insight-card > span {
    display: grid;
    width: 34px;
    height: 34px;
    color: var(--teal-400);
    background: rgba(59, 216, 195, .1);
    border: 1px solid rgba(59, 216, 195, .23);
    border-radius: 10px;
    place-items: center;
}

.insight-card div {
    display: grid;
}

.insight-card small {
    color: rgba(255, 255, 255, .5);
    font-size: 8px;
    text-transform: uppercase;
}

.insight-card strong {
    color: #e5fff9;
    font-size: 12px;
}

.insight-card-top {
    top: 82px;
    right: -5px;
}

.insight-card-bottom {
    bottom: 86px;
    left: 0;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 54px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.ebook-intro h2,
.support-copy h2,
.about-copy h2,
.faq-intro h2 {
    color: var(--navy-900);
    font-size: clamp(37px, 4.2vw, 54px);
}

.section-heading > p:last-child,
.ebook-intro > p,
.faq-intro > p,
.support-copy > p,
.about-copy > p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.heading-light h2 {
    color: var(--white);
}

.heading-light > p:last-child {
    color: rgba(255, 255, 255, .6);
}

.problem-section {
    background: linear-gradient(180deg, #fff, #f7fbfa);
}

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

.problem-card {
    padding: 27px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.problem-card:hover {
    border-color: rgba(31, 197, 177, .5);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.card-icon {
    display: grid;
    width: 43px;
    height: 43px;
    margin-bottom: 20px;
    color: #087f76;
    background: var(--teal-100);
    border-radius: 12px;
    font-size: 21px;
    font-weight: 500;
    place-items: center;
}

.problem-card h3 {
    margin: 0 0 7px;
    color: var(--navy-900);
    font-size: 16px;
}

.problem-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.info-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 23px 28px;
    color: #304a5a;
    background: #eaf8f5;
    border: 1px solid #c5eee7;
    border-radius: 18px;
}

.info-callout p {
    margin: 0;
    font-size: 14px;
}

.info-mark {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    color: var(--white);
    background: #087f76;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    place-items: center;
}

.ebook-section {
    overflow: hidden;
}

.ebook-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: start;
    gap: 78px;
}

.ebook-intro {
    position: sticky;
    top: 125px;
}

.educational-note {
    display: flex;
    gap: 14px;
    margin-top: 34px;
    padding: 20px;
    background: var(--danger-soft);
    border: 1px solid #f0dfac;
    border-radius: 16px;
}

.educational-note > span,
.notice-box > span {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    color: var(--navy-950);
    background: var(--gold-300);
    border-radius: 50%;
    font-weight: 900;
    place-items: center;
}

.educational-note p {
    margin: 0;
    color: #655a3a;
    font-size: 12px;
    line-height: 1.6;
}

.educational-note strong {
    display: block;
    color: #473b1c;
}

.learning-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.learning-item {
    display: flex;
    min-height: 100px;
    align-items: center;
    gap: 17px;
    padding: 21px;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.learning-item > span {
    color: #0a897e;
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
}

.learning-item p {
    margin: 0;
    color: #4b6170;
    font-size: 13px;
    line-height: 1.5;
}

.learning-item strong {
    color: var(--navy-900);
}

.process-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(31, 197, 177, .09), transparent 30%),
        linear-gradient(145deg, #061827, #09283c);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
}

.process-step {
    position: relative;
    min-height: 270px;
    padding: 30px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
}

.process-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    z-index: 2;
    top: 52px;
    right: -15px;
    display: grid;
    width: 29px;
    height: 29px;
    color: var(--teal-400);
    background: var(--navy-900);
    border: 1px solid rgba(59, 216, 195, .25);
    border-radius: 50%;
    font-size: 13px;
    place-items: center;
}

.step-number {
    position: absolute;
    top: 18px;
    right: 21px;
    color: rgba(255, 255, 255, .13);
    font-family: var(--font-display);
    font-size: 40px;
}

.step-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 42px;
    color: var(--teal-400);
    background: rgba(59, 216, 195, .09);
    border: 1px solid rgba(59, 216, 195, .2);
    border-radius: 14px;
    place-items: center;
}

.process-step h3 {
    margin: 0 0 9px;
    color: var(--white);
    font-size: 16px;
}

.process-step p {
    margin: 0;
    color: rgba(255, 255, 255, .53);
    font-size: 13px;
}

.pricing-section {
    overflow: hidden;
    background: #f9fbfb;
}

.pricing-glow {
    position: absolute;
    top: 260px;
    left: 50%;
    width: 720px;
    height: 420px;
    background: radial-gradient(ellipse, rgba(31, 197, 177, .12), transparent 68%);
    transform: translateX(-50%);
    pointer-events: none;
}

.pricing-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 26px;
    max-width: 960px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}

.price-card-featured {
    color: var(--white);
    background: linear-gradient(145deg, #09273a, #051927);
    border-color: rgba(59, 216, 195, .42);
    box-shadow: 0 28px 70px rgba(3, 17, 31, .26), 0 0 0 1px rgba(59, 216, 195, .08);
}

.featured-ribbon {
    position: absolute;
    top: 0;
    right: 30px;
    padding: 9px 18px 10px;
    color: var(--navy-950);
    background: linear-gradient(135deg, #f7e8ad, #cba54e);
    border-radius: 0 0 11px 11px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.plan-header {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
}

.price-card-featured .plan-header {
    border-color: rgba(255, 255, 255, .12);
}

.plan-label {
    color: #087f76;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.price-card-featured .plan-label {
    color: var(--teal-400);
}

.plan-header p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.price-card-featured .plan-header p {
    color: rgba(255, 255, 255, .54);
}

.price {
    display: flex;
    align-items: flex-start;
    margin-top: 27px;
    color: var(--navy-900);
    line-height: 1;
}

.price-card-featured .price {
    color: var(--white);
}

.price small {
    margin: 10px 6px 0 0;
    font-size: 16px;
    font-weight: 800;
}

.price strong {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 500;
    letter-spacing: -.05em;
}

.price > span {
    margin-top: 9px;
    font-size: 21px;
    font-weight: 800;
}

.payment-note {
    margin: 2px 0 24px;
    color: #81909b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-features {
    display: grid;
    gap: 14px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.plan-features li {
    position: relative;
    padding-left: 28px;
    color: #4f6573;
    font-size: 13px;
    line-height: 1.5;
}

.price-card-featured .plan-features li {
    color: rgba(255, 255, 255, .72);
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 19px;
    height: 19px;
    color: #087f76;
    background: var(--teal-100);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    place-items: center;
}

.price-card-featured .plan-features li::before {
    color: var(--navy-950);
    background: var(--teal-400);
}

.price-card-featured .feature-highlight {
    color: #e9dc9d;
    font-weight: 700;
}

.button-plan {
    width: 100%;
    margin-top: auto;
}

.secure-note {
    margin: 14px 0 0;
    color: #89959d;
    font-size: 10px;
    text-align: center;
}

.price-card-featured .secure-note {
    color: rgba(255, 255, 255, .38);
}

.pricing-disclaimer {
    max-width: 800px;
    margin: 32px auto 0;
    color: #6a7a84;
    font-size: 11px;
    text-align: center;
}

.pricing-disclaimer span {
    display: inline-grid;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    color: var(--white);
    background: #70838f;
    border-radius: 50%;
    font-family: var(--font-display);
    font-style: italic;
    place-items: center;
}

.comparison-wrap {
    overflow-x: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    min-width: 660px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 21px 25px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.comparison-table th:first-child {
    width: 50%;
    text-align: left;
}

.comparison-table thead th {
    color: var(--navy-900);
    background: #f9fbfb;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.comparison-table thead th small {
    display: block;
    margin-top: 3px;
    color: #087f76;
    font-size: 8px;
}

.comparison-table tbody th {
    color: #485f6e;
    font-size: 13px;
    font-weight: 650;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.recommended-column {
    background: #e8f8f4 !important;
}

.check {
    display: inline-grid;
    width: 27px;
    height: 27px;
    color: #087f76;
    background: var(--teal-100);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
    place-items: center;
}

.dash {
    color: #9caaae;
}

.support-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.support-visual {
    position: relative;
    display: grid;
    min-height: 410px;
    place-items: center;
}

.support-visual::before,
.support-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.support-visual::before {
    width: 390px;
    height: 390px;
    background: radial-gradient(circle, #d7f7f1, #effafa 68%, transparent 69%);
}

.support-visual::after {
    width: 320px;
    height: 320px;
    border: 1px dashed rgba(8, 127, 118, .3);
}

.support-ring {
    position: relative;
    z-index: 2;
    display: flex;
    width: 205px;
    height: 205px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background: linear-gradient(145deg, #0a3248, #061a28);
    border: 7px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.support-ring span {
    color: var(--gold-300);
    font-family: var(--font-display);
    font-size: 82px;
    line-height: 1;
}

.support-ring small {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    line-height: 1.3;
    text-transform: uppercase;
}

.support-chip {
    position: absolute;
    z-index: 3;
    min-width: 174px;
    padding: 13px 16px;
    color: var(--navy-900);
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: var(--shadow-md);
    font-size: 11px;
    font-weight: 800;
}

.support-chip b {
    float: right;
    color: #087f76;
}

.support-chip-one { top: 48px; right: 20px; }
.support-chip-two { bottom: 49px; left: 5px; }
.support-chip-three { right: 0; bottom: 91px; }

.support-copy > p {
    max-width: 600px;
}

.notice-box {
    display: flex;
    gap: 14px;
    margin: 28px 0;
    padding: 18px 20px;
    background: var(--danger-soft);
    border: 1px solid #f0dfac;
    border-radius: 14px;
}

.notice-box p {
    margin: 0;
    color: #655a3a;
    font-size: 12px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #087f76;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.text-link span {
    font-size: 20px;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.guarantee-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 40%, rgba(201, 162, 76, .14), transparent 25%),
        linear-gradient(135deg, #061827, #092b3f);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: .58fr 1.42fr;
    align-items: center;
    gap: 74px;
}

.large-seal {
    width: 235px;
    height: 235px;
    margin: 0 auto;
    gap: 12px;
    transform: rotate(-5deg);
}

.large-seal strong {
    font-family: var(--font-display);
    font-size: 94px;
    font-weight: 500;
    line-height: 1;
}

.large-seal span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.25;
    text-transform: uppercase;
}

.guarantee-copy h2 {
    color: var(--white);
    font-size: clamp(40px, 4.5vw, 58px);
}

.guarantee-copy > p {
    max-width: 700px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: 17px;
}

.guarantee-detail {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px !important;
}

.guarantee-detail span {
    color: var(--teal-400);
    margin-right: 7px;
}

.about-section {
    background: #f9fbfb;
}

.about-card {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    align-items: center;
    gap: 74px;
    padding: 62px 74px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.about-logo {
    display: grid;
    width: 275px;
    height: 275px;
    background: radial-gradient(circle at center, #fff 55%, #eaf4f2 56%);
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
}

.about-logo img {
    width: 210px;
    height: 210px;
    object-fit: contain;
}

.about-copy .button {
    margin-top: 28px;
}

.faq-grid {
    display: grid;
    grid-template-columns: .74fr 1.26fr;
    align-items: start;
    gap: 76px;
}

.faq-intro {
    position: sticky;
    top: 126px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 7px 20px rgba(7, 28, 47, .04);
}

.faq-item summary {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    color: var(--navy-900);
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    color: #087f76;
    background: var(--teal-100);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    place-items: center;
    transition: transform .2s ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 20px;
}

.faq-answer p {
    margin: 0;
    padding-top: 16px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 13px;
}

.final-cta {
    overflow: hidden;
    background: linear-gradient(135deg, #03111f, #073047);
}

.final-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(31, 197, 177, .16), transparent 68%);
    transform: translateX(-50%);
}

.final-cta-inner {
    position: relative;
    max-width: 880px;
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(40px, 5vw, 60px);
}

.final-cta-inner > p:not(.eyebrow):not(.final-security) {
    max-width: 720px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .65);
    font-size: 17px;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.final-security {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .38);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer {
    color: rgba(255, 255, 255, .64);
    background: #020d16;
    padding: 68px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 68px;
}

.brand-footer img {
    width: 58px;
    height: 58px;
}

.footer-brand p {
    max-width: 310px;
    margin: 19px 0 0;
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
}

.footer-title {
    margin: 3px 0 19px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
}

.footer-list strong {
    color: rgba(255, 255, 255, .78);
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    font-size: 12px;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--teal-400);
}

.footer-legal {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-legal p {
    margin: 0;
    color: rgba(255, 255, 255, .34);
    font-size: 10px;
}

.footer-legal p:first-child {
    max-width: 720px;
}

.footer-legal p:last-child {
    white-space: nowrap;
}

.whatsapp-float {
    position: fixed;
    z-index: 200;
    right: 22px;
    bottom: 22px;
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    color: var(--white);
    background: #139b65;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(9, 90, 57, .28);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease;
}

.whatsapp-float:hover {
    background: #0d8555;
    transform: translateY(-3px);
}

.whatsapp-float > span:first-child {
    display: grid;
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,.14);
    border-radius: 50%;
    font-size: 16px;
    place-items: center;
}

.site-toast {
    position: fixed;
    z-index: 500;
    right: 20px;
    bottom: 92px;
    max-width: min(360px, calc(100% - 40px));
    padding: 14px 18px;
    color: var(--white);
    background: var(--navy-900);
    border: 1px solid rgba(59, 216, 195, .35);
    border-radius: 13px;
    box-shadow: var(--shadow-lg);
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
}

.site-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tracking-frame {
    display: none;
    visibility: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.problem-grid .reveal:nth-child(2),
.learning-list .reveal:nth-child(2n),
.process-grid .reveal:nth-child(2) { transition-delay: .06s; }
.problem-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3) { transition-delay: .12s; }
.problem-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4) { transition-delay: .18s; }

/* Páginas legais */
.legal-page {
    background: var(--off-white);
}

.legal-page .announcement {
    display: none;
}

.legal-hero {
    padding: 74px 0 64px;
    background: linear-gradient(135deg, #03111f, #0a2c40);
}

.legal-hero h1 {
    max-width: 840px;
    color: var(--white);
    font-size: clamp(40px, 5vw, 62px);
}

.legal-hero p:last-child {
    max-width: 720px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.62);
}

.legal-content {
    padding: 72px 0 96px;
}

.legal-document {
    max-width: 860px;
    margin: 0 auto;
    padding: 54px 62px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.legal-document h2 {
    margin: 38px 0 12px;
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 29px;
    font-weight: 500;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    margin: 26px 0 8px;
    color: var(--navy-900);
    font-size: 16px;
}

.legal-document p,
.legal-document li {
    color: #566b78;
    font-size: 14px;
}

.legal-document li + li {
    margin-top: 8px;
}

.legal-edit-note {
    padding: 16px 18px;
    color: #655a3a;
    background: var(--danger-soft);
    border: 1px solid #f0dfac;
    border-radius: 12px;
    font-size: 12px !important;
}

@media (max-width: 1080px) {
    .hero-grid {
        gap: 36px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .ebook-book {
        width: 250px;
    }

    .process-step {
        padding: 25px;
    }

    .about-card {
        gap: 40px;
        padding: 54px;
    }

    .about-logo {
        width: 235px;
        height: 235px;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 84px 0;
    }

    .main-nav {
        position: absolute;
        z-index: 20;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        display: flex;
        width: 100%;
        height: var(--mobile-menu-height, calc(100dvh - 78px));
        max-height: var(--mobile-menu-height, calc(100dvh - 78px));
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 26px 20px;
        overflow-y: auto;
        overscroll-behavior: contain;
        visibility: hidden;
        background: var(--navy-950);
        border-top: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 0 28px 54px rgba(0, 0, 0, .32);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .main-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .main-nav a {
        padding: 17px 8px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 15px;
    }

    .main-nav .nav-cta {
        margin-top: 20px;
        padding: 15px 18px;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 72px 0 92px;
    }

    .hero-grid,
    .ebook-grid,
    .support-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero h1,
    .hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-benefits {
        max-width: 650px;
        margin-inline: auto;
        text-align: left;
    }

    .hero-actions,
    .trust-strip {
        justify-content: center;
    }

    .hero-visual {
        min-height: 480px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ebook-grid,
    .faq-grid {
        gap: 45px;
    }

    .ebook-intro,
    .faq-intro {
        position: static;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .support-grid {
        gap: 50px;
    }

    .support-visual {
        max-width: 560px;
        width: 100%;
        margin-inline: auto;
    }

    .guarantee-grid {
        grid-template-columns: .7fr 1.3fr;
        gap: 40px;
    }

    .large-seal {
        width: 190px;
        height: 190px;
    }

    .large-seal strong {
        font-size: 72px;
    }

    .about-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-logo {
        margin-inline: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .container,
    .narrow-container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .announcement {
        padding: 7px 12px;
        font-size: 9px;
        letter-spacing: .04em;
    }

    .header-inner {
        min-height: 70px;
    }

    .main-nav {
        height: var(--mobile-menu-height, calc(100dvh - 70px));
        max-height: var(--mobile-menu-height, calc(100dvh - 70px));
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand strong {
        font-size: 15px;
    }

    .hero {
        padding: 58px 0 74px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 52px);
    }

    .hero-lead {
        margin-top: 20px;
        font-size: 16px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .microcopy {
        max-width: none;
    }

    .trust-strip {
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .orbit-one {
        width: 330px;
        height: 330px;
    }

    .orbit-two {
        width: 270px;
        height: 270px;
    }

    .ebook-book {
        width: 215px;
    }

    .guarantee-seal {
        right: -42px;
        width: 86px;
        height: 86px;
    }

    .guarantee-seal strong {
        font-size: 33px;
    }

    .insight-card {
        padding: 10px;
    }

    .insight-card-top {
        top: 42px;
        right: -2px;
    }

    .insight-card-bottom {
        bottom: 36px;
        left: -2px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .ebook-intro h2,
    .support-copy h2,
    .about-copy h2,
    .faq-intro h2 {
        font-size: 38px;
    }

    .section-heading > p:last-child,
    .ebook-intro > p,
    .faq-intro > p,
    .support-copy > p,
    .about-copy > p {
        font-size: 15px;
    }

    .problem-grid,
    .learning-list,
    .process-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        padding: 23px;
    }

    .info-callout {
        align-items: flex-start;
        padding: 20px;
    }

    .learning-item {
        min-height: 86px;
    }

    .process-step {
        min-height: 225px;
    }

    .pricing-grid {
        gap: 20px;
    }

    .price-card {
        padding: 32px 24px;
    }

    .price-card-featured {
        order: -1;
    }

    .support-visual {
        min-height: 360px;
    }

    .support-visual::before {
        width: 330px;
        height: 330px;
    }

    .support-visual::after {
        width: 280px;
        height: 280px;
    }

    .support-ring {
        width: 180px;
        height: 180px;
    }

    .support-chip {
        min-width: 155px;
        padding: 11px 12px;
        font-size: 10px;
    }

    .support-chip-one { top: 35px; right: 0; }
    .support-chip-two { bottom: 38px; left: 0; }
    .support-chip-three { right: 0; bottom: 75px; }

    .guarantee-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .guarantee-copy > p {
        font-size: 15px;
    }

    .about-card {
        padding: 38px 23px;
    }

    .about-logo {
        width: 205px;
        height: 205px;
    }

    .about-logo img {
        width: 170px;
        height: 170px;
    }

    .final-cta h2 {
        font-size: 39px;
    }

    .final-buttons {
        flex-direction: column;
    }

    .final-buttons .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .footer-legal p:last-child {
        white-space: normal;
    }

    .whatsapp-label {
        display: none;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
        padding: 0;
    }

    .site-toast {
        right: 14px;
        bottom: 82px;
    }

    .legal-hero {
        padding: 55px 0;
    }

    .legal-content {
        padding: 42px 0 68px;
    }

    .legal-document {
        padding: 32px 22px;
    }
}

@media (max-width: 420px) {
    .brand span {
        display: none;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .ebook-book {
        width: 195px;
    }

    .insight-card small {
        display: none;
    }

    .insight-card > span {
        width: 29px;
        height: 29px;
    }

    .support-visual {
        min-height: 330px;
        transform: scale(.9);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
