/* 
    DESIGN SYSTEM - Menson Gourmet
    Estilo: Moderno, SaaS-like, Confiança, Laranja Quente.
    Inspirado em: Linear, Cal.com, Vercel.
*/

:root {
    /* Cores */
    --orange-500: #F97316;         /* CTA principal */
    --orange-600: #EA580C;         /* CTA hover */
    --orange-50: #FFF7ED;          /* Background badges */
    --orange-700: #C2410C;         /* Texto badges */

    --slate-900: #0F172A;          /* Headings */
    --slate-700: #334155;          /* Texto corpo */
    --slate-400: #94A3B8;          /* Texto muted */
    --slate-200: #E2E8F0;          /* Bordas */
    --slate-50: #F8FAFC;           /* Background principal */
    --white: #FFFFFF;              /* Background seções alternadas */

    --emerald-600: #059669;        /* Sucesso/economia */
    --emerald-50: #ECFDF5;         /* Background sucesso */
    --red-600: #DC2626;            /* Perda/negativo */
    --red-50: #FEF2F2;             /* Background perda */

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --backdrop-blur: blur(16px);

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    --container-max-width: 1200px;
    --container-padding: 24px;
}

/* Reset Básico */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Efeito decorativo global (hero area) */
.global-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(ellipse at 80% 0%, rgba(249,115,22,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    color: var(--slate-900);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

p {
    font-size: 16px;
    color: var(--slate-700);
}

.text-large {
    font-size: 18px;
}

.caption {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
}

/* Container & Layout */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: var(--section-padding) 0;
}

section:nth-child(odd) {
    background-color: var(--slate-50);
}

section:nth-child(even) {
    background-color: var(--white);
}

/* Componentes */

/* Botão Primário */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-500);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
    gap: 8px;
}

.btn-primary.btn-md {
    padding: 12px 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background-color: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

/* Botão Secundário (outline) */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--slate-700);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid var(--slate-200);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-secondary.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-secondary:hover {
    border-color: var(--orange-500);
    color: var(--orange-600);
}

/* Botão Ghost (link) */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--orange-500);
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.btn-ghost:hover {
    text-decoration: underline;
}

.btn-ghost:hover::after {
    margin-left: 12px;
}

/* Card Glass */
.card-glass {
    background-color: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 32px;
    transition: all 0.3s ease;
}

.card-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Card Sólido */
.card-solid {
    background-color: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 32px;
}

/* Badge/Pill */
.badge {
    display: inline-block;
    background-color: var(--orange-50);
    color: var(--orange-700);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}

/* Responsividade Base */
@media (max-width: 1024px) {
    .nav-btn-demo span {
        display: none;
    }
    
    .nav-btn-demo {
        padding: 10px !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-container {
        justify-content: space-between;
    }
}

/* Navbar & Mobile Menu Styles */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 72px;
    background-color: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--orange-500);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
}

.logo-brand {
    color: var(--slate-900);
    font-weight: 700;
}

