:root {
    --navy: #02163e;
    --navy-2: #061f55;
    --deep: #050918;
    --blue: #123a88;
    --sky: #dfeeff;
    --soft: #f6f8fc;
    --white: #ffffff;
    --gold: #d6a24c;
    --gold-light: #f7d794;
    --lavender: #c8b6ff;
    --text: #1d2741;
    --muted: #68728c;
    --line: rgba(2, 22, 62, 0.12);
    --shadow: 0 24px 70px rgba(2, 22, 62, 0.14);
    --radius-xl: 42px;
    --radius-lg: 30px;
    --radius-md: 20px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
            radial-gradient(circle at top left, rgba(200, 182, 255, 0.28), transparent 34rem),
            linear-gradient(180deg, #fbfcff 0%, #eef4ff 45%, #ffffff 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.color-gold {
    color: var(--gold-light);
}

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

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

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

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

.center {
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(2, 22, 62, 0.08);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(2, 22, 62, 0.16);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
}

.main-nav a:hover,
.nav-cta {
    background: rgba(2, 22, 62, 0.08);
}

.section {
    padding: 92px 0;
}

.section-glow {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(circle at 20% 18%, rgba(247, 215, 148, 0.22), transparent 20rem),
            radial-gradient(circle at 86% 12%, rgba(200, 182, 255, 0.28), transparent 26rem),
            linear-gradient(135deg, var(--deep) 0%, var(--navy) 52%, #123a88 100%);
    color: var(--white);
}

.section-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle, rgba(255,255,255,0.54) 1px, transparent 1px),
            linear-gradient(120deg, transparent 0 48%, rgba(255,255,255,0.08) 49%, transparent 51% 100%);
    background-size: 42px 42px, 100% 100%;
    opacity: 0.25;
    pointer-events: none;
}

.hero {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: 76px 0 92px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 60px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-kicker.light,
.eyebrow {
    color: var(--gold-light);
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: 80px;
    line-height: 0.92;
    letter-spacing: -0.02em;
}

h2 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

h3 {
    color: var(--navy);
    font-size: 1.35rem;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.hero h1,
.section-glow h2,
.dark-panel h2,
.offer-section h2,
.final-cta h2 {
    color: var(--white);
}

.hero-lead {
    max-width: 680px;
    color: rgba(255,255,255,0.82);
    font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.hero-actions,
.trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions {
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 8px 8px 8px rgba(214, 162, 76, 0.28)
}

.btn-secondary {
    color: var(--white);
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.24);
}

.btn-secondary.dark {
    color: var(--navy);
    background: rgba(2, 22, 62, 0.06);
    border-color: var(--line);
}

.btn.full {
    width: 100%;
}

.trust-row {
    margin-top: 26px;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-row span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-light);
}

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

.book-cover {
    position: relative;
    z-index: 2;
    width: min(390px, 82vw);
    border-radius: 28px;
    box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    transform: rotate(-18deg);
}

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

.orbit-two {
    width: 430px;
    height: 430px;
    border-color: rgba(247, 215, 148, 0.32);
}

.floating-card {
    position: absolute;
    z-index: 3;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    background: rgb(45 226 71 / 57%);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.22);
}

.floating-card span {
    display: block;
    color: #000;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.floating-card strong {
    display: block;
    margin-top: 3px;
    color: #000;
    font-size: 1.15rem;
}

.floating-price {
    top: 160px;
    right: -50px;
}

.floating-bonus {
    left: -40px;
    bottom: 114px;
}

.intro p,
.section-heading p,
.split-heading p,
.author-copy p,
.final-cta p {
    color: var(--muted);
    font-size: 1.08rem;
}

.intro h2 {
    max-width: 800px;
}

.cards-section,
.process-section,
.faq-section {
    background: rgba(255,255,255,0.6);
}

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

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    max-width: 820px;
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 420px);
    align-items: end;
    gap: 40px;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.three-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.soft-card,
.included-card,
.audience-card,
.price-card,
details {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.78);
    box-shadow: 0 18px 54px rgba(2, 22, 62, 0.07);
}

.soft-card {
    padding: 30px;
}

.card-number {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 44px;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    font-weight: 900;
}

.soft-card p,
.included-content p,
.timeline p,
.audience-card li,
details p,
.offer-copy p,
.payment-note,
.price-card small,
.footer-inner p {
    color: var(--muted);
}

.offer-copy p.color-gold {
    color: var(--gold-light);
    font-size: 1rem;
}

.dark-panel-section {
    padding-top: 32px;
}

.dark-panel {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 46px;
    padding: 56px;
    border-radius: var(--radius-xl);
    color: var(--white);
    background:
            radial-gradient(circle at top right, rgba(200, 182, 255, 0.24), transparent 28rem),
            linear-gradient(135deg, var(--deep), var(--navy));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dark-panel p {
    max-width: 760px;
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
}

.symbol-wrap {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.symbol-wrap img {
    width: 82%;
    height: 82%;
    border-radius: 50%;
    object-fit: cover;
}

.included-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 24px;
    margin-bottom: 20px;
}

.included-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
    overflow: hidden;
}

.included-card.main-product {
    grid-row: span 2;
    grid-template-columns: 1fr;
    align-items: start;
}
.included-card.big-with-image {
    grid-template-columns: 1fr 700px;
}

.included-image {
    overflow: hidden;
    border-radius: 24px;
    background: var(--soft);
}

.included-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-product .included-image img {
    max-height: 450px;
    object-position: center center;
}

.small-image {
    aspect-ratio: 0.76;
}

.badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--navy);
    background: rgba(214, 162, 76, 0.18);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge.bonus {
    background: rgba(18, 58, 136, 0.08);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    position: relative;
}

