:root {
    /* Deep Blue / Starry Night Theme */
    --color-bg: #0F2A60;
    --color-bg-light: #1E408A;
    --color-text: #1E408A;
    --color-text-muted: #B0C4DE;

    --color-primary: #FFD700;
    --color-secondary: #FF8C69;
    --color-accent: #4FD1C5;

    --color-button: #FFD700;
    --color-button-hover: #FFC107;

    --color-white: #FFFFFF;
    --color-card-bg: #0F2A60;
    --color-card-shadow: rgba(0, 0, 0, 0.3);

    --font-main: 'Outfit', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
    color: var(--color-text);
}

h2 {
    font-size: 2rem;
    color: var(--color-primary);
}

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-button);
    color: #0F2A60;
    box-shadow: 0 4px 15px var(--color-card-shadow);
}

.btn-large {
    background: var(--color-button);
    color: #0F2A60;
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    width: 100%;
    max-width: 400px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--color-button-hover);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

/* Navbar */
.navbar {
    padding: var(--spacing-sm) 0;
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: rotate(-5deg) scale(1.05);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding-top: 110px;
    padding-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-text {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    position: relative;
    z-index: 10;
    padding-top: 5px;
    padding-bottom: 4rem;
}

.hero h1 {
    color: #051025;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero-persuasion {
    font-weight: 500;
    color: #0B1E45;
    margin-bottom: var(--spacing-md);
    font-size: 1.15rem;
    line-height: 1.6;
}

.hero-bullets {
    display: flex;
    gap: 1.5rem;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-bullets span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0B1E45;
}

.micro-copy {
    font-size: 0.9rem;
    color: #051025;
    margin-top: var(--spacing-sm);
    opacity: 0.8;
    font-weight: 500;
}

.hero-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-15px) rotate(-2deg);
    }

    100% {
        transform: translateY(0px) rotate(-2deg);
    }
}

.hero-image .image-wrapper:hover {
    animation-play-state: paused;
    transform: rotate(0deg) scale(1.02);
}

.hero-image img {
    width: 100%;
    display: block;
}

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

.wave-bottom path {
    fill: var(--color-bg-light);
}

/* Sections General */
.section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Grid */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--color-card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px -5px var(--color-card-shadow);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card .icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    transition: transform 0.3s ease;
}

.card:hover .icon {
    transform: scale(1.2) rotate(10deg);
}

.empathy-message {
    background-color: #FFFFFF;
    border-left: 5px solid #FFD700;
    color: #333;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.empathy-message h3 {
    color: #0F2A60;
    margin-bottom: 0.5rem;
}

.empathy-message p {
    color: #555;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0;
}

/* Pain Points Section */
.pain-points {
    background-color: var(--color-bg-light);
    color: #ffffff;
}