.logo-suffix {
    color: var(--slate-400);
    font-weight: 400;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin-left: 48px;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-700);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange-500);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.nav-link-login {
    text-decoration: none;
    color: var(--slate-700);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-login:hover {
    color: var(--orange-500);
}

/* Hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--slate-900);
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

/* Mobile Menu Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--slate-900);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--slate-900);
    font-size: 24px;
    font-weight: 600;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-actions .btn-primary,
.mobile-nav-actions .btn-secondary {
    width: 100%;
    padding: 18px;
}

.mobile-nav-actions .nav-link-login {
    text-align: center;
    padding: 12px;
    font-size: 18px;
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section Styles */
.hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* Dot Grid Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background-image: radial-gradient(var(--slate-200) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.2;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Coluna Esquerda */
.hero-content {
    flex: 0 0 55%;
    max-width: 55%;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content h1 {
    font-size: 56px;
    color: var(--slate-900);
    margin-bottom: 24px;
    line-height: 1.1;
    position: relative;
}

.hero-content h1 .highlight {
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight svg {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    color: var(--orange-500);
    z-index: -1;
    transform: rotate(-2deg);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--slate-700);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
}

.bullet-icon {
    width: 20px;
    height: 20px;
    background-color: var(--emerald-50);
    color: var(--emerald-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Coluna Direita (Mockups) */
.hero-visual {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out forwards 0.3s;
    opacity: 0;
}

.mockups-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.mockups-container:hover {
    transform: rotate(0deg);
}

/* Glow atrás dos mockups */
.mockups-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--orange-500);
    filter: blur(100px);
    opacity: 0.08;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Mockup Celular */
.mockup-phone {
    position: relative;
    width: 260px;
    height: 520px;
    background: var(--white);
    border: 3px solid var(--slate-200);
    border-radius: 32px;
    padding: 12px;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    margin: 0 auto;
}

.mockup-phone-content {
    background: var(--slate-50);
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* UI Simulation */
.phone-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border-bottom: 1px solid var(--slate-200);
}

.phone-header-title {
    font-size: 14px;
    font-weight: 700;
}

.phone-search {
    margin: 12px 16px;
    height: 32px;
    background: var(--slate-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    font-size: 11px;
    color: var(--slate-400);
}

.phone-search::before {
    content: '🔍';
    font-size: 10px;
}

.phone-search::after {
    content: 'Buscar no cardápio...';
}

.phone-categories {
    padding: 0 16px;
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.phone-cat {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange-500);
    padding-bottom: 4px;
    border-bottom: 2px solid var(--orange-500);
}

.phone-products {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-product-card {
    background: white;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    border: 1px solid var(--slate-200);
}

.product-img {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange-100) 0%, var(--orange-50) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.product-img::after {
    content: '🍔';
}

.product-info {
    flex: 1;
    position: relative;
}

.product-badge-promo {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--orange-500);
    color: white;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-price {
    font-size: 11px;
    color: var(--orange-500);
    font-weight: 700;
}

.phone-cart-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: var(--orange-500);
    color: white;
    padding: 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

/* Mockup Painel (Atrás) */
.mockup-panel {
    position: absolute;
    width: 420px;
    height: 280px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    top: 40px;
    left: -80px;
    z-index: 1;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.panel-dots {
    display: flex;
    gap: 4px;
}

.panel-dot {
    width: 6px;
    height: 6px;
    border-radius: 30%;
    background: var(--slate-400);
}

.panel-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--slate-400);
}

.panel-kanban {
    display: flex;
    gap: 8px;
    flex: 1;
}

.kanban-col {
    flex: 1;
    background: var(--slate-50);
    border-radius: 8px;
    padding: 8px;
}

.kanban-col-title {
    font-size: 8px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--slate-400);
    text-transform: uppercase;
}

.kanban-card {
    min-height: 48px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    padding: 8px;
    border: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.kanban-card-id {
    font-size: 9px;
    font-weight: 700;
    color: var(--slate-900);
}

.kanban-card-type {
    font-size: 8px;
    font-weight: 500;
    color: var(--slate-500);
}

.kanban-col:nth-child(1) .kanban-card { border-left: 3px solid #ffedd5; } /* Orange sutil */
.kanban-col:nth-child(2) .kanban-card { border-left: 3px solid #dbeafe; } /* Blue sutil */
.kanban-col:nth-child(3) .kanban-card { border-left: 3px solid #dcfce7; } /* Green sutil */

.panel-notification {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--orange-50);
    border: 1px solid var(--orange-500);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: var(--orange-700);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
    animation: pulseAnimate 2s infinite;
}

@keyframes pulseAnimate {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--white);
    padding: 10px 18px;
    border: 1.5px solid rgba(249, 115, 22, 0.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-700);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-badge:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--orange-500);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsividade Hero */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }

    .mockups-container {
        transform: scale(0.85) rotate(2deg);
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-visual {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
    }

    .hero-bullets {
        align-items: center;
    }

    .mockup-panel {
        display: none;
    }

    .mockups-container {
        transform: scale(0.7) rotate(0deg);
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .faq-answer {
        font-size: 13px;
    }
}

/* FOOTER SECTION */
.footer {
    background: #0F172A; /* slate-900 */
    padding: 80px 0 32px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

/* Brand Column */
.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    width: 24px;
    height: 24px;
    background: var(--orange-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 14px;
}

.footer-brand .logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .logo-text span {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-item:hover {
    background: var(--orange-500);
    border-color: var(--orange-500);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Links Column */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.legal-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 16px;
    display: block;
}

/* Footer Bottom Bar */
.footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright, .made-with {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.made-with span {
    font-size: 14px;
    margin: 0 2px;
}

/* FLOAT WHATSAPP BUTTON */
.wa-float-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.wa-float-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: var(--white);
    color: var(--slate-700);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
}

.wa-float-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: none;
    text-decoration: none;
}

.wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.wa-float-btn:hover + .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.wa-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: #25D366;
    border: 2.5px solid var(--white);
    border-radius: 50%;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.3); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

@media (max-width: 768px) {
    .footer {
        padding: 60px 24px 32px;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: none; /* remove translation on mobile */
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
    
    .wa-float-container {
        bottom: 20px;
        right: 16px;
    }
    
    .wa-float-btn {
        width: 56px;
        height: 56px;
    }
    
    .wa-tooltip {
        display: none; /* Prevent tooltip issue on mobile taps */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .badge {
        font-size: 12px;
    }
}

/* Demo Bar Section Styles */
.demo-bar {
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Decorative background elements */
.demo-bar::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--orange-500) 0%, transparent 70%);
    opacity: 0.08;
    z-index: 1;
}

.demo-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.demo-bar-container {
    position: relative;
    z-index: 2;
}

.demo-icon-eye {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.demo-bar h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
}

.demo-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Demo Cards Grid */
.demo-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.demo-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.demo-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.demo-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.demo-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.demo-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-demo-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.demo-card:hover .btn-demo-outline {
    background: var(--white);
    color: var(--slate-900);
    border-color: var(--white);
}

.demo-footer-note {
    margin-top: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.demo-footer-note strong {
    color: rgba(255, 255, 255, 0.6);
}

/* Intersection Observer Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .demo-bar {
        padding: 60px 24px;
    }

    .demo-bar h2 {
        font-size: 26px;
    }

    .demo-cards {
        grid-template-columns: 1fr;
    }

    .demo-card {
        padding: 32px 24px;
    }
}

/* Economics Calculator Section */
.economy-section {
    background: var(--white);
    padding: 120px 0;
    text-align: center;
}

.economy-section h2 {
    font-size: 40px;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.economy-section h2 span {
    color: var(--red-600);
}

.economy-subtitle {
    font-size: 16px;
    color: var(--slate-500);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Calculator Card */
.calc-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.calc-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.calc-value-display {
    font-size: 48px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 8px;
    display: block;
}

/* Custom Range Slider */
.slider-container {
    padding: 20px 0 40px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 12px;
    color: var(--slate-400);
    font-weight: 600;
}

.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--slate-100);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
}

/* Thumbs */
.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 3.5px solid var(--orange-500);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 3.5px solid var(--orange-500);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.custom-range:hover::-webkit-slider-thumb {
    transform: scale(1.1);
}

/* Comparison Grid */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Card iFood */
.compare-card-ifood {
    background: #FEF2F2;
    border: 1.5px solid rgba(220, 38, 38, 0.15);
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.compare-badge-ifood {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--red-600);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

/* Card Menson */
.compare-card-menson {
    background: #ECFDF5;
    border: 1.5px solid rgba(5, 150, 105, 0.15);
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.compare-badge-menson {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--emerald-600);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.compare-item {
    margin-bottom: 20px;
}

.compare-item:last-child { margin-bottom: 0; }

.compare-label {
    font-size: 13px;
    color: var(--slate-500);
    display: block;
    margin-bottom: 4px;
}

.compare-value {
    font-size: 28px;
    font-weight: 800;
}

.compare-value-sub {
    font-size: 18px;
    font-weight: 700;
}

.compare-card-ifood .compare-value,
.compare-card-ifood .compare-value-sub { color: var(--red-600); }

.compare-card-ifood .compare-value-sub { color: #f87171; } /* red-400 */

.compare-card-menson .compare-value,
.compare-card-menson .compare-value-sub { color: var(--emerald-600); }

.compare-card-menson .compare-value-sub { color: #34d399; } /* emerald-400 */

/* Savings Box */
.savings-box {
    margin-top: 28px;
    background: linear-gradient(135deg, #ECFDF5 0%, #FFFFFF 100%);
    border: 1.5px solid rgba(5, 150, 105, 0.2);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.savings-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.savings-icon { font-size: 32px; }

.savings-label {
    font-size: 14px;
    color: var(--slate-500);
    display: block;
}

.savings-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--emerald-600);
    display: block;
}

.savings-annual {
    font-size: 15px;
    color: var(--slate-600);
    font-weight: 500;
}

/* ROI Badge */
.roi-box {
    background: #FFF7ED; /* orange-50 */
    padding: 14px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--orange-700);
    font-size: 14px;
    font-weight: 700;
}

.roi-icon { font-size: 18px; }

/* Utils */
.btn-center {
    display: block;
    margin: 32px auto 0;
    width: fit-content;
}

@media (max-width: 768px) {
    .economy-section {
        padding: 80px 24px;
    }

    .economy-section h2 {
        font-size: 30px;
    }

    .calc-card {
        padding: 32px 24px;
    }

    .calc-value-display {
        font-size: 36px;
    }

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

    .savings-box {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .savings-info {
        flex-direction: column;
        gap: 12px;
    }

    .roi-box {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .btn-center {
        width: 100%;
    }
}

/* How it Works Section */
.how-it-works-section {
    background: var(--slate-50);
    padding: 120px 0;
    text-align: center;
}

.how-it-works-section h2 span {
    color: var(--orange-500);
}

.how-it-works-subtitle {
    font-size: 16px;
    color: var(--slate-500);
    max-width: 550px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Connector Line (Desktop) */
.steps-connector-line {
    position: absolute;
    top: 140px; /* Alinhado com o centro dos ícones */
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed var(--slate-200);
    z-index: 0;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--orange-200);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--orange-500);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.step-icon-box {
    width: 80px;
    height: 80px;
    background: var(--orange-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--orange-500);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.7;
    max-width: 280px;
}

/* Footer elements */
.setup-time-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    padding: 12px 24px;
    border-radius: 999px;
    margin-top: 48px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-600);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.setup-time-pill strong {
    color: var(--orange-600);
    font-weight: 700;
}

.btn-ghost-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-500);
    font-size: 15px;
    font-weight: 600;
    margin: 24px auto 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost-demo:hover {
    text-decoration: underline;
    transform: translateX(4px);
}

/* Mobile Connectors */
.step-arrow-mobile {
    display: none;
    color: var(--slate-300);
    font-size: 24px;
    margin: 12px 0;
}

@media (max-width: 1024px) {
    .steps-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 80px 24px;
    }

    .steps-connector-line {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .step-arrow-mobile {
        display: block;
    }
}

/* Features Showcase Section */
.features-section {
    background: var(--white);
    padding: 120px 0;
}

.features-subtitle {
    font-size: 16px;
    color: var(--slate-500);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.6;
}

/* Tabs System */
.tabs-container {
    background: var(--slate-100);
    padding: 6px;
    border-radius: 14px;
    max-width: 900px;
    margin: 0 auto 48px;
    display: flex;
    gap: 4px;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.tabs-container::-webkit-scrollbar {
    display: none;
}
.tabs-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.tab-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-500);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    background: transparent;
    user-select: none;
}

.tab-btn:hover {
    color: var(--slate-700);
}

.tab-btn.active {
    background: var(--white);
    color: var(--slate-900);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Tab Content */
.features-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 48px;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.tab-panel.active {
    display: grid;
    opacity: 1;
}

/* Left Content */
.panel-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-icon-box {
    width: 48px;
    height: 48px;
    background: var(--orange-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.panel-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
}

.panel-info p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 8px;
}

.panel-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.panel-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--slate-600);
    font-weight: 500;
}

.panel-bullet svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

.btn-ghost-panel {
    color: var(--orange-500);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.btn-ghost-panel:hover {
    text-decoration: underline;
    transform: translateX(4px);
}

/* Right Visual Area */
.panel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

/* Shared Browser Frame */
.browser-frame {
    width: 100%;
    max-width: 380px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.browser-header {
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
    padding: 8px 12px;
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E2E8F0;
}

/* Tab-Specific Visuals */

/* 1. Cardápio Digital (Phone) */
.phone-mockup-tab {
    width: 240px;
    height: 400px;
    background: var(--white);
    border: 8px solid var(--slate-200);
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.tab-phone-header {
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--slate-100);
}

.tab-phone-promo {
    background: #FFF7ED;
    padding: 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange-600);
    margin: 12px 0;
    text-align: center;
}

.tab-phone-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-product-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tab-product-img {
    width: 50px;
    height: 50px;
    background: var(--slate-100);
    border-radius: 8px;
}

.tab-product-text {
    flex: 1;
}

.tab-product-name {
    height: 8px;
    width: 60%;
    background: var(--slate-200);
    border-radius: 4px;
    margin-bottom: 4px;
}

.tab-product-price {
    height: 8px;
    width: 30%;
    background: var(--orange-200);
    border-radius: 4px;
}

/* 2. Kanban Visual */
.kanban-visual {
    padding: 16px;
    display: flex;
    gap: 12px;
}

.kanban-tab-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kanban-tab-col-title {
    font-size: 9px;
    font-weight: 700;
    color: var(--slate-400);
    margin-bottom: 4px;
}

.kanban-tab-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 6px;
    padding: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.kanban-tab-card-line {
    height: 4px;
    background: var(--slate-100);
    border-radius: 2px;
    margin-bottom: 4px;
}

/* 3. WhatsApp Visual */
.wa-visual {
    width: 240px;
    height: 380px;
    background: #E5DDD5;
    border: 8px solid var(--slate-200);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wa-header {
    background: #075E54;
    padding: 16px;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.wa-messages {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-msg {
    max-width: 85%;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 10px;
    position: relative;
    line-height: 1.4;
}

.wa-msg::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0; height: 0;
    border: 6px solid transparent;
}

.wa-msg-in {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-msg-in::after {
    left: -10px;
    border-right-color: white;
    border-top-color: white;
}

/* 4. Payments Visual */
.pay-visual {
    padding: 24px;
}

.pay-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-100);
}

.pay-toggle {
    width: 32px;
    height: 18px;
    background: #10B981;
    border-radius: 999px;
    position: relative;
}

.pay-toggle::after {
    content: '';
    position: absolute;
    right: 3px;
    top: 3px;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.pay-toggle.off {
    background: #CBD5E1;
}

.pay-toggle.off::after {
    right: auto;
    left: 3px;
}

/* 5. Reports Visual */
.report-visual {
    padding: 24px;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.report-stat-box {
    background: var(--slate-50);
    padding: 8px;
    border-radius: 6px;
}

.report-stat-val {
    font-size: 10px;
    font-weight: 700;
    color: var(--slate-900);
    display: block;
}

.report-stat-label {
    font-size: 7px;
    color: var(--slate-400);
}

.report-chart {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 10px;
    background: var(--slate-50);
    border-radius: 8px;
}

.chart-bar {
    flex: 1;
    background: var(--orange-500);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

/* 6. Import Visual */
.import-visual {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.import-flow {
    display: flex;
    align-items: center;
    gap: 16px;
}

.import-logo {
    width: 48px;
    height: 48px;
    background: #DC2626;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.import-logo.menson {
    background: var(--orange-500);
}

/* 7. Controls Visual */
.control-visual {
    padding: 24px;
}

.control-panic {
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 1024px) {
    .tab-panel {
        gap: 32px;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 24px;
    }

    .tab-panel {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }

    .panel-info {
        align-items: center;
    }

    .panel-bullets {
        text-align: left;
    }

    .features-content-wrapper {
        min-height: auto;
    }

    .tabs-container {
        justify-content: flex-start;
        padding: 6px 12px;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--slate-50);
    padding: 120px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--slate-500);
    max-width: 650px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1050px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* Featured Card Styling */
.pricing-card.featured {
    border: 2px solid var(--orange-500);
    box-shadow: 0 8px 40px rgba(249,115,22,0.12);
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 50px rgba(249,115,22,0.18);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-500);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(249,115,22,0.3);
    white-space: nowrap;
}

/* Card Content */
.plan-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
    display: block;
}

.plan-desc {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 28px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.4;
    font-weight: 500;
}

.plan-feature-item svg {
    color: var(--emerald-500);
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-feature-item.highlight {
    font-weight: 600;
    color: var(--orange-600);
}

/* Price block */
.plan-divider {
    height: 1px;
    background: var(--slate-100);
    margin-bottom: 24px;
    border: none;
}

.price-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.setup-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 20px;
    display: block;
}

.monthly-price-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--slate-500);
}

.amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--slate-900);
}

.period {
    font-size: 16px;
    font-weight: 500;
    color: var(--slate-400);
}

.no-tax-info {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange-600);
    margin-bottom: 28px;
    display: block;
}

/* Plan Actions */
.btn-plan {
    width: 100%;
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-plan-outline {
    border: 2px solid var(--slate-200);
    color: var(--slate-700);
    background: transparent;
}

.btn-plan-outline:hover {
    border-color: var(--orange-500);
    color: var(--orange-600);
    background: var(--orange-50);
}

.btn-plan-primary {
    background: var(--orange-500);
    color: var(--white);
    border: 2px solid var(--orange-500);
    box-shadow: 0 4px 12px rgba(249,115,22,0.2);
}

.btn-plan-primary:hover {
    background: var(--orange-600);
    border-color: var(--orange-600);
    box-shadow: 0 6px 16px rgba(249,115,22,0.3);
}

/* Context Card */
.pricing-context {
    margin: 48px auto 0;
    max-width: 800px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
}

.context-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 12px;
}

.context-text {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
}

.context-text .red {
    color: var(--red-600);
    font-weight: 700;
}

.context-text .emerald {
    color: var(--emerald-600);
    font-weight: 700;
}

.context-highlight {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange-600);
}

/* Final CTA */
.pricing-wa-link {
    margin-top: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-500);
}

.pricing-wa-link a {
    color: var(--orange-500);
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

.pricing-wa-link a:hover {
    text-decoration: underline;
}

@media (min-width: 1025px) {
    .pricing-card.featured {
        transform: scale(1.03);
        z-index: 2;
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.03) translateY(-6px);
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        max-width: 900px;
        gap: 16px;
    }

    .pricing-card {
        padding: 32px 24px;
    }
}

/* Objections Section */
.objections-section {
    background: var(--slate-50);
    padding: 120px 0;
}

.objections-header {
    text-align: center;
    margin-bottom: 64px;
}

.objections-subtitle {
    font-size: 16px;
    color: var(--slate-500);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 950px;
    margin: 0 auto;
}

.objection-card {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.objection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.objection-card:nth-child(odd)::before { background: #FB923C; /* orange-400 */ }
.objection-card:nth-child(even)::before { background: #FDBA74; /* orange-300 */ }

.objection-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border-color: var(--slate-300);
}

.objection-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.q-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange-50);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.objection-q h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-800);
    line-height: 1.4;
    margin: 0;
}

.objection-divider {
    height: 1px;
    background: var(--slate-100);
    margin-bottom: 16px;
}

.objection-a {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.7;
    margin: 0;
}

.objection-a b {
    font-weight: 700;
    color: var(--slate-800);
}

.objection-a .code-url {
    background: var(--slate-50);
    color: var(--orange-500);
    font-weight: 600;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.objection-a .success-text {
    font-weight: 700;
    color: var(--emerald-600);
}

.objection-a .error-text {
    font-weight: 700;
    color: var(--red-600);
}

.objection-a .warning-text {
    font-weight: 700;
    color: #F97316; /* orange-500 literal for clarity */
}

/* WA Bottom Pill */
.objections-wa-pill-container {
    text-align: center;
    margin-top: 48px;
}

.objections-wa-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    padding: 16px 32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.objections-wa-pill:hover {
    border-color: #FDBA74; /* orange-300 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.objections-wa-pill span {
    font-size: 14px;
    color: var(--slate-500);
}

.objections-wa-pill strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--orange-500);
}

@media (max-width: 1024px) {
    .objection-card { padding: 28px; }
}

@media (max-width: 768px) {
    .objections-section { padding: 80px 24px; }
    .objections-grid { grid-template-columns: 1fr; }
    .objection-card { padding: 24px; max-width: 500px; margin: 0 auto; }
    .objections-wa-pill { padding: 14px 24px; }
}

/* Animations stagger for objections */
.reveal-stagger-objection:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger-objection:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger-objection:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger-objection:nth-child(4) { transition-delay: 0.25s; }
.reveal-stagger-objection:nth-child(5) { transition-delay: 0.3s; }
.reveal-stagger-objection:nth-child(6) { transition-delay: 0.35s; }
.reveal-stagger-objection:nth-child(7) { transition-delay: 0.4s; }
.reveal-stagger-objection:nth-child(8) { transition-delay: 0.45s; }

/* Setup Justification Section */
.setup-section {
    background: var(--white);
    padding: 120px 0;
}

.setup-header {
    text-align: center;
    margin-bottom: 64px;
}

.setup-subtitle {
    font-size: 16px;
    color: var(--slate-500);
    max-width: 650px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* Timeline Visual */
.timeline-card {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    padding: 56px 48px;
    max-width: 950px;
    margin: 0 auto 56px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, var(--slate-200), var(--orange-300), var(--emerald-400));
    border-radius: 999px;
    z-index: 0;
}

.timeline-point {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    text-align: center;
}

.timeline-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--slate-200);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.timeline-point.active-roi .timeline-circle {
    background: var(--orange-50);
    border-color: var(--orange-400);
    animation: pulse-roi 2s infinite;
}

.timeline-point.success .timeline-circle {
    background: var(--emerald-50);
    border-color: var(--emerald-400);
}

.timeline-point.complete .timeline-circle {
    background: var(--emerald-100);
    border-color: var(--emerald-500);
}

@keyframes pulse-roi {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.timeline-point .tl-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
    margin-top: 16px;
}

.timeline-point .tl-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--slate-800);
    margin-top: 4px;
}

