:root {
    /* === LOGO PALETTE === */
    --primary: #3CBCA3;
    /* Teal Arrow - Main Actions */
    --primary-dark: #2a9d85;
    --secondary: #F08C4A;
    /* Orange Arrow - Highlights */
    --accent: #EBC857;
    /* Yellow Arrow - Icons/Warnings */

    /* === DARK SAAS BASE === */
    --bg-deep: #0B0E14;
    /* Deep Navy-Black (Ring Color) */
    --bg-secondary: #0f131a;
    /* Slightly lighter for sections */
    --bg-card: #151b23;
    /* Card Background */

    /* === TEXT === */
    --text-main: #f1f5f9;
    /* Off-white for readability */
    --text-muted: #94a3b8;
    /* Slate 400 for secondary text */

    /* === BORDERS & UI === */
    --border-color: #1e293b;
    /* Slate 800 */
    --glass-bg: rgba(11, 14, 20, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    /* Subtle white border */

    /* === SHADOWS (Dark Mode) === */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5), 0 2px 4px -2px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5), 0 8px 10px -6px rgb(0 0 0 / 0.5);

    /* === WHATSAPP FLOW (Dark Mode) === */
    --flow-bg: #151b23;
    --flow-header: #1e293b;
    --flow-input-bg: #0B0E14;
    --flow-border: #2D3748;
    --whatsapp-btn: #25D366;
    /* Keep WA Brand Green */
    --whatsapp-green: #25D366;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    min-height: 100vh;
}

/* Skip Link para Accesibilidad */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 4px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Performance: Optimización de Animaciones */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === FONDO CÓSMICO (Removed) === */

/* === HEADER === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Desktop Navigation Links */
.desktop-nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--primary);
}

.btn-login-nav {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--bg-deep);
    transition: 0.3s;
}

.btn-login-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-text {
    display: none !important;
}

.desktop-text {
    display: inline !important;
}

/* ── Hamburger button ──────────────────────────── */
.nav-hamburger {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s;
}

.ham-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}

/* X state */
.nav-hamburger.open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .ham-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ─────────────────────────────── */
.nav-mobile-menu {
    display: none;
}

/* Forzar ocultación en desktop — evita sobrescritura de media queries */
@media (min-width: 769px) {
    .nav-hamburger  { display: none !important; }
    .nav-mobile-menu { display: none !important; }
}

.footer-yt {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-yt:hover { color: #ff3d3d; }

/* === HERO === */
.hero {
    padding: 130px 0 40px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
    /* Gradient Text for Dark Mode */
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 300;
}

/* Badge de Integración */
.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.plus-sign {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

.app-icon {
    width: 40px;
    height: 40px;
    /* Remove drop shadow or make it subtle */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

/* ... (Flow styles are okay via variables) ... */

.btn-google-connect {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    color: var(--text-main);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: 0.3s;
    margin-top: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.btn-google-connect:hover {
    transform: translateY(-3px);
    background: var(--bg-secondary);
    border-color: var(--primary);
}

/* ... */

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: var(--shadow-sm);
}

.faq-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--accent);
    /* Yellow Highlight */
}

/* ... */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 25px;
    border-radius: 20px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    /* Teal Highlight */
    box-shadow: var(--shadow-lg);
    background: var(--bg-secondary);
}

/* ... */

.tag {
    background: var(--bg-card);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    transition: 0.3s;
    box-shadow: var(--shadow-sm);
}

.tag:hover {
    background: var(--bg-secondary);
    border-color: var(--secondary);
    /* Orange Highlight */
    color: var(--secondary);
    cursor: default;
}

/* === VISUAL DEMO (Restored) === */
.visual-demo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto 30px;
}

