﻿/* ================================
   HEADER BASE
================================ */
.site-header {
    background: #faf9f7;
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 18px;
}

/* NAV MENU (DESKTOP) */
.nav-menu {
    display: flex;
    gap: 24px;
}

    .nav-menu a {
        text-decoration: none;
        font-size: 14.5px;
        font-weight: 500;
        color: #374151;
    }

/* ACTIONS */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-link {
    text-decoration: none;
    font-size: 14.5px;
    color: #374151;
}

.btn-demo {
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* HAMBURGER (HIDDEN DESKTOP) */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* MOBILE ACTIONS HIDDEN DESKTOP */
.mobile-actions {
    display: none;
}

/* ================================
   MOBILE STYLES
================================ */
@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    /* Hide desktop items */
    .nav-actions {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-bottom: 1px solid #e5e7eb;
        display: none;
    }

        .nav-menu a {
            padding: 14px 0;
            border-bottom: 1px solid #f3f4f6;
            font-size: 15px;
        }

        .nav-menu.active {
            display: flex;
        }

    /* Mobile buttons */
    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 20px;
    }

        .mobile-actions .btn-demo {
            width: 100%;
            text-align: center;
        }
}


/* GLOBAL FONT */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* LOGO */
.logo-text {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.logo-icon {
    font-size: 22px;
    margin-right: 6px;
    color: #000;
}

/* NAV MENU */
.nav-menu a {
    margin: 0 16px;
    text-decoration: none;
    color: #374151;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

    .nav-menu a:hover {
        color: #000;
    }

/* LOGIN LINK */
.login-link {
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: -0.2px;
}

/* DEMO BUTTON */
.btn-demo {
    background: #000;
    color: #fff;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .btn-demo:hover {
        background: #111;
        transform: translateY(-1px);
    }


/* HERO BASE */
.hero-ai {
    background: #faf9f7;
    padding: 80px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* TEXT */
.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}

    .hero-content h1 span {
        color: #4f46e5;
    }

.hero-content p {
    font-size: 18px;
    color: #555;
    max-width: 520px;
}

/* BUTTONS */
.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #000;
    color: #fff;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #000;
    font-weight: 600;
}

/* VISUAL */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 260px;
    background: #fff;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.mockup-header {
    height: 18px;
    width: 60%;
    background: #eee;
    border-radius: 10px;
    margin: 0 auto 16px;
}

.mockup-card {
    height: 70px;
    background: #fdecec;
    border-radius: 14px;
    margin-bottom: 12px;
}

    .mockup-card.light {
        background: #f1f5f9;
    }

.mockup-btn {
    margin-top: 16px;
    background: #000;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        margin: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }
}

/* ================================
   TRUSTED SECTION
================================ */
.trusted-section {
    padding: 70px 20px;
    background: #ffffff;
}

    .trusted-section h2 {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #111;
    }

/* ================================
   HORIZONTAL SCROLL CONTAINER
================================ */
.cards-scroll {
    display: flex;
    gap: 20px;
    overflow: hidden; /* hide infinite loop jump */
    padding-bottom: 14px;
    position: relative;
    cursor: grab;
}

    .cards-scroll:active {
        cursor: grabbing;
    }

/* ================================
   STORY CARD
================================ */
.story-card {
    flex: 0 0 260px;
    height: 360px;
    position: relative; /* REQUIRED for overlay */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* MOBILE SIZE */
@media (max-width: 480px) {
    .story-card {
        flex: 0 0 220px;
        height: 300px;
    }
}

/* ================================
   IMAGE
================================ */
.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* ================================
   MOUSE OVER EFFECT
================================ */
.story-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    z-index: 5;
}

    .story-card:hover img {
        transform: scale(1.1);
    }

/* ================================
   OVERLAY TEXT
================================ */
.story-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient( to top, rgba(0,0,0,0.8), rgba(0,0,0,0.35), rgba(0,0,0,0) );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.story-card:hover .story-overlay {
    opacity: 1;
}

/* ================================
   TEXT STYLE
================================ */
.story-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.story-overlay p {
    font-size: 13px;
    color: #f3f4f6;
    opacity: 0.9;
}

/* ================================
   LAZY LOAD IMAGE SMOOTHNESS
================================ */
.story-card img[loading="lazy"] {
    filter: blur(6px);
}

    .story-card img[loading="lazy"]:not([src=""]) {
        filter: blur(0);
    }

/* =====================================
   GROWTH / IMPACT SECTION
===================================== */
.growth-section {
    padding: 90px 20px;
    background: #ffffff;
    text-align: center;
}

    .growth-section h2 {
        font-size: 34px;
        font-weight: 700;
        line-height: 1.3;
        color: #111;
        margin-bottom: 40px;
    }

