/* ================================================================
           REDESIGN 2026 — AGENDA PAGE (EMERALD & GOLD)
        ================================================================ */

:root {
    /* Override global light background */
    --color-bg-primary: #080B14 !important;

    --dark-950: #080B14;
    --dark-900: #0D1117;
    --dark-800: #161C28;
    --dark-700: #1E2739;
    --emerald: #4ADE80;
    --emerald-dark: #16A34A;
    --gold: #D4AF37;
    --gold-light: #F1D279;
    --txt-bright: #F0F4FF;
    --txt-sub: #94A3B8;
    --txt-muted: #64748B;
    --glow-emerald: 0 0 20px rgba(74, 222, 128, 0.3);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.2);
}

body {
    background-color: var(--dark-950) !important;
    color: var(--txt-sub);
    font-family: 'Inter', sans-serif;
}

section,
.section-padding {
    background: var(--dark-950) !important;
}

.demo-section {
    background: var(--dark-900) !important;
}

/* SCROLL REVEAL STYLES */
.js-enabled [data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* HERO - LUXURY DARK */
.hero-agenda {
    position: relative;
    padding: 240px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark-950);
}

/* Parallax Background Effect */
.hero-parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(to bottom, rgba(8, 11, 20, 0.9), rgba(8, 11, 20, 0.98)),
        url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&q=80&w=1920');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    transform: scale(1.1);
}

/* Hero Glows */
.hero-agenda::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-agenda::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-agenda .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-8);
}

.hero-overline {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--txt-bright);
    margin-bottom: var(--space-6);
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--emerald), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(74, 222, 128, 0.2));
}

.hero-desc {
    font-size: var(--font-size-xl);
    color: var(--txt-sub);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-12);
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

/* BUTTONS — PREMIUM REDESIGN */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 16px;
}

.btn-emerald {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: var(--dark-950) !important;
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.2);
}

.btn-emerald:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 222, 128, 0.4);
    filter: brightness(1.1);
}

.btn-gold-outline {
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold) !important;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(8px);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--dark-950) !important;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

/* SHIMMER BUTTON EFFECT */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: rotate(30deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(-100%, -100%) rotate(30deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(30deg);
    }
}

/* SPEED BAR (SEO) */
.speed-bar {
    background: var(--dark-900);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-10) 0;
    text-align: center;
}

.speed-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--txt-bright);
}

.speed-tag {
    background: var(--emerald);
    color: var(--dark-950);
    padding: 6px 14px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    box-shadow: var(--glow-emerald);
}

/* SECTION HEADERS */
.section-overline {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: var(--space-6);
}

.section-title {
    color: var(--txt-bright) !important;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: var(--space-6);
    letter-spacing: -1px;
}

.section-description {
    color: var(--txt-sub) !important;
    font-size: var(--font-size-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* BENTO GRID */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: var(--space-16);
}

/* CARD SERVICE — PREMIUM GLASSMORPHISM */
.card-service {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.card-service:hover {
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.card-service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(74, 222, 128, 0.06), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.card-service:hover::before {
    opacity: 1;
}

.card-service-icon {
    flex-shrink: 0;
    background: rgba(74, 222, 128, 0.05);
    color: var(--emerald);
    border: 1px solid rgba(74, 222, 128, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    transition: all 0.4s ease;
    box-shadow: inset 0 0 15px rgba(74, 222, 128, 0.05);
}

.card-service:hover .card-service-icon {
    background: var(--emerald);
    color: var(--dark-950);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-emerald);
}

.card-service-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--txt-bright);
    margin-bottom: var(--space-3);
    letter-spacing: -0.5px;
}

.card-service-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--txt-sub);
}

/* Grid Spans */
.benefit-1 {
    grid-column: span 7;
}

.benefit-2 {
    grid-column: span 5;
}

.benefit-3 {
    grid-column: span 5;
}

.benefit-4 {
    grid-column: span 7;
}

@media (max-width: 992px) {

    .benefit-1,
    .benefit-2,
    .benefit-3,
    .benefit-4 {
        grid-column: span 12 !important;
    }

    .card-service {
        padding: 32px;
    }
}

/* INTERACTIVE DEMO */
.demo-section {
    background: var(--dark-900);
    padding: var(--space-32) 0;
}

.demo-container {
    max-width: 1100px;
    margin: 80px auto 0;
    position: relative;
    min-height: 550px;
}