.flow-card {
    width: 340px;
    background: var(--flow-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: transform 0.3s ease;
}

.flow-card:hover {
    transform: scale(1.02);
}

.flow-header {
    background: var(--flow-header);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.flow-progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #00a884;
    width: 35%;
}

.flow-body {
    padding: 24px 16px;
    background: var(--flow-bg);
}

.flow-title {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.flow-greeting {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.flow-input-group {
    background: var(--flow-input-bg);
    border: 1px solid var(--flow-border);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 12px;
    position: relative;
}

.flow-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 2px;
}

.flow-value {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flow-icon-x {
    font-size: 12px;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.5;
}

.flow-availability {
    color: var(--text-main);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0 24px 4px;
}

.checkbox-mock {
    width: 20px;
    height: 20px;
    background: #00a884;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-mock::after {
    content: '✓';
    font-size: 14px;
    color: white;
    font-weight: bold;
}

.flow-btn {
    background: var(--whatsapp-btn);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.demo-caption {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    opacity: 0.8;
}

.link-flows {
    color: #25D366;
    text-decoration: underline;
    transition: 0.2s;
    font-size: 0.9rem;
}

.link-flows:hover {
    color: white;
}

/* === FEATURES GRID (4 COLUMNAS) === */
.features {
    padding: 60px 0;
}

.faq-section {
    margin-top: 40px;
    padding: 0 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    gap: 15px;
    text-align: left;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* === ICONS & CARD CONTENT === */
.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.icon-box.green-dark {
    background: rgba(45, 212, 191, 0.1);
}

.icon-box.blue {
    background: rgba(66, 133, 244, 0.12);
}

.icon-box.yellow {
    background: rgba(239, 68, 68, 0.1);
}

.icon-box.purple {
    background: rgba(37, 211, 102, 0.1);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 700;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.highlight-text {
    color: var(--secondary);
    font-weight: 600;
}

/* === COVERAGE === */
.coverage-section {
    text-align: center;
    margin: 80px 0;
    padding: 0 20px;
}

.coverage-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.flags-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.flag-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
}

.flag-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.coming-soon-text {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 15px;
}

/* === CLIENTES / NICHO === */
.pricing-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 20px;
    text-align: center;
}

.niche-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tag {
    background: var(--bg-card);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    transition: 0.3s;
    box-shadow: var(--shadow-sm);
}

.tag:hover {
    background: var(--bg-secondary);
    border-color: var(--secondary);
    color: var(--secondary);
    cursor: default;
}

/* === SALES === */
.sales-section {
    text-align: center;
    padding: 40px 0 100px;
    /* Ensure text is visible if it was white */
}

.sales-section h2 {
    color: var(--text-main) !important;
}

.btn-sales {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366 !important;
    color: white;
    text-decoration: none;
    padding: 22px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse-green 2s infinite;
    transition: transform 0.3s;
}

.btn-sales:hover {
    transform: scale(1.05);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* === SCROLL TO TOP BUTTON === */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a9d85 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(60, 188, 163, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(60, 188, 163, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* === FOOTER === */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.footer-links a {
    color: var(--text-muted);
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.9rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === INTERACTIVE LINK SECTION === */
.interactive-link-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-secondary) 100%);
}

.interactive-link-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.country-selector-wrapper {
    margin-bottom: 25px;
}

.country-select {
    appearance: none;
    background-color: var(--bg-secondary);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 12px 40px 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233CBCA3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.country-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(60, 188, 163, 0.2);
}

.dynamic-link-display {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #0f131a;
    padding: 20px 25px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin-top: 10px;
}

.link-part {
    position: relative;
    margin: 5px 0;
}

.static-part {
    color: #7b8b9f;
    /* Gris tenue */
}

#dynamicPrefix {
    transition: opacity 0.3s ease;
}

.dynamic-part {
    color: var(--primary);
    /* Verde inicial, puede ser cambiable */
}

.user-code {
    color: var(--primary);
    /* Verde brillante */
    font-weight: bold;
    text-shadow: 0 0 10px rgba(60, 188, 163, 0.3);
}

/* Micro Copy Bubbles */
.micro-copy-bubble {
    position: absolute;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 6px 10px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
}

.micro-copy-bubble.bottom {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
}

.micro-copy-bubble.top {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 15px;
}

.accent-text {
    color: var(--secondary);
    /* Naranja */
    font-weight: 600;
}

.micro-arrow-up {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--border-color);
}

.micro-arrow-up::after {
    content: '';
    position: absolute;
    top: 1px;
    left: -5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--bg-secondary);
}

.micro-arrow-down {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--border-color);
}

.micro-arrow-down::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: -5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--bg-secondary);
}