/* =====================================
   TABS
===================================== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tab {
    background: none;
    border: none;
    padding: 14px 6px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
}

    .tab:hover {
        color: #111;
    }

    .tab.active {
        color: #000;
    }

        .tab.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 2px;
            background: #000;
            border-radius: 2px;
        }

/* =====================================
   IMPACT STAGE (CONTENT AREA)
===================================== */
.impact-stage {
    max-width: 1100px;
    margin: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    background: #f8f4ec;
    border-radius: 28px;
    padding: 55px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

/* =====================================
   TEXT SIDE
===================================== */
.impact-text {
    flex: 1;
    text-align: left;
}

    .impact-text h3 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 14px;
        color: #111;
    }

    .impact-text p {
        font-size: 16px;
        color: #555;
        max-width: 420px;
        line-height: 1.6;
    }

/* =====================================
   IMAGE STAGE
===================================== */
.impact-image {
    flex: 1;
    position: relative;
}

    .impact-image img {
        width: 100%;
        max-width: 460px;
        border-radius: 26px;
        display: block;
        /* 🔥 SMOOTH TRANSITION MAGIC */
        transition: opacity 0.45s cubic-bezier(.4,0,.2,1), transform 0.45s cubic-bezier(.4,0,.2,1);
        will-change: opacity, transform;
    }

        /* Fade states (used by JS) */
        .impact-image img.fade-out {
            opacity: 0;
            transform: translateY(10px);
        }

        .impact-image img.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

/* =====================================
   MOBILE RESPONSIVE
===================================== */
@media (max-width: 900px) {
    .impact-stage {
        gap: 40px;
        padding: 45px;
    }
}

@media (max-width: 768px) {
    .impact-stage {
        flex-direction: column;
        text-align: center;
    }

    .impact-text {
        text-align: center;
    }

        .impact-text p {
            margin: auto;
        }
}

@media (max-width: 480px) {
    .growth-section h2 {
        font-size: 28px;
    }

    .impact-stage {
        padding: 35px 25px;
    }

    .impact-text h3 {
        font-size: 22px;
    }

    .impact-text p {
        font-size: 15px;
    }
}


/* ================================
   FEEDBACK SECTION
================================ */
.feedback-section {
    padding: 90px 20px;
    background: #fafafa;
    text-align: center;
}

    .feedback-section h2 {
        font-size: 34px;
        font-weight: 700;
        color: #111;
        margin-bottom: 10px;
    }

.feedback-sub {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* ================================
   FEEDBACK CARDS
================================ */
.feedback-cards {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================================
   CARD
================================ */
.feedback-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .feedback-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    }

/* ================================
   RATING
================================ */
.rating {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* ================================
   TEXT
================================ */
.feedback-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* ================================
   USER
================================ */
.user {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .user img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
    }

    .user strong {
        display: block;
        font-size: 14px;
        color: #111;
    }

    .user span {
        font-size: 13px;
        color: #777;
    }

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 900px) {
    .feedback-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feedback-card {
        text-align: center;
    }

    .user {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feedback-section h2 {
        font-size: 28px;
    }

    .feedback-sub {
        font-size: 15px;
    }
}


/* =====================================
   IMPACT CARDS SECTION
===================================== */
.impact-cards-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

    .impact-cards-section h2 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 60px;
        color: #111;
    }

/* =====================================
   GRID
===================================== */
.impact-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

/* BIG CARD SPAN */
.impact-large {
    grid-column: span 2;
    height: 420px;
}

/* =====================================
   CARD
===================================== */
.impact-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 320px;
    background: #000;
    cursor: pointer;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: transform 0.45s cubic-bezier(.4,0,.2,1), box-shadow 0.45s cubic-bezier(.4,0,.2,1);
}

    /* =====================================
   IMAGE
===================================== */
    .impact-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(.4,0,.2,1), filter 0.6s ease;
    }

/* =====================================
   OVERLAY
===================================== */
.impact-overlay {
    position: absolute;
    inset: 0;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient( to top, rgba(0,0,0,0.85), rgba(0,0,0,0.35), rgba(0,0,0,0) );
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .impact-overlay h3,
    .impact-overlay h4 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .impact-overlay h3 {
        font-size: 26px;
    }

    .impact-overlay h4 {
        font-size: 20px;
    }

    .impact-overlay p {
        color: #f3f4f6;
        font-size: 15px;
        line-height: 1.5;
        max-width: 420px;
    }

/* =====================================
   MOUSE OVER IMPACT ✨
===================================== */
.impact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 90px rgba(0,0,0,0.25);
    z-index: 3;
}

    .impact-card:hover img {
        transform: scale(1.08);
        filter: brightness(0.9);
    }

    .impact-card:hover .impact-overlay {
        opacity: 1;
    }

/* =====================================
   MOBILE RESPONSIVE
===================================== */
@media (max-width: 900px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-large {
        grid-column: span 1;
        height: 360px;
    }
}

@media (max-width: 480px) {
    .impact-cards-section h2 {
        font-size: 28px;
    }

    .impact-card {
        height: 280px;
    }

    .impact-overlay {
        padding: 26px;
    }
}


/* =====================================
   BLOG / GUIDES SECTION
===================================== */
.blog-guides-section {
    padding: 100px 20px;
    background: #faf9f7;
}