.timeline-point .tl-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--slate-900);
    margin-top: 2px;
}

.timeline-point .tl-desc {
    font-size: 12px;
    color: var(--slate-400);
    margin-top: 2px;
}

/* Stats CardsRow */
.setup-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 950px;
    margin: 0 auto 48px;
}

.stats-card {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stats-card.negative { background: rgba(254, 242, 242, 0.5); border-color: rgba(220, 38, 38, 0.1); }
.stats-card.positive { background: rgba(236, 253, 245, 0.5); border-color: rgba(5, 150, 105, 0.1); }
.stats-card.highlight { background: rgba(255, 247, 237, 0.5); border-color: rgba(249, 115, 22, 0.1); }

.stats-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.stats-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-400); margin-bottom: 8px; display: block; }
.stats-value { font-size: 24px; font-weight: 800; display: block; margin-bottom: 4px; }
.stats-desc { font-size: 13px; color: var(--slate-400); }

.stats-card.negative .stats-value { color: var(--red-600); }
.stats-card.positive .stats-value { color: var(--emerald-600); }
.stats-card.highlight .stats-value { color: var(--orange-500); }

/* Setup CTA */
.setup-cta-box {
    text-align: center;
    margin-top: 16px;
}

.btn-setup-cta {
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 700;
}