.demo-step {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: scale(0.95) translateY(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.demo-step.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

.demo-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

/* TESTIMONIALS — REFLECTING INDEX.HTML DESIGN */
.testimonials {
    background: var(--dark-950);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.card-testimonial {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.card-testimonial:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(37, 99, 235, .25);
    transform: translateY(-4px);
}

.card-testimonial-quote {
    color: #CBD5E1;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--space-8);
    position: relative;
}

.card-testimonial-quote::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    color: var(--emerald);
    opacity: 0.2;
}

.card-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-testimonial-info h4 {
    color: var(--txt-bright);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-testimonial-info p {
    color: var(--txt-muted);
    font-size: 14px;
    margin-bottom: 0;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

/* FAQ ACCORDION */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: var(--space-6);
    transition: all 0.4s ease;
}

.faq-question {
    padding: 30px;
    font-size: 20px;
    font-weight: 700;
    color: var(--txt-bright);
}

.faq-item.active {
    background: rgba(74, 222, 128, 0.03);
    border-color: rgba(74, 222, 128, 0.2);
}

/* SYSTEM SHOWCASE PREMIUM */
.system-showcase {
    padding: var(--space-24) 0;
    background: var(--dark-950);
    position: relative;
    overflow: hidden;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: center;
    margin-top: var(--space-16);
}

.showcase-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.showcase-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.showcase-tab.active {
    background: rgba(74, 222, 128, 0.05);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tab-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt-sub);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.showcase-tab.active .tab-icon {
    background: var(--emerald);
    color: var(--dark-950);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
}

.tab-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--txt-bright);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.tab-content p {
    font-size: 14px;
    color: var(--txt-sub);
    line-height: 1.4;
    margin: 0;
}

/* MOCKUP BROWSER */
.showcase-display {
    position: relative;
}

.browser-mockup {
    background: #1a1e2b;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    position: relative;
}

.browser-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.browser-address {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 16px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--txt-muted);
    font-family: monospace;
    flex: 1;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-content {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.browser-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-content img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

@media (max-width: 1100px) {
    .showcase-layout {
        grid-template-columns: 1fr;
    }

    .showcase-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .showcase-nav::-webkit-scrollbar {
        display: none;
    }

    .showcase-tab {
        min-width: 280px;
        flex-shrink: 0;
    }

    .browser-mockup {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .showcase-tab {
        min-width: 240px;
        padding: 16px;
    }

    .tab-icon {
        width: 40px;
        height: 40px;
    }
}

/* CONFIG TOUR SECTION */
.config-tour {
    padding: var(--space-24) 0;
    background: #080B14;
}

.tour-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
    margin-bottom: var(--space-24);
}

.tour-row:last-child {
    margin-bottom: 0;
}

.tour-row.reverse {
    direction: rtl;
}

.tour-row.reverse .tour-text {
    direction: ltr;
}

.tour-text {
    max-width: 500px;
}

.tour-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--emerald);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--txt-bright);
    margin-bottom: 20px;
    line-height: 1.2;
}

.tour-desc {
    font-size: 18px;
    color: var(--txt-sub);
    line-height: 1.6;
    margin-bottom: 30px;
}

.tour-feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 16px;
}

.tour-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--txt-bright);
    font-weight: 500;
    font-size: 15px;
}

.tour-feature-item svg {
    color: var(--emerald);
    flex-shrink: 0;
}

.tour-image-container {
    position: relative;
    z-index: 1;
}

