/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - The Void */
    --void-black: #0B0F19;
    --deep-navy: #151F32;
    --charcoal: #1F2937;

    /* Accents - The Spark */
    --magnetic-gold: #D4AF37;
    --burnished-bronze: #A67C00;
    --electric-blue: #38BDF8;

    /* Text */
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #475569;

    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Caveat', cursive;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--void-black);
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em;
    position: relative;
}

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    z-index: 9999;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 500;
    color: var(--magnetic-gold);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Components */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--magnetic-gold) 0%, var(--burnished-bronze) 100%);
    color: var(--void-black);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
}

.glass-card {
    background: rgba(21, 31, 50, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Navbar */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--text-primary), var(--magnetic-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--magnetic-gold);
}

/* hamburger menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--magnetic-gold);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #1a2436 0%, var(--void-black) 60%);
    overflow: hidden;
    padding-top: 5rem;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
}

.silhouette-container {
    position: absolute;
    right: -10%;
    top: 0;
    width: 60%;
    height: 100%;
    opacity: 0.3;
    mask-image: linear-gradient(to left, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
}

.silhouette-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    width: 55%;
}

.hero-text h1 {
    font-size: 5.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 90%;
    color: var(--text-secondary);
    border-left: 3px solid var(--magnetic-gold);
    padding-left: 1.5rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.book-cover {
    width: 35%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

.book-cover img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.book-cover:hover img {
    transform: perspective(1000px) rotateY(-5deg) scale(1.05);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* About Section */
.about {
    background-color: var(--void-black);
    padding: 8rem 0 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--magnetic-gold);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: block;
}

.about-text {
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.transform-header {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--charcoal);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.transform-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(21, 31, 50, 0.6) 0%, rgba(11, 15, 25, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
}

.transform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.transform-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(21, 31, 50, 0.8) 100%);
    border-color: var(--magnetic-gold);
    transform: scale(1.05);
}

.transform-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.transform-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--magnetic-gold) 0%, #c5982f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.transform-icon i {
    font-size: 1.75rem;
    color: var(--void-black);
}

.transform-card h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.transform-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Testimonials */
.testimonial-carousel {
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: linear-gradient(to right, rgba(21, 31, 50, 0.3), rgba(21, 31, 50, 0));
    border-left: 4px solid var(--magnetic-gold);
}

blockquote {
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 2rem;
    font-family: 'Georgia', serif;
    /* Use serif for quote contrast */
    color: var(--text-primary);
}

