/* ============================================================
   SECTION 1: ROOT VARIABLES & RESET – WHITE + BROWN THEME
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* White + Brown Palette */
    --bg:           #FFFFFF;
    --surface:      #F8F6F3;
    --surface-2:    #F0ECE6;
    --text:         #2C1810;
    --text-soft:    #4A3528;
    --text-muted:   #7A6B60;
    --text-dim:     #A8988A;
    --accent-soft:  #A0522D;
    --accent-hover: #6B3410;
    --accent-glow:  rgba(139, 69, 19, 0.12);
    --border:       rgba(0, 0, 0, 0.06);
    --border-light: rgba(0, 0, 0, 0.04);
    --white:        #FFFFFF;
    --shadow:       0 4px 20px rgba(0, 0, 0, 0.06);

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 140px);
    --container:   1200px;
    --gap:         24px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    letter-spacing: -0.02em;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}


/* ============================================================
   SECTION 2: CARD SYSTEM – WHITE + BROWN
   ============================================================ */

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.25s ease,
                box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 69, 19, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 40px rgba(139, 69, 19, 0.02);
}




/* ============================================================
   BUTTONS – DARK THEME (Original 3D Effect)
   ============================================================ */

/* ===== ACID BUTTON  ===== */
.btn-acid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--surface-2);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.15s cubic-bezier(0.22, 1, 0.36, 1);
    user-select: none;
    position: relative;
}

.btn-acid:hover {
    transform: translate(-3px, -4px);
    box-shadow: 6px 6px 0px rgba(255, 255, 255, 0.15);
}

.btn-acid:active {
    transform: translate(0px, 0px);
    box-shadow: 2px 2px 0px rgba(255, 255, 255, 0.05);
}

/* ===== GHOST BUTTON ===== */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #B0B0B0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.15s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.15s ease,
                color 0.15s ease;
    position: relative;
}

.btn-ghost:hover {
    transform: translate(-3px, -4px);
    box-shadow: 6px 6px 0px rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--surface);
}

.btn-ghost:active {
    transform: translate(0px, 0px);
    box-shadow: 2px 2px 0px rgba(255, 255, 255, 0.03);
    
}

/* ============================================================
   NAVBAR – Floating Glass (Light Theme)
   ============================================================ */

.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1300px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.60);      /* ← Light transparent */
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== On Scroll – Solid White ===== */
.nav.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO ===== */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.02);
}

.nav-logo-mark {
    width: 34px;
    height: 34px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-logo-mark:hover {
    transform: scale(1.05) rotate(-3deg);
}

.nav-logo-mark svg {
    width: 18px;
    height: 18px;
}

.nav-logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #2C1810;
    transition: color 0.3s ease;
}

/* ===== NAV LINKS ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(44, 24, 16, 0.6);
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    letter-spacing: 0.03em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: #2C1810;
    background: rgba(139, 69, 19, 0.04);
}

.nav-link.active {
    color: var(--accent);
    background: rgba(139, 69, 19, 0.06);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    width: 40%;
}

/* ===== NAV CTA BUTTONS ===== */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: inherit;
    cursor: pointer;
}

.nav-cta .btn-ghost {
    background: transparent;
    border: 1px solid rgba(44, 24, 16, 0.12);
    color: rgba(44, 24, 16, 0.6);
}

.nav-cta .btn-ghost:hover {
    transform: translate(-2px, -3px);
    box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.06);
    border-color: var(--accent);
    color: var(--accent);
}

.nav-cta .btn-acid {
    background: var(--accent);
    color: #FFFFFF;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.06);
}

.nav-cta .btn-acid:hover {
    transform: translate(-2px, -3px);
    box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.10);
}

/* ===== NAV TOGGLE (Mobile) ===== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(139, 69, 19, 0.04);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2C1810;
    position: relative;
    transition: background 0.3s ease;
    border-radius: 2px;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2C1810;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 2px;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active span::after  { transform: rotate(-45deg); top: 0; }

.nav-mobile-cta {
    display: none;
}
/* ============================================================
   NAV CLOSE BUTTON – Mobile
   ============================================================ */