@media (max-width: 600px) {
    .dynamic-link-display {
        font-size: 1rem;
        padding: 20px 10px;
        flex-direction: column;
    }

    .micro-copy-bubble {
        position: static;
        transform: none;
        margin: 5px 0 10px 0;
        display: block;
        text-align: center;
    }

    .micro-arrow-up,
    .micro-arrow-down {
        display: none;
    }

    .country-select {
        max-width: 100%;
    }
}

/* === PRICING CALCULATOR === */
.pricing-calculator {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-secondary) 100%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.calc-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

/* Toggle País */
.country-toggle {
    display: flex;
    background: var(--bg-deep);
    border-radius: 12px;
    padding: 6px;
    border: 1px solid var(--border-color);
}

.toggle-btn {
    flex: 1;
    padding: 12px 0;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: var(--bg-card);
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
}

/* Selector Profesionales */
.pro-selector {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pro-label {
    display: flex;
    flex-direction: column;
}

.pro-label span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.pro-label .pro-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pro-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-deep);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 5px;
    max-width: 200px;
}

.stepper-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.stepper-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.stepper-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    width: 50px;
    text-align: center;
    transition: color 0.3s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Tarjeta Resultados */
.pricing-card {
    background: var(--bg-deep);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.02);
}

.price-header h3 {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 15px;
}

.price-display {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 20px;
}

.price-display .currency {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 8px;
}

