:root {
    --deep-navy: #0F2747;
    --forest-green: #1F5A44;
    --ivory: #F7F5F2;
    --champagne-gold: #CBA96A;
    --charcoal: #1A1A1A;
    --white: #FFFFFF;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--deep-navy);
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--deep-navy);
    color: var(--champagne-gold);
    border-color: var(--champagne-gold);
}

.btn-primary:hover {
    background-color: var(--forest-green);
    color: var(--ivory);
    border-color: var(--forest-green);
}

.btn-outline,
.btn-outline-light {
    background-color: transparent;
    border-color: var(--champagne-gold);
    color: var(--champagne-gold);
}

.btn-outline:hover,
.btn-outline-light:hover {
    background-color: var(--champagne-gold);
    color: var(--deep-navy);
}

.why-stevorra-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin: 2rem 0 2.5rem;
    align-items: stretch;
    max-width: 760px;
}

.why-card {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 39, 71, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 39, 71, 0.04);
    transition: var(--transition);
    min-height: 68px;
    width: 100%;
}

.why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 39, 71, 0.08);
}

.why-card-icon {
    width: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-navy);
    color: var(--champagne-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-card-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1;
    padding: 0.9rem 1rem 0.9rem 1rem;
}

.why-card h3 {
    font-size: 1.15rem;
    margin: 0 0 0.28rem;
    line-height: 1.2;
    font-weight: 600;
}