.nav-close-btn {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    list-style: none;
}

.nav-close-btn button {
    width: 44px;
    height: 44px;
    background: rgba(139, 69, 19, 0.06);
    border: 1px solid rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2C1810;
}

.nav-close-btn button:hover {
    background: rgba(139, 69, 19, 0.12);
    transform: rotate(90deg);
}

.nav-close-btn button svg {
    width: 22px;
    height: 22px;
}

/* ============================================================
   MOBILE NAV – Show Close Button
   ============================================================ */

@media (max-width: 768px) {
    .nav {
        top: 12px;
        width: calc(100% - 24px);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.70);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
    }

    .nav.scrolled {
        top: 0;
        width: 100%;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.95);
    }

    .nav-links { display: none; }
    .nav-cta   { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 80px 24px 40px;
        gap: 4px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        animation: navSlideIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Show close button when menu is open */
    .nav-links.open .nav-close-btn {
        display: flex;
    }

    @keyframes navSlideIn {
        0% { opacity: 0; transform: translateY(-10px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    .nav-links.open .nav-link {
        font-size: 18px;
        font-weight: 600;
        color: rgba(44, 24, 16, 0.6);
        padding: 14px 18px;
        border-radius: 10px;
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
    }

    .nav-links.open .nav-link:hover {
        color: #2C1810;
        background: rgba(139, 69, 19, 0.04);
        transform: translateX(6px);
    }
    
    .nav-links.open .nav-link.active {
        color: var(--accent);
        background: rgba(139, 69, 19, 0.06);
    }

    .nav-links.open .nav-link.active::after {
        display: none;
    }

    .nav-links.open .nav-mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        list-style: none;
    }

    .nav-links.open .nav-mobile-cta .nav-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 10px;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-links.open .nav-mobile-cta .btn-ghost {
        background: transparent;
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: rgba(0, 0, 0, 0.6);
    }

    .nav-links.open .nav-mobile-cta .btn-ghost:hover {
        transform: translate(-2px, -3px);
        box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.06);
        border-color: var(--accent);
        color: var(--accent);
    }

    .nav-links.open .nav-mobile-cta .btn-acid {
        background: var(--accent);
        color: #FFFFFF;
        border: none;
        font-weight: 700;
    }

    .nav-links.open .nav-mobile-cta .btn-acid:hover {
        transform: translate(-2px, -3px);
        box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.10);
        color: var(--white);
    }
}
/* ============================================================
   SECTION 6: HERO – Halka Dark Background
   ============================================================ */

.hero {
    position: relative;
    padding-top: 60px;
    padding-bottom: 70px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1A1A1E;          /* ← Halka dark (pehle #0A0A0C tha) */
}

/* ===== Background Image ===== */
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(4px) brightness(0.5) saturate(0.9);  /* ← brightness 0.35 se 0.5 */
    transform: scale(1.05);
}

/* ===== Dark Overlay – Halka ===== */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            rgba(20, 20, 24, 0.6) 0%,    /* ← 0.7 se 0.6 */
            rgba(20, 20, 24, 0.3) 40%,   /* ← 0.4 se 0.3 */
            rgba(20, 20, 24, 0.3) 60%,
            rgba(20, 20, 24, 0.6) 100%
        );
    z-index: 1;
}

/* ===== Brown Glow ===== */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(139, 69, 19, 0.06) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ===== Badge ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: rgba(20, 20, 24, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 26px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== Heading ===== */
.hero h1 {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 820px;
    margin: 0 auto 20px;
    color: #FFFFFF;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 .accent-word {
    color: #FFFFFF;
    background: var(--accent);
    padding: 0 12px;
    border-radius: 8px;
    display: inline-block;
    text-shadow: none;
}

/* ===== Subtitle ===== */
.hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 34px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}


/* ============================================================
   SECTION 8: METRICS / STATS – WHITE + BROWN
   ============================================================ */

.metrics {
    padding: 40px 0;
    background: var(--surface);
}

.metrics-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-mute);
    text-align: center;
    margin-bottom: 32px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.metric-item {
    text-align: center;
    padding: 32px 24px;
}