.timeline article {
    position: relative;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.timeline span {
    display: inline-block;
    margin-bottom: 42px;
    color: var(--gold);
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.08em;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.audience-card {
    padding: 38px;
}

.check-list,
.x-list,
.offer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.x-list li,
.offer-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 32px;
}

.check-list li::before,
.offer-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 900;
}

.x-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--blue);
    font-weight: 900;
    font-size: 1.2rem;
}

.offer-section {
    color: var(--white);
    background:
            radial-gradient(circle at 18% 8%, rgba(247, 215, 148, 0.18), transparent 26rem),
            radial-gradient(circle at 86% 82%, rgba(200, 182, 255, 0.2), transparent 30rem),
            linear-gradient(135deg, var(--deep), var(--navy-2));
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    align-items: center;
    gap: 48px;
}

.offer-copy p {
    color: rgba(255,255,255,0.78);
    font-size: 1.16rem;
}

.guarantee-box {
    display: grid;
    gap: 4px;
    max-width: 560px;
    margin-top: 28px;
    padding: 20px 22px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
}

.guarantee-box span {
    color: rgba(255,255,255,0.74);
}

.price-card {
    padding: 34px;
    color: var(--text);
    background: var(--white);
}

.price-card h3 {
    margin-bottom: 10px;
}

.price {
    margin: 16px 0 4px;
    color: var(--navy);
    font-size: clamp(3rem, 6vw, 5.1rem);
    font-weight: 950;
    line-height: 0.95;
    letter-spacing: -0.08em;
}

.payment-note {
    margin-bottom: 24px;
}

.offer-list {
    margin-bottom: 28px;
}

.price-card small {
    display: block;
    margin-top: 14px;
    text-align: center;
    font-size: 0.8rem;
}

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

.author-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 58px;
    align-items: center;
}

.author-photo-frame {
    position: relative;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow);
}

.author-photo-frame::before {
    content: "";
    position: absolute;
    inset: -20px 28px auto auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(214, 162, 76, 0.18);
    z-index: -1;
}

.author-photo-frame img {
    width: 100%;
    border-radius: 30px;
}

.testimonials-section {
    position: relative;
    padding: 110px 24px;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 28px;
    border-radius: 36px;
    pointer-events: none;
}

.testimonials-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.testimonials-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    min-height: 100%;
    padding: 38px;
    border: 1px solid rgba(9, 31, 75, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 70px rgba(9, 31, 75, 0.08);
    backdrop-filter: blur(14px);
}

.testimonial-mark {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #061b46;
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 52px;
    line-height: 1;
    padding-top: 12px;
}

.testimonial-card p {
    margin: 0;
    color: rgba(9, 31, 75, 0.78);
    font-size: 1.02rem;
    line-height: 1.75;
}

.testimonial-card h3 {
    margin: 26px 0 0;
    color: #061b46;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 820px) {
    .testimonials-section {
        padding: 80px 18px;
    }

    .testimonials-section::before {
        inset: 16px;
        border-radius: 26px;
    }

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

    .testimonial-card {
        padding: 30px;
        border-radius: 24px;
    }
}

.faq-section details {
    padding: 0;
    margin-bottom: 16px;
    overflow: hidden;
}

summary {
    cursor: pointer;
    padding: 24px 28px;
    color: var(--navy);
    font-weight: 900;
    font-size: 1.05rem;
}

details p {
    padding: 0 28px 24px;
    margin-bottom: 0;
}

.final-cta {
    padding: 92px 0;
}

.final-symbol {
    width: 130px;
    height: 190px;
    margin: 0 auto 22px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.24);
}

.final-cta p {
    color: rgba(255,255,255,0.78);
}

.site-footer {
    padding: 26px 0;
    background: var(--deep);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-inner p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.62);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .main-nav {
        display: none;
    }

    .hero-grid,
    .split-heading,
    .included-grid,
    .offer-grid,
    .author-grid,
    .audience-grid,
    .dark-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual {
        min-height: auto;
        padding: 30px 0 10px;
    }

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

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

    .three-cols,
    .timeline {
        grid-template-columns: 1fr 1fr;
    }

    .dark-panel {
        padding: 36px;
    }

    .symbol-wrap img {
        width: 92%;
        height: 92%;
    }

    .included-card,
    .included-card.main-product,
    .included-card.big-with-image {
        grid-template-columns: 1fr;
    }

    .included-image.small-image {

    }

    .author-grid {
        gap: 34px;
    }

    .author-photo-frame {
        max-width: 470px;
    }
}

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

    .section {
        padding: 68px 0;
    }

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

    .brand span {
        font-size: 0.95rem;
    }

    .hero {
        padding: 54px 0 70px;
    }

    h1 {
        font-size: clamp(2.8rem, 16vw, 4.6rem);
    }

    h2 {
        font-size: clamp(2.05rem, 10vw, 3.2rem);
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    .hero-actions .btn,
    .btn {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        font-size: 0.86rem;
        text-align: center;
    }
    .trust-row {
        flex-direction: column;
        gap: 14px;
    }

    .book-cover {
        width: min(310px, 82vw);
    }

    .floating-card {
        position: static;
        margin-top: 14px;
        width: min(310px, 82vw);
    }

    .floating-price,
    .floating-bonus {
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
    }

    .card-number {
        margin-bottom: 24px;
    }

    .three-cols,
    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline span {
        margin-bottom: 24px;
    }

    .soft-card,
    .audience-card,
    .price-card {
        padding: 24px;
        border-radius: 24px;
    }

    .dark-panel {
        padding: 28px;
        border-radius: 28px;
    }

    .included-card {
        padding: 18px;
        border-radius: 24px;
    }

    .footer-inner {
        display: grid;
    }
}