.price-display .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -1.5px;
    transition: color 0.3s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.price-display .period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.limit-display {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.limit-display strong {
    color: var(--secondary);
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s ease;
    display: inline-block;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.benefits-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.calc-btn {
    width: 100%;
    margin-top: auto;
}

/* Responsive Calculator */
@media (max-width: 850px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {

    header nav.container {
        flex-wrap: wrap;
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .desktop-nav-links {
        display: none;
    }

    .nav-demo-btn {
        display: none !important;
    }

    /* Acceso Clientes — texto compacto en mobile, sin caja */
    .nav-login-link {
        background: transparent !important;
        border: none !important;
        padding: 8px 4px !important;
        gap: 0 !important;
        font-size: 0.78rem !important;
        color: rgba(255,255,255,0.5) !important;
        white-space: nowrap;
    }

    .nav-login-link svg {
        display: none;
    }

    .nav-login-link .client-text-hide {
        display: block !important;
        font-size: 0.78rem;
    }

    /* Ocultar "Probar Gratis" del top bar — está en el drawer */
    .nav-right .btn-sales {
        display: none !important;
    }

    .nav-hamburger {
        display: flex !important;
    }

    /* Reduce gap en mobile para que quepan bien logo + Acceso + hamburger */
    .nav-wrapper {
        gap: 0;
    }

    .nav-right {
        gap: 6px !important;
    }

    /* Mobile drawer */
    .nav-mobile-menu {
        display: flex !important;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        background: rgba(2, 4, 10, 0.98);
        border-top: 1px solid rgba(255,255,255,0.06);
        transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1), padding 0.32s ease;
        padding: 0 20px;
    }

    .nav-mobile-menu.open {
        max-height: 460px;
        padding: 12px 20px 20px;
    }

    .nav-mob-link {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 0;
        color: rgba(255,255,255,0.72);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        transition: color 0.2s;
    }

    .nav-mob-link:last-of-type { border-bottom: none; }
    .nav-mob-link:active { color: #fff; }

    .nav-mob-num {
        font-size: 0.65rem;
        font-weight: 700;
        color: rgba(255,255,255,0.2);
        letter-spacing: 0.06em;
        min-width: 20px;
    }

    .nav-mob-plans {
        color: #25d366;
    }

    .nav-mob-plans .nav-mob-num { color: rgba(37,211,102,0.45); }

    .nav-mob-divider {
        height: 1px;
        background: rgba(255,255,255,0.06);
        margin: 8px 0;
    }

    .nav-mob-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 13px;
        margin-top: 6px;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        box-sizing: border-box;
        width: 100%;
    }

    .nav-mob-cta-primary {
        background: #25d366;
        color: #fff;
    }

    .nav-mob-cta-wa {
        background: rgba(37,211,102,0.07);
        color: #25d366;
        border: 1px solid rgba(37,211,102,0.28);
    }

    /* Hero Section */
    .hero {
        padding: 110px 0 30px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Navigation */
    .brand span {
        font-size: 1.1rem;
    }

    .btn-login-nav {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-height: 44px;
        /* Touch target WCAG */
        display: flex;
        align-items: center;
    }

    .nav-right .btn-sales {
        width: auto;
        min-height: 44px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .client-text-hide {
        display: none;
    }

    .mobile-text {
        display: inline !important;
    }

    .desktop-text {
        display: none !important;
    }

    .brand span {
        display: block;
        font-size: 1.05rem;
    }


    /* Integration Badge */
    .integration-badge {
        gap: 12px;
        padding: 10px 20px;
        flex-wrap: wrap;
    }

    /* Visual Demo */
    .visual-demo-container {
        transform: scale(0.9);
        margin: 20px auto;
        padding: 0 10px;
    }

    .flow-card {
        width: 100%;
        max-width: 340px;
    }

    /* Banner personalizable - responsive */
    .flow-header+div {
        height: 120px !important;
    }

    /* Buttons - Touch Targets */
    .btn-google-connect,
    .btn-sales {
        width: 90%;
        justify-content: center;
        min-height: 56px;
        /* Mejor touch target */
        padding: 16px 35px;
        font-size: 1.05rem;
    }

    /* Grid */
    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 25px 20px;
    }

    /* Coverage */
    .flags-container {
        gap: 8px;
        padding: 0 10px;
    }

    .flag-pill {
        font-size: 0.9rem;
        padding: 10px 16px;
        min-height: 44px;
        /* Touch target */
    }

    /* FAQ */
    .faq-section {
        padding: 0 15px;
    }

    .faq-card {
        padding: 18px;
    }

    /* Niche Tags */
    .niche-tags {
        gap: 8px;
        padding: 0 10px;
    }

    .tag {
        padding: 10px 16px;
        min-height: 44px;
        /* Touch target */
        display: flex;
        align-items: center;
    }

    /* Spacing */
    .features {
        padding: 40px 0;
    }

    .pricing-section {
        padding: 60px 15px;
    }

    .sales-section {
        padding: 40px 15px 80px;
    }
}

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

    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .flow-card {
        transform: scale(0.95);
    }

    /* Banner más pequeño en móviles pequeños */
    .flow-header+div {
        height: 100px !important;
    }

    .flow-header+div>div>div:first-child {
        font-size: 22px !important;
    }

    .btn-google-connect,
    .btn-sales {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

/* === NEW OPTIMIZED CLASSES === */
.flow-col-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.flow-step-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.flow-step-title.muted {
    color: var(--text-muted);
}

.flow-step-title.primary {
    color: var(--primary);
}

.flow-step-title.green {
    color: #4caf50;
}

.flow-header-dark {
    background: #202c33;
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 16px 16px 0 0;
}

.flow-avatar-gradient {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.flow-header-info {
    flex: 1;
}

.flow-header-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

.flow-header-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.flow-body-dark {
    padding: 20px;
    background: #0B0E14;
    min-height: 480px;
    position: relative;
    background-image: radial-gradient(#1e293b 1px, transparent 1px);
    background-size: 20px 20px;
}

.flow-body-dark.h-540 {
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chat-row-right {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.chat-bubble-right {
    background: #005c4b;
    color: #e9edef;
    padding: 8px 12px;
    border-radius: 8px 0 8px 8px;
    font-size: 0.9rem;
    max-width: 90%;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.chat-time-right {
    text-align: right;
    font-size: 0.65rem;
    color: #8696a0;
    margin-top: 4px;
}

.chat-tick {
    color: #53bdeb;
}

.chat-bubble-left {
    background: #1f2937;
    padding: 10px 14px;
    border-radius: 0 16px 16px 16px;
    max-width: 85%;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.chat-bubble-left.mb-20 {
    margin-bottom: 20px;
}

.chat-text {
    color: var(--text-main);
    font-size: 0.95rem;
}

.chat-time-left {
    text-align: right;
    font-size: 0.7rem;
    color: #8696a0;
    margin-top: 5px;
}

.menu-buttons-cols {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.menu-btn {
    background: #202c33;
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.menu-btn.green {
    color: #00a884;
}

.menu-btn.red {
    color: #ef4444;
}

/* WhatsApp List Message UI */
.wa-list-msg {
    max-width: 90%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wa-list-bubble {
    background: #1f2937;
    padding: 10px 14px;
    border-radius: 0 16px 4px 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wa-list-quote {
    border-left: 3px solid #00a884;
    padding-left: 10px;
    margin: 15px 0;
    color: #8696a0;
    font-size: 0.95rem;
}

.wa-list-btn {
    background: #1f2937;
    padding: 12px 14px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.95rem;
    color: #aebac1;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
}

.wa-list-btn:last-child {
    border-radius: 4px 4px 16px 16px;
}

.wa-list-btn:hover {
    background: #2a3749;
}

.wa-list-btn.primary {
    color: #00a884;
}

.bounce-pointer {
    position: absolute;
    bottom: 30px;
    right: -20px;
    font-size: 2rem;
    animation: bounce-right 2s infinite;
    display: none;
}

@keyframes bounce-right {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.whatsapp-header {
    position: relative;
    padding: 12px 16px;
    background: #202c33;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px 16px 0 0;
}

.whatsapp-header-icon {
    color: #aebac1;
    font-size: 1.2rem;
    cursor: pointer;
}

.whatsapp-header-title {
    color: #e9edef;
    font-weight: 500;
    font-size: 1.1rem;
}

.whatsapp-header-more {
    color: #aebac1;
    font-weight: bold;
    cursor: pointer;
}

.whatsapp-header-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 3px;
    background: #00a884;
}

.whatsapp-banner {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.whatsapp-banner-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(31, 41, 55, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.whatsapp-banner-content {
    text-align: center;
    z-index: 1;
}

.whatsapp-banner-logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-banner-size {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.whatsapp-form {
    min-height: 480px;
    padding: 20px;
    text-align: left;
    background: #111b21;
}

.whatsapp-form-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #e9edef;
    font-weight: 600;
}

.whatsapp-form-greet {
    color: #8696a0;
    margin-bottom: 20px;
    font-size: 1rem;
}

.whatsapp-input-group {
    margin-bottom: 12px;
    border: 1px solid #3b4a54;
    background: #202c33;
    border-radius: 12px;
    padding: 8px 12px;
    position: relative;
}

.whatsapp-input-group.mb-20 {
    margin-bottom: 20px;
}

.whatsapp-input-label {
    font-size: 0.75rem;
    color: #8696a0;
    margin-bottom: 2px;
}

.whatsapp-input-value {
    color: #e9edef;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-input-clear {
    color: #8696a0;
    font-size: 1.1rem;
    cursor: pointer;
    border: 1px solid #8696a0;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.whatsapp-avail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.whatsapp-avail-icon {
    width: 20px;
    height: 20px;
    background: #00a884;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-avail-text {
    color: #e9edef;
    font-size: 0.9rem;
}

.whatsapp-submit {
    background: #00a884;
    color: #111b21;
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.whatsapp-submit:hover {
    background: #008f6f;
}

/* FAQ Accordion Styling */
.faq-grid details {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    margin-bottom: 15px;
}

.faq-grid details:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.faq-grid summary {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-grid details[open] summary::after {
    transform: rotate(45deg);
}

.faq-grid details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    color: var(--text-main);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


/* === VS AI SECTION === */
.vs-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-deep), var(--bg-secondary));
    border-top: 1px solid var(--border-color);
}

.vs-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.vs-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
}

.vs-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.vs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.vs-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.vs-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.vs-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.vs-icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.vs-icon-yellow {
    background: rgba(235, 200, 87, 0.1);
    color: var(--accent);
}

.vs-icon-green {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green);
}

.vs-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.vs-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.vs-highlight {
    color: #f1f5f9;
    font-weight: 600;
}

@media (max-width: 900px) {
    .vs-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

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

/* Comparativa scroll hint */
.comparativa-scroll-hint {
    display: none;
}

@media (max-width: 768px) {
    .comparativa-scroll-hint {
        display: block;
        text-align: center;
        font-size: 0.78rem;
        color: rgba(255,255,255,0.3);
        margin-bottom: 12px;
        letter-spacing: 0.04em;
    }

    /* Tabla más compacta en mobile */
    #comparativa table {
        font-size: 0.78rem;
    }

    #comparativa table th,
    #comparativa table td {
        padding: 10px 10px !important;
        font-size: 0.78rem !important;
    }

    #comparativa table th {
        font-size: 0.82rem !important;
    }

    /* La columna de features más estrecha */
    #comparativa table th:first-child,
    #comparativa table td:first-child {
        min-width: 110px;
        font-size: 0.75rem !important;
    }
}

/* ── Comparativa Mobile Tabs ─────────────────────────── */
.comp-mobile  { display: none; }
.comparativa-desktop { display: block; }

@media (max-width: 768px) {
    .comp-mobile         { display: block; }
    .comparativa-desktop { display: none !important; }

    /* Tab row */
    .comp-tabs-row {
        display: flex;
        gap: 6px;
        margin-bottom: 16px;
        justify-content: center;
    }

    .comp-tab-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 9px 6px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        background: rgba(255,255,255,0.04);
        color: rgba(255,255,255,0.42);
        font-size: 0.72rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        letter-spacing: 0.01em;
        -webkit-tap-highlight-color: transparent;
    }

    .comp-tab-btn.active {
        border-color: rgba(37,211,102,0.5);
        background: rgba(37,211,102,0.08);
        color: #25d366;
        font-weight: 600;
    }

    .comp-tab-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #25d366;
        flex-shrink: 0;
    }

    /* Panels */
    .comp-panel { display: none; }
    .comp-panel.active { display: block; }

    .comp-panel-header {
        border-radius: 14px 14px 0 0;
        padding: 18px 18px 16px;
        margin-bottom: 2px;
    }

    .comp-header-green {
        background: linear-gradient(135deg, rgba(37,211,102,0.18) 0%, rgba(37,211,102,0.06) 100%);
        border: 1px solid rgba(37,211,102,0.28);
        border-bottom: none;
    }

    .comp-header-gray {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.09);
        border-bottom: none;
    }

    .comp-rec-badge {
        display: inline-block;
        font-size: 0.68rem;
        color: #25d366;
        background: rgba(37,211,102,0.12);
        border: 1px solid rgba(37,211,102,0.3);
        border-radius: 20px;
        padding: 3px 10px;
        margin-bottom: 12px;
        letter-spacing: 0.02em;
        font-weight: 600;
    }

    .comp-price {
        font-size: 1.6rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
    }

    .comp-price span {
        font-size: 0.78rem;
        font-weight: 400;
        color: rgba(255,255,255,0.5);
    }

    .comp-price-sub {
        font-size: 0.72rem;
        color: rgba(255,255,255,0.38);
        margin-top: 4px;
    }

    /* Features list */
    .comp-features-list {
        border: 1px solid rgba(255,255,255,0.08);
        border-top: none;
        border-radius: 0 0 14px 14px;
        overflow: hidden;
        background: rgba(255,255,255,0.02);
        margin-bottom: 14px;
    }

    .comp-header-green + .comp-features-list {
        border-color: rgba(37,211,102,0.18);
    }

    .comp-feat {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 13px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .comp-feat:last-child { border-bottom: none; }

    .comp-feat div {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .comp-feat strong {
        font-size: 0.82rem;
        font-weight: 600;
        color: rgba(255,255,255,0.88);
        display: block;
    }

    .comp-feat span {
        font-size: 0.72rem;
        color: rgba(255,255,255,0.38);
        display: block;
        line-height: 1.35;
    }

    .comp-feat-icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .comp-yes .comp-feat-icon {
        background: rgba(37,211,102,0.15);
        color: #25d366;
        border: 1px solid rgba(37,211,102,0.3);
    }

    .comp-no .comp-feat-icon {
        background: rgba(255,80,80,0.1);
        color: rgba(255,100,100,0.7);
        border: 1px solid rgba(255,80,80,0.18);
    }

    .comp-partial .comp-feat-icon {
        background: rgba(255,200,50,0.08);
        color: rgba(255,200,80,0.6);
        border: 1px solid rgba(255,200,50,0.18);
        font-size: 0.9rem;
    }

    /* CTA Button */
    .comp-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px;
        background: #25d366;
        color: #fff;
        border-radius: 12px;
        font-size: 0.88rem;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 0.01em;
        margin-bottom: 4px;
    }

    /* Ideal text */
    .comp-ideal {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.3);
        text-align: center;
        padding: 12px 8px 4px;
        line-height: 1.5;
        font-style: italic;
    }
}