.metric-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-bottom: 8px;
    color: var(--text);
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.metric-number .metric-unit {
    font-size: 0.45em;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.metric-number .metric-unit.plus {
    font-size: 0.65em;
    font-weight: 700;
    color: var(--secondary);
    margin-left: -2px;
}

.metric-number .metric-highlight {
    color: #FFFFFF;
    background: var(--accent);
    padding: 0 6px;
    border-radius: 6px;
}

.metric-desc {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 500;
    max-width: 240px;
    margin: 0 auto;
}

.metric-divider {
    width: 1px;
    background: var(--border);
    margin: 24px 0;
    justify-self: center;
}

@media (max-width: 768px) {
    .metrics {
        padding: 30px 0;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .metric-item {
        padding: 24px 16px;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }

    .metric-number {
        font-size: clamp(40px, 10vw, 56px);
    }

    .metrics-label {
        font-size: 12px;
        margin-bottom: 24px;
    }
}

/* ============================================================
   SECTION 9: BENTO GRID – Dark Brown + Transparent
   ============================================================ */
/* ============================================================
   SECTION: WHY CHOOSE US – BENTO GRID (Clean & Premium)
   ============================================================ */

.engine {
    padding: 0 0 clamp(48px, 6vw, 80px);
    background: #F8F4F0;              /* ← Warm cream background */
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    max-width: 600px;
    margin: 0 auto;
    color: #2C1810;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ============================================================
   BENTO CARDS – Clean Premium
   ============================================================ */

.bento-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;               /* ← Pure White */
    border: 1px solid rgba(139, 69, 19, 0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.03);
}

/* ===== Top Accent Line ===== */
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--accent);
    border-radius: 0 0 4px 4px;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.bento-card:hover::before {
    left: 10%;
    right: 10%;
    opacity: 0.6;
}

/* ===== Hover Effect ===== */
.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 69, 19, 0.12);
    box-shadow: 0 16px 48px -16px rgba(139, 69, 19, 0.08);
    background: #FFFFFF;
}

/* ===== Icon ===== */
.bento-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 69, 19, 0.04);
    border: 1px solid rgba(139, 69, 19, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-card:hover .bento-card-icon {
    border-color: var(--accent);
    background: rgba(139, 69, 19, 0.06);
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.04);
}

.bento-card:hover .bento-card-icon svg {
    stroke: var(--accent);
    transform: scale(1.05);
}

/* ===== Title ===== */
.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    color: #2C1810;
    transition: color 0.3s ease;
}

.bento-card:hover h3 {
    color: var(--accent);
}

/* ===== Description ===== */
.bento-card p {
    font-size: 15px;
    color: #6B5A4A;
    line-height: 1.6;
    flex: 1;
    transition: color 0.3s ease;
}

.bento-card:hover p {
    color: #4A3A2A;
}

/* ===== Visual Area ===== */
.bento-card-visual {
    margin-top: 28px;
    background: rgba(139, 69, 19, 0.02);
    border: 1px solid rgba(139, 69, 19, 0.04);
    border-radius: 12px;
    padding: 16px;
    min-height: 120px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-card:hover .bento-card-visual {
    border-color: rgba(139, 69, 19, 0.08);
    background: rgba(139, 69, 19, 0.02);
}


/* ============================================================
   MINI-BARS
   ============================================================ */

.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    padding: 4px 0;
}

.mini-bar {
    flex: 1;
    background: rgba(139, 69, 19, 0.12);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    position: relative;
    min-height: 8px;
}

.mini-bar:hover {
    transform: scaleY(1.15);
    transform-origin: bottom;
    background: rgba(139, 69, 19, 0.25);
    box-shadow: 0 -4px 20px rgba(139, 69, 19, 0.08);
}

.mini-bar.highlight {
    background: var(--accent);
}

.mini-bar.highlight:hover {
    filter: brightness(1.1);
    box-shadow: 0 -4px 30px rgba(139, 69, 19, 0.12);
}

/* ============================================================
   MINI-PIPELINE
   ============================================================ */