.pain-points .card {
    background: #F0F4F8;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

/* What is Lumina Section */
.what-is {
    background-color: #FFFFFF;
    color: #333333;
}

.what-is h2 {
    color: #0F2A60;
}

.what-is p {
    color: #555555;
    font-size: 1.35rem;
}

.what-is .check-list li {
    color: #444444;
    font-size: 1.3rem;
}

.what-is .highlight-box {
    background: #F0F4F8;
    border-left: 4px solid var(--color-primary);
    color: #333;
}

/* Benefits */
.benefits {
    background-color: #ffffff;
}

.benefits h2 {
    font-size: 2.3rem;
    color: #0F2A60;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: var(--color-card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(22, 50, 112, 0.8);
    border-color: var(--color-primary);
}

.benefit-item h3 {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

.benefit-item p {
    color: #F0F4F8;
}

/* Why Works Section */
.why-works {
    background: #ffffff;
    padding: var(--spacing-xl) 0;
}

.why-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.why-works-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.why-works-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.why-works h2 {
    color: #0F2A60;
    margin-bottom: var(--spacing-sm);
}

.why-works .subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.why-works p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.why-love-title {
    font-size: 1.3rem;
    color: var(--color-bg-light);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.why-works .feature-list {
    list-style: none;
    margin: var(--spacing-sm) 0 var(--spacing-md);
}

.why-works .feature-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.why-works .feature-list li strong {
    color: var(--color-bg-light);
}

.final-note-wrapper {
    background-color: var(--color-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    display: inline-block;
    transform: rotate(-1deg);
    margin-top: var(--spacing-sm);
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.final-note {
    color: #0F2A60;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.final-note strong {
    font-weight: 700;
    color: #051025;
}

/* Preview Timeline */
.preview {
    background-color: #ffffff;
}

.preview h2 {
    color: #0F2A60;
}

.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.day-card {
    background: var(--color-card-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    width: 200px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--color-secondary);
    transition: transform 0.3s ease;
}

.day-card:hover {
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.day-num {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.day-card h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.day-card p {
    color: #B0C4DE;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 500;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0F2A60;
}

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

/* Testimonials */
.testimonials {
    background-color: #ffffff;
}

.testimonials h2 {
    color: #0F2A60;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.stars {
    color: var(--color-button);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-muted);
}

.author {
    margin-top: var(--spacing-sm);
    font-weight: 600;
    color: var(--color-secondary);
}

/* Guarantee */
.guarantee {
    background: #ffffff;
}

.guarantee h2 {
    color: #0F2A60;
}

.guarantee p {
    color: #555;
}

.shield-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    transition: transform 0.3s ease;
}

.guarantee-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.guarantee-list li {
    font-weight: 600;
    color: var(--color-secondary);
}

/* Email Bonus */
.email-bonus {
    background-color: var(--color-bg-light);
    color: #ffffff;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.bonus-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.mockup-stack {
    position: relative;
    height: 480px;
    margin-bottom: 2rem;
}

.paper {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: auto;
    width: auto;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.paper-1 {
    transform: rotate(-5deg);
    z-index: 1;
}

.paper-2 {
    transform: rotate(2deg);
    z-index: 2;
}

.paper-3 {
    transform: rotate(8deg);
    z-index: 3;
}

.mockup-stack:hover .paper-1 {
    transform: rotate(-15deg) translateX(-20px);
}

.mockup-stack:hover .paper-2 {
    transform: rotate(0deg);
}

.mockup-stack:hover .paper-3 {
    transform: rotate(15deg) translateX(20px);
}

.bonus-visuals .caption {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    background: #1E408A;
    padding: var(--spacing-xl) 0;
    position: relative;
    color: #ffffff;
}

.final-cta h2 {
    color: var(--color-primary);
}

.final-cta p {
    color: #ffffff;
}

.final-cta .container {
    position: relative;
    z-index: 10;
}

.optin-form {
    max-width: 500px;
    margin: var(--spacing-md) auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.optin-form input {
    padding: 1rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    outline: none;
}

.social-proof {
    color: rgba(255, 255, 255, 0.8);
}

.cta-mockup {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    width: 180px;
    height: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* Soft Pitch */
.soft-pitch {
    background-color: #1E408A;
    color: #ffffff;
}

.soft-pitch h3 {
    color: var(--color-primary);
}

.soft-pitch .highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #051025;
    padding: var(--spacing-md) 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Star Mascot */
.star-mascot {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    animation: float-mascot 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.4));
}

@keyframes float-mascot {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

.star-hero {
    top: 15%;
    right: 5%;
    width: 120px;
    opacity: 0.9;
}

.star-what-is {
    top: -50px;
    left: -30px;
    width: 100px;
    transform: rotate(-15deg);
    animation-delay: 1s;
}

.star-cta {
    top: 20px;
    right: 15%;
    width: 90px;
    animation-delay: 2s;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 1.5rem;
    }

    .hero {
        padding-top: var(--spacing-lg);
        padding-bottom: var(--spacing-xl);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-bullets {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-image {
        order: -1;
        margin-top: var(--spacing-sm);
    }

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

    .guarantee-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .day-card {
        width: 100%;
        max-width: 100%;
    }

    .btn-large {
        width: 100%;
        padding: 1rem;
    }

    .why-works-grid {
        grid-template-columns: 1fr;
    }

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

    .bonus-list li {
        justify-content: center;
    }

    .cta-mockup {
        display: none;
    }

    .star-hero {
        top: 2%;
        right: 2%;
        width: 60px;
    }

    .star-what-is {
        left: -10px;
        width: 60px;
        top: -30px;
    }

    .star-cta {
        right: 5%;
        width: 50px;
    }
}