@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@800;900&family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --primary-blue: #040A35;
    --primary-blue-gradient: #000335;
    --red: #E70000;
    --gold: #DDB12E;
    --orange: #C53002;
    --white: #FFFFFF;
    --black: #0F172A;
    --green-success: #10B981;
    --text-muted: #475569;
    --surface-light: #F8FAFC;
    --surface-dark: #020617;

    --btn-gradient: linear-gradient(232deg, #DDB12E 0%, #C53002 100%);
    --bg-dark-blue: #020617;

    /* Modern Shadows & Gradients */
    --hero-gradient: radial-gradient(circle at 75% 25%, #0F1A60 0%, #000335 50%, #020617 100%);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 35px rgba(221, 177, 46, 0.25);
    --shadow-glow-red: 0 0 30px rgba(231, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.7;
    background-color: var(--surface-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-blue {
    color: var(--primary-blue);
}

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

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

.highlight-trans {
    color: var(--gold);
    font-weight: 700;
}

.bold {
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 40px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(197, 48, 2, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 1. Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #b30000 0%, var(--red) 50%, #b30000 100%);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 100;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* 2. Hero Section */
.hero {
    background: var(--hero-gradient);
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
    flex-wrap: wrap;
    gap: 60px;
}

.hero-content {
    flex: 1 1 45%;
    max-width: 530px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.05;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title font {
    background: linear-gradient(135deg, var(--gold), #FFFDE4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 56px !important;
    display: inline-block;
    padding-right: 5px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.btn-hero {
    background: var(--btn-gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    padding: 22px 44px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-glow);
}

.hero-footnote {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

.hero-image {
    flex: 1 1 45%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-self: flex-start;
    margin-top: -30px;
}

.book-cover {
    width: 110%;
    max-width: 700px;
    margin-right: -10%;
    filter: drop-shadow(-20px 40px 50px rgba(0, 0, 0, 0.8));
    animation: float 6s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes float {
    0% {
        transform: scale(1.12) translateY(0px) rotate(-1deg);
    }

    50% {
        transform: scale(1.12) translateY(-20px) rotate(1deg);
    }

    100% {
        transform: scale(1.12) translateY(0px) rotate(-1deg);
    }
}

.wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

/* 3. Access Section */
.access-section {
    padding: 120px 0;
    background-color: var(--surface-light);
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.feature-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(4, 40, 85, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--btn-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(4, 40, 85, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

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

.card-icon svg {
    width: 56px;
    height: 56px;
    color: var(--primary-blue);
    stroke-width: 1.2;
}

.card-title {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-desc {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* 4. Who Section */
.who-section {
    background: var(--primary-blue-gradient);
    padding: 120px 0;
}

.who-section .section-title {
    font-size: 48px;
    margin-bottom: 30px;
}

.who-section .section-desc {
    font-size: 20px;
    line-height: 1.9;
    opacity: 0.9;
}

/* 5. Quote Section */
.quote-section {
    background: linear-gradient(135deg, var(--gold), #debb43);
    padding: 90px 0;
    position: relative;
}

.quote-box {
    color: var(--blue-900);
    font-size: 34px;
    font-style: italic;
    font-weight: 300;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.4;
}

.quote-box cite {
    display: block;
    margin-top: 30px;
    font-size: 20px;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

/* 6. Bonus Section */
.bonus-section {
    padding: 120px 0;
    background-color: var(--white);
}

.bonus-title {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.bonus-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.timer-urgency {
    background: rgba(231, 0, 0, 0.04);
    color: var(--red);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 70px;
    border: 1px solid rgba(231, 0, 0, 0.1);
    display: inline-flex;
}

.bonus-card {
    background: var(--surface-light);
    padding: 60px 50px;
    border-radius: 30px;
    position: relative;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

.bonus-card:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.bonus-card.full-col {
    grid-column: 1 / -1;
}

.bonus-badge {
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    font-weight: 800;
    font-size: 16px;
}

.badge-red {
    background: var(--red);
    box-shadow: var(--shadow-glow-red);
}

.badge-gold {
    background: var(--gold);
    color: #422006;
    font-size: 24px;
    box-shadow: var(--shadow-glow);
}

.card-premium {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf0 100%);
    border: 2px solid rgba(221, 177, 46, 0.4);
}

.bonus-card-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.25;
}

.bonus-card-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.price-strike {
    color: #94a3b8;
    font-size: 26px;
    font-weight: 600;
    text-decoration: line-through;
    font-family: 'Outfit', sans-serif;
}

.price-free {
    color: var(--green-success);
    font-size: 32px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

/* Bonus Images Specifics */
.bonus-img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 40px;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.bonus-img:hover {
    transform: scale(1.08) rotate(2deg);
}

.bonus-img-vertical {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 40px;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.bonus-img-vertical:hover {
    transform: translateY(-10px);
}

.bonus-img-horizontal {
    width: 100%;
    max-width: 380px;
    margin: 0 auto 40px;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* 7. Offer Section */
.offer-section {
    background: var(--surface-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(221, 177, 46, 0.15) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.offer-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.btn-offer-sub {
    background: transparent;
    color: var(--gold);
    border: 2px solid rgba(221, 177, 46, 0.3);
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 36px;
    margin-bottom: 80px;
    display: inline-block;
}

.pricing-grid {
    align-items: start;
    margin-top: 50px;
    perspective: 1000px;
}

.price-card {
    background: var(--white);
    border-radius: 32px;
    padding: 60px 50px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.unique-card {
    border: 3px solid var(--gold);
    transform: scale(1.05);
    z-index: 10;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF0 100%);
    color: var(--black);
    box-shadow: 0 0 60px rgba(221, 177, 46, 0.3), 0 30px 60px rgba(0, 0, 0, 0.4);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--blue-900);
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(221, 177, 46, 0.5);
    z-index: 100;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.unique-card .card-plan-title {
    color: var(--blue-900);
}

.unique-card .price-amount {
    color: var(--text-muted);
}

.unique-card .price-amount strong {
    color: var(--blue-900);
}

.unique-card .includes-list li {
    color: #334155;
}

.unique-card .item-blue {
    color: var(--primary-blue);
}

.unique-card .timer-box {
    background-color: rgba(231, 0, 0, 0.05);
    border: 2px solid rgba(231, 0, 0, 0.2);
    color: var(--red);
}

.card-plan-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 10px;
}

.offer-seal {
    width: 100%;
    max-width: 260px;
    margin: 30px auto;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.offer-seal:hover {
    transform: scale(1.05);
}

.price-amount {
    font-size: 20px;
    color: var(--text-muted);
    text-align: center;
    margin: 30px 0;
}

.price-amount strong {
    font-size: 72px;
    font-weight: 900;
    color: var(--blue-900);
    display: block;
    line-height: 0.9;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -3px;
    margin-top: 10px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.timer-box {
    background-color: rgba(231, 0, 0, 0.05);
    color: var(--red);
    padding: 12px 20px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid rgba(231, 0, 0, 0.2);
    text-transform: uppercase;
    text-align: center;
}

.timer-box span {
    display: block;
    font-size: 36px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.includes-list {
    list-style: none;
    margin-bottom: 50px;
}

.includes-list li {
    margin-bottom: 18px;
    font-size: 17px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    line-height: 1.5;
}

.item-blue {
    color: var(--primary-blue);
    font-weight: 700;
}

.item-red {
    color: var(--red);
    font-weight: 700;
}

.check i svg {
    width: 26px;
    height: 26px;
    color: var(--green-success);
    stroke-width: 3px;
    margin-top: 2px;
}

.btn-checkout {
    background: var(--btn-gradient);
    color: #ffffff;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 900;
    padding: 20px;
    height: 100px;
    box-shadow: 0 15px 30px rgba(197, 48, 2, 0.3);
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.3;
}

.btn-checkout-basic {
    background: #f1f5f9;
    color: var(--text-muted);
    box-shadow: none;
    border: 1px solid #e2e8f0;
}

.btn-checkout-basic:hover {
    background: #e2e8f0;
    color: #0f172a;
    border-color: #cbd5e1;
}

/* 8. Testimonials */
.testimonial-section {
    background-color: var(--surface-dark);
    padding: 100px 0 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testi-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.testi-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.testimonial-img-center {
    display: flex;
    justify-content: center;
}

.testi-img-main {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 9. FAQ */
.faq-section {
    padding: 120px 0;
    background-color: var(--white);
}

.faq-title {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 60px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-soft);
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    font-size: 20px;
    font-weight: 600;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: background 0.3s;
}

.faq-btn:hover {
    background: #f8fafc;
}

.faq-item.active .faq-btn {
    color: var(--primary-blue);
}

.faq-btn .arrow {
    transition: transform 0.4s cubic-bezier(0.87, 0, 0.13, 1);
    font-size: 16px;
}

.faq-item.active .faq-btn .arrow {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.87, 0, 0.13, 1), padding 0.4s ease;
    background: #fff;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    padding: 0 30px 30px;
    max-height: 400px;
}

/* 10. Author */
.author-section {
    padding: 120px 0;
    background: var(--surface-light);
}

.author-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--blue-900);
    margin-bottom: 40px;
}

.highlight-underline {
    display: inline-block;
    position: relative;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gold);
    z-index: -1;
    border-radius: 4px;
}

.author-text {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
}

/* 11. Footer */
.footer {
    background-color: var(--surface-dark);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-legal {
    font-size: 14px;
    opacity: 0.5;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 60px;
        justify-content: center;
    }

    .book-cover {
        width: 100%;
        max-width: 450px;
        margin-right: 0;
    }

    .unique-card {
        transform: scale(1);
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-title font {
        font-size: 48px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn-hero,
    .btn-offer-sub,
    .btn-checkout {
        font-size: 18px;
        padding: 18px 30px;
    }

    .section-title,
    .offer-title,
    .bonus-title {
        font-size: 34px;
    }

    .announcement-bar {
        font-size: 14px;
    }

    .price-amount strong {
        font-size: 56px;
    }

    .bonus-card {
        padding: 40px 30px;
    }

    .price-card {
        padding: 40px 30px;
    }
}

/* Unavailable Items styling in basic plan */
.unavailable-item {
    color: #94a3b8 !important;
}

.strikethrough {
    text-decoration: line-through;
}

.cross i svg,
.cross svg {
    width: 26px;
    height: 26px;
    color: #cbd5e1;
    stroke-width: 3px;
    margin-top: 2px;
}

.cross {
    display: flex;
    align-items: center;
    height: 24px;
}