.setup-cta-desc {
    font-size: 13px;
    color: var(--slate-400);
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .setup-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .setup-section {
        padding: 80px 24px;
    }

    .timeline-card {
        padding: 40px 24px;
    }

    .timeline-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;
        width: 3px;
        height: 100%;
        background: linear-gradient(to bottom, var(--slate-200), var(--orange-300), var(--emerald-400));
    }

    .timeline-point {
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .timeline-circle {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .timeline-point .tl-label {
        margin-top: 0;
    }
}

/* CTA FINAL SECTION */
.cta-final-section {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%); /* slate-900 to 800ish */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Background Glows */
.cta-final-section::before,
.cta-final-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.cta-final-section::before {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.08); /* orange-500 opacity 0.08 */
}

.cta-final-section::after {
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.05); /* orange-500 opacity 0.05 */
}

.cta-final-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px); /* Increased size and opacity for better visibility on dark */
    background-size: 32px 32px;
    opacity: 0.2; /* Doubled relative to request for visibility */
    z-index: 0;
    pointer-events: none;
}

.cta-final-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.2));
    animation: pulse-cta 3s infinite;
}

@keyframes pulse-cta {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-final-headline {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-headline .underline-roi {
    position: relative;
    display: inline-block;
}

.cta-final-headline .underline-roi::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange-500);
    border-radius: 99px;
}