cite {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: var(--magnetic-gold);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-nav {
    background: none;
    border: 1px solid var(--text-muted);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.testimonial-nav:hover {
    border-color: var(--magnetic-gold);
    color: var(--magnetic-gold);
}

/* Social Proof */
.social-proof {
    border-top: 1px solid var(--charcoal);
    border-bottom: 1px solid var(--charcoal);
    padding: 3rem 0;
    background: var(--deep-navy);
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--magnetic-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-in {
    text-align: center;
    margin-top: 3rem;
}

.featured-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1rem;
    opacity: 0.5;
}

/* For Men (Challenges) */
.for-men {
    background-color: var(--void-black);
    padding: 6rem 0;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.challenge {
    background: var(--deep-navy);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.challenge:hover {
    border-color: var(--magnetic-gold);
    transform: translateY(-5px);
}

.challenge-icon {
    font-size: 1.5rem;
    color: var(--magnetic-gold);
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.challenge p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.challenge strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.section-transition {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
}

/* Transformation Story */
.transformation-story {
    padding-bottom: 6rem;
}

.story-image-full {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    position: relative;
}

.story-image-full::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--deep-navy), transparent);
}

.story-image-full img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: saturate(0.8) contrast(1.1);
    background: var(--deep-navy);
}

.hand-drawn-container {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.hand-drawn-note {
    background: var(--void-black);
    padding: 2rem;
    border: 1px solid var(--charcoal);
    max-width: 600px;
    transform: rotate(-1deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hand-drawn-text {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--text-primary);
    line-height: 1.2;
    text-align: center;
}

.cta-button {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.hand-drawn-subtext {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid var(--charcoal);
    padding-top: 1rem;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--charcoal);
}

.timeline-section {
    position: relative;
    padding-bottom: 4rem;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    background: var(--magnetic-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
}

.timeline-marker {
    font-family: var(--font-heading);
    color: var(--magnetic-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.story-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--charcoal);
}

.story-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Order Section */
.order {
    background: radial-gradient(circle at center, #1F2937 0%, var(--void-black) 100%);
    padding: 6rem 0;
}

.order-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-cta {
    margin-top: auto;
}

.card-cta .btn {
    width: 100%;
}

.pricing-card.featured {
    background: rgba(21, 31, 50, 0.8);
    border: 1px solid var(--magnetic-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
    z-index: 10;
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--magnetic-gold);
    color: var(--void-black);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 20px;
}

.price {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin: 1.5rem 0;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.includes-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.includes-list i {
    color: var(--magnetic-gold);
}

.popular-choice {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* Lead Magnet - Premium Redesign */
.lead-magnet {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--void-black) 100%);
    padding: 8rem 0 4rem;
    border-top: 1px solid var(--charcoal);
    position: relative;
    overflow: hidden;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.lead-magnet-text {
    position: relative;
}

.lead-magnet-text .section-tag {
    color: var(--magnetic-gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.lead-magnet-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.lead-magnet-text>p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.lead-magnet-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lead-magnet-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.lead-magnet-benefits li i {
    color: var(--magnetic-gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.lead-magnet-form-container {
    position: relative;
}

.lead-magnet-card {
    background: linear-gradient(145deg, rgba(21, 31, 50, 0.9) 0%, rgba(11, 15, 25, 0.95) 100%);
    padding: 3rem;
    border: 2px solid var(--magnetic-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.1);
    text-align: center;
    border-radius: 8px;
    position: relative;
}

.lead-magnet-card::before {
    content: 'FREE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--magnetic-gold);
    color: var(--void-black);
    padding: 0.4rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 20px;
}

.lead-magnet-icon {
    font-size: 2.5rem;
    color: var(--magnetic-gold);
    margin-bottom: 1.5rem;
}

.lead-magnet-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    padding: 1.1rem 1.25rem;
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--magnetic-gold);
    background: rgba(21, 31, 50, 0.8);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.btn-full {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.form-disclaimer i {
    color: var(--success);
    margin-right: 0.5rem;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    text-align: center;
    background: var(--deep-navy);
    border-bottom: 1px solid var(--charcoal);
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Footer - Premium Redesign */
footer {
    border-top: 1px solid var(--charcoal);
    padding: 4rem 0 2rem;
    background: var(--void-black);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    color: var(--magnetic-gold);
}

.footer-links {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--charcoal);
    border-bottom: 1px solid var(--charcoal);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--magnetic-gold);
}

.divider {
    color: var(--charcoal);
    margin: 0 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 30-Day Challenge Promotion */
.challenge-promotion {
    background-color: var(--void-black);
    padding: 4rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.challenge-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    font-size: 1.25rem;
}

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.week-card {
    position: relative;
    height: 400px;
    background: var(--deep-navy);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-card:hover {
    transform: translateY(-10px);
    border-color: var(--week-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--week-color);
}

.week-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.week-card:hover .week-image {
    opacity: 0.7;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.week-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--void-black) 20%, transparent 100%);
}

.week-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.week-label {
    display: block;
    font-family: var(--font-heading);
    color: var(--week-color);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.week-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.week-card p {
    font-size: 0.95rem;
    margin: 0;
    margin-top: auto;
    line-height: 1.5;
    color: var(--text-secondary);
}

.app-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.app-feature-item i {
    font-size: 2rem;
    color: var(--magnetic-gold);
}

.app-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.app-feature-item p {
    font-size: 0.9rem;
    margin: 0;
}

.challenge-cta {
    text-align: center;
    margin-top: 5rem;
}

/* Background image definitions - will be replaced by custom images */
.week-1-bg {
    background-image: url('../images/week1.png');
}

.week-2-bg {
    background-image: url('../images/week2.png');
}

.week-3-bg {
    background-image: url('../images/week3.png');
}

.week-4-bg {
    background-image: url('../images/week4.png');
}

/* Reimagined Guarantee Certificate */
.guarantee-certificate {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 1rem;
}

.certificate-border {
    border: 2px solid var(--magnetic-gold);
    padding: 8px;
    /* Double border effect */
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.certificate-content {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid var(--magnetic-gold);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

/* Diagonal sheen effect */
.certificate-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-20deg) translateX(-150%);
    animation: sheen 8s infinite;
}

@keyframes sheen {

    0%,
    40% {
        transform: skewX(-20deg) translateX(-150%);
    }

    100% {
        transform: skewX(-20deg) translateX(50%);
    }
}

.certificate-seal {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #D4AF37, #FDB931);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    border: 4px solid #C59D2F;
}

.certificate-seal i {
    font-size: 3.5rem;
    color: #0f172a;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.certificate-text {
    flex-grow: 1;
    text-align: left;
}

.certificate-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--magnetic-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.promise-headline {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promise-body {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.certificate-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.founder-sign {
    display: flex;
    flex-direction: column;
}

.sign-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.signature {
    font-family: serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #fff;
    margin-top: 0.25rem;
}

.secure-badges {
    text-align: right;
}

.secure-label {
    display: block;
    font-size: 0.75rem;
    color: var(--success);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.payment-row {
    display: flex;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* Mobile Responsiveness for Certificate */
@media screen and (max-width: 768px) {
    .certificate-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .certificate-text {
        text-align: center;
    }

    .certificate-footer {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .secure-badges {
        text-align: center;
    }
}

.hero-content,
.lead-magnet-content {
    flex-direction: column;
    text-align: center;
}

.hero-text {
    width: 100%;
    margin-bottom: 3rem;
}

.book-cover {
    width: 60%;
    margin: 0 auto;
}

.silhouette-container {
    opacity: 0.15;
}

.features-grid,
.challenges-grid,
.order-options {
    grid-template-columns: 1fr;
}

.pricing-card.featured {
    transform: scale(1);
}

.hero-text h1 {
    font-size: 3.5rem;
}
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    /* Add JS toggle for mobile menu later */

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--deep-navy);
        padding: 2rem;
        gap: 1.5rem;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .story-image-full {
        height: 40vh;
    }

    .hand-drawn-container {
        margin-top: -40px;
    }
}