.mini-pipeline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-pipeline-node {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #6B5A4A;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.mini-pipeline-node:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.06);
}

.mini-pipeline-node:nth-child(1) { background: var(--accent); color: #FFFFFF; }
.mini-pipeline-node:nth-child(2) { background: rgba(139, 69, 19, 0.06); }
.mini-pipeline-node:nth-child(3) { background: rgba(139, 69, 19, 0.04); }

.mini-pipeline-node:nth-child(2):hover { background: rgba(139, 69, 19, 0.10); }
.mini-pipeline-node:nth-child(3):hover { background: rgba(139, 69, 19, 0.08); }

.mini-pipeline-arrow {
    font-size: 12px;
    color: #A8988A;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mini-pipeline-node:hover + .mini-pipeline-arrow {
    transform: translateX(4px);
    color: var(--accent);
}

/* ============================================================
   MINI-CODE
   ============================================================ */

.mini-code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 12px;
    line-height: 1.7;
    color: #6B5A4A;
    transition: all 0.3s ease;
}

.mini-code .keyword { color: var(--accent); font-weight: 600; }
.mini-code .string { color: #16A34A; }
.mini-code .comment { color: #A8988A; }

.bento-card:hover .mini-code {
    color: #4A3A2A;
}

/* ============================================================
   SECTION 10: PRICING – WHITE + BROWN
   ============================================================ */

.pricing {
    padding: clamp(48px, 6vw, 80px) 0;
}

.toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.toggle-container {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
}

.toggle-btn {
    padding: 10px 28px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.toggle-btn.active {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.08);
}

.toggle-save {
    font-size: 12px;
    font-weight: 600;
    color: #16A34A;
    margin-left: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.toggle-save.visible {
    opacity: 1;
    transform: translateX(0);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    padding: 32px 28px;
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.pricing-card.featured {
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 0 40px rgba(139, 69, 19, 0.03);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-plan-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    color: var(--text);
}

.pricing-plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.pricing-value {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-period {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
}

.pricing-billed {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 28px;
    transition: all 0.25s ease;
}

.pricing-billed.yearly-active {
    color: #FFFFFF;
    font-weight: 700;
    background: var(--accent);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #16A34A;
}

.pricing-card .btn-acid {
    width: 100%;
    margin-bottom: 28px;
}

.pricing-card .btn-acid:hover {
    transform: translate(-3px, -4px);
    box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.12);
}

.pricing-card .btn-ghost {
    width: 100%;
    margin-bottom: 28px;
}

.pricing-card .btn-ghost:hover {
    transform: translate(-3px, -4px);
    box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.06);
    border-color: var(--accent);
    color: var(--accent);
}


/* ============================================================
   TESTIMONIALS – Clean & Premium
   ============================================================ */

.testimonials {
    padding: var(--section-pad) 0;
    background: #F8F4F0;              /* ← Warm cream background */
}

.section-sub {
    font-size: 16px;
    color: #8A7A6A;
    max-width: 500px;
    margin: 8px auto 0;
    text-align: center;
}

.section-title {
    color: #2C1810 !important;
}

.section-tag {
    color: var(--accent) !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* ============================================================
   TESTIMONIAL CARDS – Clean White
   ============================================================ */

.testimonial-card {
    padding: 28px 24px 24px;
    background: #FFFFFF;               /* ← Pure White */
    border: 1px solid rgba(139, 69, 19, 0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.03);
}

/* ===== Top Accent Line ===== */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--accent);
    border-radius: 0 0 4px 4px;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.testimonial-card:hover::before {
    left: 10%;
    right: 10%;
    opacity: 0.6;
}

/* ===== Normal Cards Hover ===== */
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 69, 19, 0.12);
    box-shadow: 0 16px 48px -16px rgba(139, 69, 19, 0.08);
    background: #FFFFFF;
}

/* ============================================================
   FEATURED CARD – Premium
   ============================================================ */

.testimonial-card.featured {
    border-color: var(--accent);
    border-width: 2px;
    background: #FFFFFF;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.04);
}

.testimonial-card.featured::before {
    left: 10%;
    right: 10%;
    opacity: 0.8;
    height: 4px;
}

.testimonial-card.featured:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--accent);
    box-shadow: 0 24px 56px -16px rgba(139, 69, 19, 0.12);
    background: #FFFFFF;
}