.cta-final-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-final-subtitle strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Mini Statistics Cards Row */
.cta-final-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.mini-stat-card {
    border-radius: 14px;
    padding: 24px 28px;
    min-width: 180px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mini-stat-card:hover {
    transform: translateY(-4px);
}

.mini-stat-card.negative-red {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.mini-stat-card.negative-red-strong {
    background: rgba(239, 68, 68, 0.16);
    border: 1px solid rgba(239, 68, 68, 0.28);
}

.mini-stat-card.positive-emerald {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.stat-card-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
    display: block;
}

.stat-card-value {
    font-size: 28px;
    font-weight: 800;
    display: block;
}

.negative-red .stat-card-value,
.negative-red-strong .stat-card-value {
    color: #EF4444; /* red-500 literal for contrast on dark */
}

.positive-emerald .stat-card-value {
    color: #34D399; /* emerald-400 literal for contrast on dark */
}

.stat-card-emoji { font-size: 18px; margin-top: 4px; display: block; }

.stat-card-period {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* CTA Final Actions */
.cta-final-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-cta-final-primary {
    background: var(--orange-500);
    color: var(--white);
    padding: 20px 48px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-cta-final-primary:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.35);
}

.btn-cta-final-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-final-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255,255,255,0.4);
}

.cta-final-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin-top: 16px;
}

