/* ROOT VARIABLES */
:root {
    --navy: #0d1b2a;
    --gold: #c9a84c;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #e8e8e8;
    --text-gray: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
}

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

/* NAVIGATION */
.navbar {
    background-color: var(--navy);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--gold);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-cta {
    margin-left: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* BUTTONS */
.cta-button {
    padding: 0.85rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cta-button.primary {
    background-color: var(--gold);
    color: var(--navy);
}

.cta-button.primary:hover {
    background-color: #d4b565;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-button.secondary:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.cta-button.gold {
    background-color: var(--gold);
    color: var(--navy);
}

.cta-button.gold:hover {
    background-color: #d4b565;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 27, 42, 0.72);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: #e8e8e8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* PROBLEM SECTION */
.problem-section {
    background-color: var(--white);
    padding: 5rem 0;
}

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

.problem-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.problem-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.problem-card p {
    color: #666;
    line-height: 1.7;
}

/* SECTION TITLE */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

/* WHAT'S INCLUDED SECTION */
.included-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.deliverable-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border-top: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.deliverable-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.deliverable-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.deliverable-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* HOW IT WORKS SECTION */
.how-section {
    background-color: var(--white);
    padding: 5rem 0;
}

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

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.step-card p {
    color: #666;
    line-height: 1.7;
}

/* PRICING SECTION */
.pricing-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 3px solid var(--gold);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(201, 168, 76, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--navy);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin: 1.5rem 0;
}

.period {
    font-size: 1rem;
    color: #999;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

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

.features-list li:last-child {
    border-bottom: none;
}

.pricing-card .cta-button {
    width: 100%;
    margin-top: 1.5rem;
}

/* SAMPLE DOWNLOAD SECTION */
.sample-section {
    background-color: var(--navy);
    padding: 5rem 0;
    color: var(--white);
}

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

.sample-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sample-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d8d8d8;
}

.sample-content .cta-button {
    margin-bottom: 3rem;
}

.sample-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: left;
    margin-top: 2rem;
}

.checklist-item {
    padding: 1rem;
    border-left: 3px solid var(--gold);
    color: #e8e8e8;
}

/* WHY LISTING INTELLIGENCE SECTION */
.why-section {
    background-color: var(--white);
    padding: 5rem 0;
}

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

.why-card {
    background: linear-gradient(135deg, #f9f9f9 0%, var(--light-gray) 100%);
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--gold);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}

/* FINAL CTA SECTION */
.final-cta-section {
    background-color: var(--navy);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.final-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.final-cta-section .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--gold);
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #d8d8d8;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #d4b565;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    color: #999;
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        border-bottom: 2px solid var(--gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .cta-button {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

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

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

    .sample-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .price {
        font-size: 2rem;
    }

    .deliverable-number {
        font-size: 2rem;
    }

    .step-number {
        font-size: 2rem;
    }
}

/* PowerPoint callout */
.pptx-callout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 48px;
}
.pptx-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 2px; }
.pptx-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #c9a84c;
    margin-bottom: 8px;
}
.pptx-text p {
    color: #9ba8b4;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 600px) {
    .pptx-callout { flex-direction: column; gap: 12px; }
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-subtitle {
    color: #9ba8b4;
    font-size: 1rem;
    margin-top: 12px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 36px;
}
.testimonial-card.featured {
    border-color: rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.05);
}
.testimonial-stars { color: #c9a84c; font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.75;
    color: #d4cfc7;
    font-style: italic;
    margin: 0 0 28px;
    border: none;
    padding: 0;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #c9a84c, #8a6f2e);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1b2a;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.92rem; color: #e8e4dc; }
.testimonial-title { font-size: 0.78rem; color: #9ba8b4; margin-top: 2px; }
.testimonial-card.coming-soon {
    border-style: dashed;
    border-color: rgba(255,255,255,0.1);
}
.coming-soon-inner { text-align: center; padding: 20px 0; }
.coming-soon-icon { font-size: 2rem; margin-bottom: 16px; }
.coming-soon-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #e8e4dc;
    margin-bottom: 12px;
}
.coming-soon-inner p {
    font-size: 0.88rem;
    color: #9ba8b4;
    line-height: 1.7;
    margin-bottom: 20px;
}
.testimonial-cta {
    color: #c9a84c;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.testimonial-cta:hover { text-decoration: underline; }

/* Upload box */
.upload-box {
    border: 1.5px dashed rgba(201,168,76,0.4);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    background: rgba(201,168,76,0.04);
}
.upload-icon { font-size: 1.8rem; margin-bottom: 10px; }
.upload-box p {
    color: #9ba8b4;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.upload-btn {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid #c9a84c;
    color: #c9a84c;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 14px;
}
.upload-btn:hover { background: rgba(201,168,76,0.25); }
.upload-note {
    font-size: 0.75rem !important;
    color: #4a5568 !important;
    margin-bottom: 0 !important;
}
