:root {
    --color-night: #0B1026;
    /* Deep Midnight Blue */
    --color-night-light: #1B2446;
    --color-wool: #F5F1E8;
    /* Cream/Off-white */
    --color-wool-dark: #E6DCCD;
    --color-star: #FFD700;
    /* Soft Gold/Yellow */
    --color-star-glow: #FCE570;
    --color-text-main: #0B1026;
    --color-text-light: #F5F1E8;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --spacing-container: 1200px;
    --spacing-section: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-wool);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-star);
    color: var(--color-night);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-star-glow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: var(--color-wool);
    color: var(--color-night);
}

.btn-secondary:hover {
    background-color: white;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.section {
    padding: var(--spacing-section) 0;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--color-night);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.logo img {
    height: 90px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.nav a {
    text-decoration: none;
    color: var(--color-night);
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:not(.btn):hover {
    color: var(--color-star);
}

.nav .btn.small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--color-night) 0%, var(--color-night-light) 100%);
    color: var(--color-text-light);
    padding-top: 140px;
    /* Header height + spacing */
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Adding Stars Background via Pseudo-element */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-wool);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-trust {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Problem Section */
.problem-section {
    background-color: var(--color-wool);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 16, 38, 0.05);
    border: 2px solid var(--color-star);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-night);
    line-height: 1;
    margin-bottom: 1rem;
}

/* Solution Section */
.solution-section {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border: 2px solid var(--color-star);
    border-radius: 20px;
    background: white;
    /* Adding background to ensure text readability if over colored section, though this section is white usually */
}

.feature-icon {
    /* font-size: 3rem; Removed font-size as we use images */
    margin-bottom: 1rem;
    background: transparent;
    /* Removed background circle */
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter removed: new icons are already dark ink */
}

/* Proof Section */
.proof-section {
    background: linear-gradient(135deg, var(--color-night) 0%, var(--color-night-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.3;
    pointer-events: none;
}

.proof-section h2 {
    color: var(--color-wool);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
}

.testimonial-card .author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--color-star);
    font-style: normal;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(180deg, var(--color-wool) 0%, white 100%);
}

.offer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(11, 16, 38, 0.1);
    border: 1px solid var(--color-wool-dark);
}

.offer-image img {
    width: 100%;
    border-radius: 15px;
}

.badge {
    background-color: var(--color-star);
    color: var(--color-night);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.price-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-night);
}

.shipping {
    color: #27ae60;
    font-weight: 600;
    background: #e8f8f0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.limited-stock {
    margin-top: 1rem;
    color: #e67e22;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Guarantee */
.guarantee-section {
    background: linear-gradient(135deg, var(--color-night) 0%, var(--color-night-light) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-wool-dark);
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.3;
    pointer-events: none;
}

.guarantees-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    text-align: center;
    flex-wrap: wrap;
}

.guarantee-item {
    max-width: 300px;
    padding: 1.5rem;
    border: 2px solid var(--color-star);
    border-radius: 20px;
    background: white;
}

.guarantee-icon {
    /* font-size: 2.5rem; Removed font size */
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.guarantee-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Utilities */
.icon-inline {
    height: 1.25em;
    width: auto;
    vertical-align: text-bottom;
    margin-right: 0.3rem;
}

/* FAQ */
.faq-section {
    background-color: var(--color-wool);
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-night);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-night) 0%, var(--color-night-light) 100%);
    color: var(--color-wool);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.3;
    pointer-events: none;
}

.footer h2 {
    color: var(--color-wool);
    margin-bottom: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 2rem;
}

.footer-links a:hover {
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s forwards;
    animation-play-state: paused;
    opacity: 0;
}

.fade-in-delay {
    animation: fadeIn 0.8s 0.2s forwards;
    animation-play-state: paused;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s 0.4s forwards;
    animation-play-state: paused;
    opacity: 0;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-content,
    .offer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-trust {
        justify-content: center;
    }

    .offer-image {
        order: -1;
    }

    .nav {
        display: none;
    }

    /* Mobile menu simplified for now */
}