.tour-frame {
    background: #1a1e2b;
    padding: 10px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.tour-frame img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.tour-image-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.tour-row:hover .tour-frame {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(74, 222, 128, 0.2);
}

@media (max-width: 1024px) {
    .tour-row {
        grid-template-columns: 1fr;
        gap: 60px;
        direction: ltr !important;
    }

    .tour-text {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tour-row.reverse {
        direction: ltr;
    }
}

/* AI AGENT SECTION */
.ai-agent-section {
    padding: var(--space-32) 0;
    background: linear-gradient(180deg, #080B14 0%, #0c111d 100%);
    position: relative;
    overflow: hidden;
}

.ai-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-content {
    z-index: 1;
}

.ai-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    background: rgba(74, 222, 128, 0.05);
    border-color: rgba(74, 222, 128, 0.2);
    transform: translateY(-5px);
}

.ai-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    margin-bottom: 16px;
}

.ai-feature-card h4 {
    color: var(--txt-bright);
    margin-bottom: 8px;
    font-size: 16px;
}

.ai-feature-card p {
    font-size: 14px;
    color: var(--txt-sub);
    line-height: 1.5;
}

/* WHATSAPP CHAT MOCKUP */
.chat-mockup {
    background: #0b141a;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    height: 600px;
    border-radius: 30px;
    border: 8px solid #222;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.chat-header {
    background: #075e54;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: #128c7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.chat-status h5 {
    margin: 0;
    font-size: 15px;
}

.chat-status span {
    font-size: 12px;
    opacity: 0.8;
}

.chat-body {
    flex: 1;
    padding: 20px;
    background: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.webp');
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    animation: messageFadeIn 0.5s ease forwards;
    opacity: 0;
}

@keyframes messageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.bot {
    background: #202c33;
    color: #d1d7db;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.message.user {
    background: #005c4b;
    color: #e9edef;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input {
    background: #202c33;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-bar {
    flex: 1;
    background: #2a3942;
    height: 35px;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .ai-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .chat-mockup {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* SITE SHOWCASE — CUSTOMER EXPERIENCE */
.site-showcase {
    background: var(--dark-950);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.site-tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

.site-tab {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: var(--txt-sub);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-tab.active {
    background: var(--gold);
    color: var(--dark-950);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.site-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    color: #fff;
}

.site-browser-viewport {
    position: relative;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.site-browser-viewport img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(1.02);
    filter: brightness(0.9);
}

.site-browser-viewport img.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
}

/* BOOKING FLOW — STEP BY STEP */
.booking-flow {
    background: linear-gradient(to bottom, var(--dark-950), var(--dark-900));
    padding: 100px 0;
    position: relative;
}

.booking-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.booking-stepper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.booking-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    width: 120px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--dark-800);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--txt-muted);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-step.active .step-number {
    background: var(--emerald);
    color: var(--dark-950);
    border-color: var(--emerald);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
    transform: scale(1.1);
}

.booking-step.completed .step-number {
    background: var(--emerald-dark);
    color: var(--dark-950);
    border-color: var(--emerald-dark);
}

.step-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--txt-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.3s ease;
}

.booking-step.active .step-label {
    color: #fff;
}

.booking-browser-viewport {
    background: #fff;
    /* White background for the booking screenshots */
    aspect-ratio: 3 / 2;
    max-width: 1100px;
}

.booking-browser-viewport img {
    filter: none;
    /* No brightness filtering for these clean UI shots */
    transform: scale(1.01);
}

.booking-browser-viewport img.active {
    transform: scale(1);
}

@media (max-width: 768px) {
    .booking-stepper {
        gap: 15px;
    }

    .booking-step {
        width: 80px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .step-label {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .site-tabs-container {
        gap: 8px;
    }

    .site-tab {
        padding: 10px 18px;
        font-size: 12px;
    }
}


/* ================================================================
   PRICING SECTION
================================================================ */
.pricing-section {
    position: relative;
    background: radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.03) 0%, transparent 50%), var(--dark-950);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
}

.pricing-card {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.pricing-vip {
    padding-top: 45px; /* VIP BADGE SPACE */
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.1);
    transform: scale(1.05);
    z-index: 2;
    background: rgba(255, 255, 255, 0.04);
}

.pricing-vip:hover {
    border-color: var(--emerald);
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.2);
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--emerald);
    color: var(--dark-950);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(74, 222, 128, 0.3);

    z-index: 10;
    margin-top: -14px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--txt-bright);
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--txt-bright);
    margin-bottom: 15px;
}

.pricing-price .currency {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
    margin-right: 2px;
}

.pricing-price .amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.pricing-price .period {
    font-size: 16px;
    color: var(--txt-sub);
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 4px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--txt-sub);
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--txt-bright);
    margin-bottom: 16px;
}

.pricing-features li.disabled {
    color: var(--txt-muted);
}

.check-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--emerald);
    stroke-width: 2.5;
    margin-right: 12px;
    flex-shrink: 0;
}

.cross-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--txt-muted);
    stroke-width: 2.5;
    margin-right: 12px;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

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

    .pricing-vip:hover {
        transform: translateY(-8px);
    }
}