/* ===== Featured Badge ===== */
.testimonial-card.featured .testimonial-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.12);
}

/* ============================================================
   STARS
   ============================================================ */

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #F5A800;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-card.featured .testimonial-stars {
    color: var(--accent);
}

/* ============================================================
   TEXT
   ============================================================ */

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #6B5A4A;
    margin: 0;
    flex: 1;
    font-weight: 400;
}

.testimonial-card.featured .testimonial-text {
    color: #4A3A2A;
    font-weight: 450;
}

/* ============================================================
   AUTHOR
   ============================================================ */

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(139, 69, 19, 0.06);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    background: rgba(139, 69, 19, 0.06);
    color: #2C1810;
}

.testimonial-card.featured .testimonial-avatar {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.08);
}

.testimonial-name {
    font-weight: 700;
    font-size: 14px;
    color: #2C1810;
}

.testimonial-card.featured .testimonial-name {
    color: #1A0E0A;
}

.testimonial-role {
    font-size: 12px;
    color: #8A7A6A;
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 20px 16px 18px;
    }

    .section-sub {
        font-size: 14px;
    }

    .testimonial-card.featured:hover {
        transform: translateY(-4px) scale(1.01);
    }
}
/* ============================================================
   FAQ – Full Dark Cards + Light Text
   ============================================================ */

.faq {
    padding: var(--section-pad) 0;
    /* BG NAHI CHANGE – jo pehle tha wahi rahega */
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== FAQ Item – Full Dark ===== */
.faq-item {
    background: #1A0E0A;                 /* ← Full dark brown */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: #241410;                 /* ← Thora light dark on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.3);
}

.faq-item.open {
    border-color: var(--accent);
    background: #1A0E0A;
}

/* ===== FAQ Question – Light Text ===== */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #F4F4F0;                     /* ← Light text */
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-item.open .faq-question {
    color: var(--accent);
}

/* ===== FAQ Icon – Light ===== */
.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: #A8988A;                    /* ← Light muted */
    transition: stroke 0.3s ease;
}

.faq-item:hover .faq-icon {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item:hover .faq-icon svg {
    stroke: var(--accent);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    border-color: var(--accent);
}

.faq-item.open .faq-icon svg {
    stroke: #FFFFFF;
}

/* ===== FAQ Answer – Light Text ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 14px;
    color: #C9C9C2;                     /* ← Light text */
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE – FAQ
   ============================================================ */

@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
        padding: 16px 18px;
    }

    .faq-answer-inner {
        font-size: 13px;
        padding: 0 18px 16px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    .faq-icon svg {
        width: 12px;
        height: 12px;
    }
}

/* ============================================================
   CTA BANNER – Benefits
   ============================================================ */

.cta-banner {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.cta-banner-inner {
    background: #1A0E0A;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: clamp(56px, 8vw, 80px) clamp(32px, 5vw, 60px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow Effects */
.cta-banner-inner::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.04;
    filter: blur(80px);
    pointer-events: none;
}

.cta-banner-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.03;
    filter: blur(60px);
    pointer-events: none;
}

/* Tag */
.cta-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
}

/* Heading */
.cta-banner h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #F4F4F0;
    max-width: 580px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