.cta-final-wa-link strong {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-final-wa-link:hover strong {
    color: var(--orange-400);
}

@media (max-width: 1024px) {
    .cta-final-headline { font-size: 32px; }
}

@media (max-width: 768px) {
    .cta-final-section { padding: 80px 24px; }
    .cta-final-headline { font-size: 26px; }
    
    .cta-final-stats {
        flex-wrap: wrap;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mini-stat-card {
        flex: 1 1 calc(50% - 16px);
        min-width: 140px;
        padding: 20px 16px;
    }
    
    .mini-stat-card.positive-emerald {
        flex: 1 1 100%;
    }
    
    .btn-cta-final-primary,
    .btn-cta-final-outline {
        width: 100%;
        justify-content: center;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 120px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.faq-item {
    border-bottom: 1px solid var(--slate-100);
    transition: background 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: var(--slate-50);
}

.faq-item-header {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-item-header .question-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FB923C; /* orange-400 */
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.faq-item-header h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-800);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--slate-400);
}

.faq-item.active {
    background: var(--slate-50);
}

.faq-item.active .faq-dot {
    background: #F97316; /* orange-500 */
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-item-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0 32px 0 54px; /* Aligned with text after dot */
}

.faq-item.active .faq-item-content {
    max-height: 500px; /* Fallback, but JS will set it precisely if needed */
    opacity: 1;
    padding-bottom: 24px;
    padding-top: 4px;
}

.faq-answer {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.7;
    margin: 0;
}

.faq-answer mark {
    background: var(--slate-100);
    color: #EA580C; /* orange-600 */
    background: var(--slate-50);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 600;
}

/* FAQ Help Pill */
.faq-help-container {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.faq-help-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-700);
}

.faq-help-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--orange-500);
    text-decoration: none;
}

.faq-help-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 24px;
    }

    .faq-container {
        border-radius: 16px;
    }

    .faq-item-header {
        padding: 20px;
    }

    .faq-item-header h4 {
        font-size: 14px;
    }

    .faq-item-content {
        padding: 0 20px 0 42px;
    }

    .faq-item.active .faq-item-content {
        padding-bottom: 20px;
    }

    .faq-answer {
        font-size: 13px;
    }
}