.why-card p {
    color: rgba(26, 26, 26, 0.74);
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 768px) {
    .why-stevorra-grid {
        gap: 0.75rem;
        max-width: 100%;
    }

    .why-card {
        min-height: 104px;
        display: flex;
        align-items: stretch;
    }

    .why-card-icon {
        width: 74px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .why-card-copy {
        padding: 0.7rem 0.8rem 0.7rem 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .why-card h3 {
        font-size: 1rem;
        margin-bottom: 0.18rem;
    }

    .why-card p {
        font-size: 0.76rem;
        line-height: 1.45;
    }
}

@media (max-width: 480px) {
    .why-card {
        min-height: 100px;
    }

    .why-card-icon {
        width: 68px;
        font-size: 1.05rem;
    }

    .why-card-copy {
        padding: 0.7rem 0.75rem;
    }
}

.section-padding {
    padding: 6rem 0;
}

.subtitle {
    color: var(--champagne-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.top-bar {
    background-color: var(--charcoal);
    color: var(--ivory);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact i {
    color: var(--champagne-gold);
    margin-right: 5px;
}

.navbar {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(15, 39, 71, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.nav-links {
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
}

.brand-logo {
    display: block;
    width: auto;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 6px 10px rgba(15, 39, 71, 0.12));
}

.brand-lockup {
    display: grid;
    grid-template-columns: 50px auto;
    column-gap: 10px;
    align-items: center;
    text-align: left;
}

.brand-mark {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-wordmark,
.footer-brand-copy .brand-wordmark {
    color: var(--deep-navy);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--deep-navy);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--champagne-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 500;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-logo {
    display: block;
    width: auto;
    height: 110px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand-mark {
    display: block;
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.footer-brand-copy {
    display: grid;
    min-width: 0;
}

.footer-brand-copy .brand-wordmark {
    color: var(--champagne-gold);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--deep-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--forest-green);
}

.page-header {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #081628 100%);
    padding: 5.5rem 0 4rem 0;
    border-bottom: 3px solid var(--champagne-gold);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(203, 169, 106, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(31, 90, 68, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    color: var(--ivory);
}

.breadcrumbs {
    font-size: 0.9rem;
    color: rgba(247, 245, 242, 0.8);
}

.breadcrumbs a {
    color: var(--champagne-gold);
    font-weight: 500;
}
/* Pre-Footer CTA */
        .pre-footer {
            background: var(--forest-green);
                    padding: 4rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .pre-footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 3rem;
            padding: 1rem 0;
        }

        /* .pre-footer-copy {
            max-width: 720px;
        } */

        .pre-footer-copy .subtitle {
            color: var(--champagne-gold);
            margin-bottom: 0.8rem;
        }

        .pre-footer h2 {
            color: var(--ivory);
            margin-bottom: 0.8rem;
            font-size: clamp(2.4rem, 5vw, 4rem);
            line-height: 1;
        }

        .pre-footer-copy p {
            color: rgba(247, 245, 242, 0.82);
            font-size: 1.05rem;
            margin: 0.25rem 0;
        }

        .pre-footer .btn {
            flex-shrink: 0;
        }


/* =========================================
   PREMIUM SOLO-FOUNDER ENHANCEMENTS
   ========================================= */

/* 1. Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    background-color: #20BA5A;
}

/* 2. Enhance Timeline for Solo Journey */
.timeline-horizontal::before {
    background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
    height: 2px;
}

.timeline-item::before {
    width: 16px;
    height: 16px;
    background-color: var(--deep-navy);
    border: 3px solid var(--champagne-gold);
    box-shadow: 0 0 0 4px var(--white);
}

/* 3. Refine Value Cards for Elegance */
.value-card {
    border: none;
    box-shadow: 0 10px 30px rgba(15, 39, 71, 0.04);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 39, 71, 0.08);
}

.value-img {
    position: relative;
    overflow: hidden;
}

.value-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(15, 39, 71, 0.6), transparent);
}
 /* Homepage FAQ Section */
        .homepage-faq-section {
            background: var(--ivory);
        }

        .homepage-faq-grid {
            display: grid;
            grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
            gap: 5rem;
            align-items: start;
        }

        .homepage-faq-intro {
            position: sticky;
            top: 120px;
        }

        .homepage-faq-intro h2 {
            font-size: clamp(2.3rem, 4vw, 3.3rem);
            margin-bottom: 1rem;
        }

        .homepage-faq-intro p {
            color: rgba(26, 26, 26, 0.72);
            font-size: 1rem;
            margin-bottom: 2rem;
            max-width: 340px;
        }

        .homepage-accordion {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .homepage-accordion details {
            background: var(--white);
            border: 1px solid rgba(15, 39, 71, 0.1);
            transition: var(--transition);
        }

        .homepage-accordion details[open] {
            border-color: rgba(203, 169, 106, 0.55);
        }

        .homepage-accordion summary {
            align-items: center;
            color: var(--deep-navy);
            cursor: pointer;
            display: flex;
            font-size: 1.05rem;
            font-weight: 600;
            justify-content: space-between;
            list-style: none;
            padding: 1.25rem 1.5rem;
            gap: 1rem;
        }

        .homepage-accordion summary::-webkit-details-marker {
            display: none;
        }

        .homepage-accordion summary::after {
            color: var(--champagne-gold);
            content: '+';
            flex-shrink: 0;
            font-family: var(--font-heading);
            font-size: 1.7rem;
            font-weight: 400;
            line-height: 1;
        }

        .homepage-accordion details[open] summary::after {
            content: '-';
        }

        .homepage-accordion details p {
            color: rgba(26, 26, 26, 0.72);
            font-size: 0.95rem;
            line-height: 1.65;
            margin: 0;
            padding: 0 1.5rem 1.35rem;
        }



.footer {
    background-color: var(--deep-navy);
    color: var(--ivory);
    padding: 6rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo .logo-main {
    color: var(--champagne-gold);
}

.footer-logo p {
    margin-top: 1.5rem;
    color: rgba(247, 245, 242, 0.6);
    font-size: 0.95rem;
    max-width: 300px;
    font-weight: 300;
}

.footer-col h4 {
    color: var(--ivory);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(247, 245, 242, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--champagne-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    color: rgba(247, 245, 242, 0.6);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--champagne-gold);
    margin-right: 15px;
    font-size: 1.1rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(203, 169, 106, 0.15);
    color: var(--champagne-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--champagne-gold);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(203, 169, 106, 0.2);
    color: rgba(247, 245, 242, 0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pre-footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.5rem;
        color: var(--ivory);
    }
}

@media (max-width: 768px) {
    /* 4. Mobile adjustment for WhatsApp */
     .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    .top-bar {
        padding: 10px 0;
    }

    .top-bar .container {
        justify-content: center;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .navbar .container {
        gap: 12px;
    }

    .logo-main {
        font-size: 1.7rem;
        letter-spacing: 1px;
    }

    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    .section-padding {
        padding: 4.5rem 0;
    }

    .page-header {
        padding: 4rem 0 3rem 0;
    }

    .page-header h1 {
        font-size: 2.2rem;
        color: var(--ivory);
    }
     .homepage-faq-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .homepage-faq-intro {
                position: static;
            }

            .homepage-faq-intro p {
                max-width: 100%;
            }

            .homepage-accordion summary {
                font-size: 0.95rem;
                padding: 1.1rem 1.15rem;
            }

            .homepage-accordion details p {
                font-size: 0.9rem;
                padding: 0 1.15rem 1.2rem;
            }

    .pre-footer {
        padding: 4rem 0;
    }

    .pre-footer h2 {
        font-size: 2rem;
    }

    .top-bar-contact {
        display: none;
    }

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

    .footer {
        padding-top: 4.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 88%;
    }

    .logo-main {
        font-size: 1.45rem;
    }

    .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 0.8px;
    }

    .section-padding {
        padding: 3.8rem 0;
    }

    .page-header {
        padding-top: 2.6rem;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }

    .pre-footer h2 {
        font-size: 1.65rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}