/* Description */
.cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Buttons */
.cta-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-acid {
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 700;
    background: var(--accent);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-banner .btn-acid:hover {
    transform: translate(-3px, -4px);
    box-shadow: 6px 6px 0px rgba(255, 255, 255, 0.08);

}

.cta-banner .btn-acid svg {
    width: 16px;
    height: 16px;
}

/* Ghost Button */
.btn-dark-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-dark-ghost:hover {
    transform: translate(-3px, -4px);
    box-shadow: 6px 6px 0px rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
}

/* ============================================================
   CTA BENEFITS
   ============================================================ */

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 24px 40px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.cta-benefit-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .cta-banner-inner {
        padding: 40px 20px;
    }

    .cta-banner h2 {
        font-size: 28px;
    }

    .cta-banner p {
        font-size: 14px;
        max-width: 100%;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-banner .btn-acid,
    .btn-dark-ghost {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .cta-benefits {
        gap: 12px 20px;
        margin-top: 24px;
        padding-top: 20px;
    }

    .cta-benefit-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cta-banner-inner {
        padding: 32px 16px;
    }

    .cta-banner h2 {
        font-size: 24px;
    }

    .cta-banner .btn-acid,
    .btn-dark-ghost {
        padding: 14px 24px;
        font-size: 14px;
        max-width: 280px;
    }

    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}


/* ============================================================
   FOOTER – DARK BROWN THEME
   ============================================================ */

.footer {
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: #1A0E0A;              /* ← Dark Brown */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 24px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
}

.footer-logo-mark {
    width: 34px;
    height: 34px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-mark svg {
    width: 18px;
    height: 18px;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #F4F4F0;
}

.footer-brand-desc {
    font-size: 14px;
    color: #A8988A;
    line-height: 1.7;
    max-width: 280px;
    margin: 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #C9C9C2;
    margin: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.footer-links a {
    font-size: 14px;
    color: #8A7A6A;
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: #8A7A6A;
    margin: 0;
}

.footer-copy a {
    color: #A8988A;
    text-decoration: none;
}

.footer-copy a:hover {
    color: var(--accent);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    font-size: 13px;
    color: #8A7A6A;
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ============================================================
   RESPONSIVE – Footer Dark Brown
   ============================================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 24px;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .footer-logo-img {
        height: 30px;
        max-width: 100px;
    }

    .footer-logo-text {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 20px;
        padding-bottom: 20px;
    }

    .footer-logo-img {
        height: 26px;
        max-width: 80px;
    }

    .footer-logo-text {
        font-size: 14px;
    }

    .footer-col-title {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom-links {
        gap: 12px;
    }

    .footer-copy {
        font-size: 12px;
    }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   FOOTER – Powered by DESHI
   ============================================================ */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: #5A5A55;
    margin: 0;
}

.footer-copy a {
    color: #80807A;
    text-decoration: none;
}

.footer-copy a:hover {
    color: var(--accent);
}

/* ===== Powered by DESHI ===== */
.footer-powered {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5A5A55;
}

.footer-powered span {
    color: #80807A;
}

.footer-powered-logo {
    height: 24px;
    width: auto;
    display: block;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.footer-powered-logo:hover {
    filter: brightness(1);
}

/* ============================================================
   RESPONSIVE – Footer
   ============================================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 24px;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .footer-logo-img {
        height: 30px;
        max-width: 100px;
    }

    .footer-logo-text {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-powered {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 20px;
        padding-bottom: 20px;
    }

    .footer-logo-img {
        height: 26px;
        max-width: 80px;
    }

    .footer-logo-text {
        font-size: 14px;
    }

    .footer-col-title {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 13px;
    }
}



/* ============================================================
   RESPONSIVE - TABLET & MOBILE
   ============================================================ */

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }

    .metric-item {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-banner-actions {
        flex-direction: column;
    }

    .cta-banner .btn-acid,
    .btn-dark-ghost {
        width: 100%;
        max-width: 300px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}



/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 14px;
    background: #25D366;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

/* ===== Hover Effect – Text Show ===== */
.whatsapp-float .whatsapp-float-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover .whatsapp-float-text {
    max-width: 120px;
    opacity: 1;
}

/* ===== Icon ===== */
.whatsapp-float-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-float-icon svg {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
}

/* ============================================================
   MOBILE – Floating WhatsApp
   ============================================================ */

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 10px 14px 10px 12px;
    }

    .whatsapp-float-icon {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float-icon svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float .whatsapp-float-text {
        font-size: 12px;
    }

    .whatsapp-float:hover {
        transform: translateY(-2px) scale(1.02);
    }

    .whatsapp-float:hover .whatsapp-float-text {
        max-width: 80px;
    }
}