/* HEADER */
.blog-header {
    max-width: 1100px;
    margin: auto;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .blog-header h2 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.3;
        color: #111;
    }

.blog-btn {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .blog-btn:hover {
        background: #111;
        transform: translateY(-2px);
    }

/* =====================================
   BLOG CARDS GRID
===================================== */
.blog-cards {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* =====================================
   BLOG CARD
===================================== */
.blog-card {
    position: relative;
    height: 420px;
    border-radius: 26px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: transform 0.45s cubic-bezier(.4,0,.2,1), box-shadow 0.45s cubic-bezier(.4,0,.2,1);
}

    /* IMAGE */
    .blog-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(.4,0,.2,1), filter 0.6s ease;
    }

/* =====================================
   OVERLAY
===================================== */
.blog-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient( to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), rgba(0,0,0,0) );
}

    .blog-overlay h3 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
    }

/* PLAY ICON */
.play-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 14px;
}

/* =====================================
   HOVER IMPACT ✨
===================================== */
.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 90px rgba(0,0,0,0.25);
    z-index: 3;
}

    .blog-card:hover img {
        transform: scale(1.08);
        filter: brightness(0.9);
    }

/* =====================================
   MOBILE RESPONSIVE
===================================== */
@media (max-width: 900px) {
    .blog-cards {
        grid-template-columns: 1fr;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .blog-header h2 {
            font-size: 30px;
        }
}

@media (max-width: 480px) {
    .blog-card {
        height: 320px;
    }

    .blog-overlay h3 {
        font-size: 16px;
    }
}


/* =====================================
   HERO IMPACT SECTION
===================================== */
.hero-impact {
    position: relative;
    padding: 120px 60px;
    margin: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient( 120deg, #c9b8a6, #b9a893, #d2c5b5 );
    overflow: hidden;
}

/* =====================================
   HERO CONTENT
===================================== */
.hero-content {
    max-width: 520px;
    z-index: 2;
}

    .hero-content h1 {
        font-size: 44px;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 24px;
    }

/* BUTTON */
.hero-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }

/* =====================================
   HERO VISUAL
===================================== */
.hero-visual {
    position: relative;
    z-index: 1;
}

    .hero-visual img {
        width: 320px;
        border-radius: 36px;
        transform: rotate(-10deg) translateY(10px);
        box-shadow: 0 40px 80px rgba(0,0,0,0.35);
        transition: transform 0.6s cubic-bezier(.4,0,.2,1), box-shadow 0.6s cubic-bezier(.4,0,.2,1);
    }

/* MOUSE OVER IMPACT ✨ */
.hero-impact:hover .hero-visual img {
    transform: rotate(-6deg) translateY(0);
    box-shadow: 0 60px 120px rgba(0,0,0,0.45);
}

/* =====================================
   MOBILE RESPONSIVE
===================================== */
@media (max-width: 900px) {
    .hero-impact {
        flex-direction: column;
        text-align: center;
        padding: 90px 30px;
        margin: 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

        .hero-content h1 {
            font-size: 34px;
        }

    .hero-visual img {
        width: 260px;
        transform: rotate(-8deg);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-impact {
        padding: 70px 24px;
    }
}


/* =====================================
   FOOTER
===================================== */
.site-footer {
    background: #faf9f7;
    padding: 80px 40px 40px;
    color: #111;
}

/* =====================================
   TOP SECTION
===================================== */
.footer-top {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* BRAND */
.brand-logo {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CTA CARDS */
.footer-cta {
    display: flex;
    gap: 14px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-radius: 16px;
    min-width: 200px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .cta-card .arrow {
        font-size: 16px;
    }

    /* Dark CTA */
    .cta-card.dark {
        background: #000;
        color: #fff;
    }

    /* Light CTA */
    .cta-card.light {
        background: #cdbba6;
        color: #000;
    }

    /* Hover */
    .cta-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

/* =====================================
   LINK COLUMNS
===================================== */
.footer-links {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #111;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

    .footer-col a:hover {
        color: #000;
        text-decoration: underline;
    }

.new-link {
    font-weight: 600;
}

/* =====================================
   BOTTOM BAR
===================================== */
.footer-bottom {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #666;
}

.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

    .footer-legal a {
        color: #666;
        text-decoration: none;
    }

        .footer-legal a:hover {
            text-decoration: underline;
        }

/* =====================================
   MOBILE RESPONSIVE
===================================== */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 60px 20px 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-card {
        width: 100%;
    }

    .footer-cta {
        flex-direction: column;
        width: 100%;
    }
}

/* ================================
   HEADER MOBILE FIXES
================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Ensure mobile menu overlays content */
@media (max-width: 900px) {

    .nav-menu {
        z-index: 999;
        box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        /* animation */
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

        .nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

    /* Lock scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }
}

/* ================================
   WELCOME PAGE
================================ */
.welcome-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    padding: 20px;
}

.welcome-card {
    background: #fff;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.welcome-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.welcome-card h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.welcome-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

.welcome-email {
    font-size: 14px;
    color: #777;
    margin-bottom: 22px;
}


