@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #0F1115;
    --card-bg: #1A1D23;
    --text-main: #FFFFFF;
    --text-muted: #A0AEC0;
    --accent-red: #c10e5a;
    --accent-yellow: #ecdd20;
    --accent-orange: #f95839;
    --gradient-primary: linear-gradient(135deg, #c10e5a 0%, #ecdd20 100%);
    --gradient-purple: linear-gradient(135deg, #c10e5a 0%, #f95839 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(0, 194, 255, 0.1) 0%, transparent 70%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

/* Typography Colors & Styles */
h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: 0.03em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-purple-text {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar Theme */
nav {
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.logo {
    color: white;
    font-weight: 700;
}

.logo-icon {
    background: white;
    object-fit: contain;
    padding: 2px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a::after {
    background: var(--gradient-primary);
}

/* Button Theme */
.btn {
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(236, 221, 32, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(236, 221, 32, 0.5);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

/* Hero Theme */
.hero p {
    color: var(--text-muted);
}

.hero-glow {
    background: var(--gradient-glow);
}

/* Feature Cards Theme */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--accent-cyan);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: #f95839;
    box-shadow: 0 0 30px rgba(249, 88, 57, 0.4),
        0 0 60px rgba(249, 88, 57, 0.2);
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(26, 29, 35, 1) 0%, rgba(26, 29, 35, 0.8) 100%);
}

#beneficios .feature-card {
    border-color: rgba(255, 255, 255, 0.1);
}



.feature-card h3,
.feature-card p {
    transition: var(--transition);
}

.feature-card p {
    color: var(--text-muted);
}

.feature-card:hover h3 {
    color: var(--accent-cyan);
}

.feature-card:hover p {
    color: var(--text-main);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    stroke: #fff;
    stroke-width: 1.5;
    fill: none;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    animation: iconPulse 3s infinite ease-in-out;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1));
    }
}

/* Pricing Card Theme */
.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.pricing-card:hover {
    z-index: 2;
    border-color: var(--accent-cyan);
}

.pricing-card.intensity-1:hover,
.pricing-card.intensity-2:hover,
.pricing-card.intensity-3:hover,
.pricing-card.intensity-4:hover,
.pricing-card.intensity-5:hover,
.pricing-card.intensity-6:hover {
    box-shadow: 0 30px 60px rgba(249, 88, 57, 0.4),
        0 0 30px rgba(249, 88, 57, 0.2);
}

/* Diferenciación por intensidad */
.pricing-card.intensity-1 {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.intensity-2 {
    border-color: var(--accent-cyan);
}

.pricing-card.intensity-3 {
    border-color: var(--accent-purple);
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(209, 111, 255, 0.05) 100%);
}

.pricing-card.intensity-4 {
    border-color: var(--accent-mint);
}

.pricing-card.intensity-5 {
    border-color: var(--accent-orange);
    box-shadow: 0 0 30px rgba(249, 88, 57, 0.15);
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(249, 88, 57, 0.05) 100%);
}

.pricing-card.intensity-6 {
    border-color: var(--text-main);
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    border-color: #c10e5a;
    box-shadow: 0 0 40px rgba(193, 14, 90, 0.4);
}

.popular-badge {
    background: var(--gradient-primary);
    color: #000;
    font-weight: 700;
}

.plan-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.plan-icon.purple {
    background: var(--gradient-purple);
}

.plan-icon.white {
    background: #fff;
}

.plan-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.pricing-card.intensity-1 h3,
.pricing-card.intensity-2 h3,
.pricing-card.intensity-4 h3,
.pricing-card.intensity-5 h3,
.pricing-card.intensity-6 h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card.intensity-3 h3 {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}



.price {
    font-size: 1.2rem !important;
    /* Smaller size as requested */
    font-weight: 600;
    margin: 0.25rem 0 1rem 0 !important;
    color: var(--text-muted);
}

.pricing-card.intensity-1 .price {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
}

.price span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.price-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    padding-left: 0;
}

.pricing-features li {
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-mint);
    font-weight: 700;
}

/* CTA Theme */
.cta-section::before {
    background: radial-gradient(circle, rgba(0, 194, 255, 0.05) 0%, transparent 70%);
}

.cta-section p.main-desc {
    color: var(--text-muted);
}

.btn-large {
    transition: var(--transition);
}

.btn-starter {
    background: var(--gradient-primary);
    color: #000;
}

.btn-consultancy {
    color: white;
    border: 1px solid var(--accent-purple);
    box-shadow: 0 0 20px rgba(209, 111, 255, 0.1);
}

.btn-large:hover {
    box-shadow: 0 0 40px rgba(236, 221, 32, 0.3);
}

.btn-consultancy:hover {
    box-shadow: 0 0 40px rgba(209, 111, 255, 0.3);
}

.stat-item h3 {
    font-weight: 800;
}

.stat-item p {
    color: var(--text-muted);
}

.testimonial-card-final {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
    color: var(--accent-mint);
}

.testimonial-card-final p {
    color: var(--text-muted);
}

/* Target Section Theme */
.target-list li {
    font-size: 1.05rem;
    /* Slightly smaller as requested */
}

.target-list li::before {
    content: "";
    background: var(--gradient-primary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 171, 0.5);
}

.target-footer {
    color: var(--text-muted);
    border-left: 4px solid #ecdd20;
    padding-left: 1.5rem;
    margin-top: 3rem;
    font-size: 1rem;
}

.target-visual {
    position: relative;
    padding: 2rem 0;
}

.console-window {
    background: linear-gradient(135deg, rgba(20, 24, 30, 0.95) 0%, rgba(30, 35, 45, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.console-window.second {
    margin-top: 1.5rem;
    /* Space between windows */
    opacity: 0.9;
}

.console-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot.red {
    background: #FF5F56;
}

.dot.yellow {
    background: #FFBD2E;
}

.dot.green {
    background: #27C93F;
}

.console-comment {
    color: #6A737D;
}

.console-line {
    color: #E1E4E8;
}

.color-alert {
    color: #f95839;
    font-weight: 600;
}

.color-mint {
    color: var(--accent-mint);
    font-weight: 600;
}

/* Footer Theme */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-phrase {
    color: var(--text-muted);
}

.footer-social a {
    background: var(--gradient-primary);
    border: 1px solid transparent;
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 194, 255, 0.15);
}

.footer-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(236, 221, 32, 0.3);
    filter: brightness(1.1);
}

.footer-nav-col h4 {
    color: var(--text-main);
}

.footer-nav-col a {
    color: var(--text-muted);
}

.footer-nav-col.empresa a:hover {
    color: var(--accent-mint);
}

.footer-nav-col.servicios a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--text-main);
}

.footer-bottom p {
    color: var(--text-muted);
}

/* Demo Section Styles */
.demo-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    overflow: hidden;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.sector-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.sector-btn {
    background: rgba(0, 194, 255, 0.05);
    border: 1.5px solid rgba(0, 194, 255, 0.3);
    padding: 1.2rem;
    border-radius: 15px;
    color: var(--text-main);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.sector-btn:hover {
    background: rgba(0, 194, 255, 0.05);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 194, 255, 0.4), inset 0 0 10px rgba(0, 194, 255, 0.2);
}

.sector-btn.active {
    background: var(--gradient-primary);
    color: #000;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(236, 221, 32, 0.5);
}

.sector-icon {
    font-size: 1.5rem;
}

.whatsapp-console {
    background: #0b141a;
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: 24px;
    height: 650px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 194, 255, 0.15);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.whatsapp-header {
    background: #202c33;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
}

.whatsapp-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.whatsapp-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--accent-mint);
}

.whatsapp-body {
    flex: 1;
    padding: 25px;
    background: linear-gradient(rgba(11, 20, 26, 0.9), rgba(11, 20, 26, 0.9)),
        url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-repeat: repeat;
    background-size: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    position: relative;
}

.wa-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.03;
    width: 200px;
    pointer-events: none;
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 18px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.chat-bubble.bot .time {
    color: rgba(255, 255, 255, 0.4);
}

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

.chat-bubble.user .time {
    color: rgba(255, 255, 255, 0.4);
}

.chat-bubble .time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    margin-top: 5px;
    opacity: 0.6;
}

.chat-bubble .automation-tag {
    display: inline-block;
    background: rgba(0, 194, 255, 0.1);
    color: var(--accent-cyan);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-top: 10px;
    border: 1px solid rgba(0, 194, 255, 0.2);
    font-weight: 600;
}

.typing-container {
    align-self: flex-start;
    background: #202c33;
    padding: 12px 18px;
    border-radius: 15px;
    border-bottom-left-radius: 2px;
    display: none;
    align-items: center;
    gap: 5px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #8696a0;
    border-radius: 50%;
    animation: waTyping 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes waTyping {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }
}

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

.wa-input-sim {
    flex: 1;
    background: #2a3942;
    padding: 12px 20px;
    border-radius: 10px;
    color: #8696a0;
    font-size: 0.95rem;
}

.wa-send-sim {
    width: 45px;
    height: 45px;
    background: #00a884;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.demo-cta-container {
    text-align: center;
    margin-top: 5rem;
}

.btn-demo {
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(236, 221, 32, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-demo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(236, 221, 32, 0.5);
}

/* Status Cards for WhatsApp Demo */
.status-card {
    background: #1f2c33;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-mint);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #e9edef;
}

.status-row span:first-child {
    color: #8696a0;
}

.status-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 8px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Chat Interactive Elements */
.chat-buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.chat-btn {
    background: rgba(0, 194, 255, 0.1);
    border: 2px solid var(--accent-cyan);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.15);
    animation: btnPulse 2s infinite ease-in-out;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 5px rgba(236, 221, 32, 0.2);
    }

    50% {
        box-shadow: 0 0 15px rgba(236, 221, 32, 0.4);
    }

    100% {
        box-shadow: 0 0 5px rgba(236, 221, 32, 0.2);
    }
}

/* Comparison Table Section */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(0, 194, 255, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(0, 255, 171, 0.04) 0%, transparent 60%);
    pointer-events: none;
}


.table-header-block {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-outer-wrapper {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.comparison-wrapper {
    overflow-x: auto;
    margin-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-cyan) transparent;
    border-radius: 16px;
}

.comparison-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-color) 85%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    border-radius: 0 0 16px 16px;
    z-index: 12;
}

@keyframes tableBtnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(193, 14, 90, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(193, 14, 90, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(193, 14, 90, 0);
    }
}

.comparison-wrapper::-webkit-scrollbar {
    height: 6px;
}

.comparison-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 10px;
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 194, 255, 0.35),
        0 24px 60px rgba(0, 0, 0, 0.55);
}

.comparison-table th,
.comparison-table td {
    padding: 11px 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Sticky First Column */
.comparison-table th:first-child,
.comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 10;
    text-align: left;
    padding-left: 20px;
    min-width: 190px;
    white-space: normal;
    font-weight: 500;
    color: var(--text-muted);
}

.comparison-table th {
    background: #0e1118;
    color: var(--text-main);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1px;
    padding: 16px 10px;
}

.comparison-table th:first-child {
    background: #0e1118;
    color: var(--text-main);
    font-size: 0.72rem;
}

.comparison-table tr {
    transition: background 0.2s ease;
}

/* Alternating rows using card colors */
.comparison-table tbody tr:nth-child(odd) {
    background: #12151d;
}

.comparison-table tbody tr:nth-child(odd) td:first-child {
    background: #12151d;
}

.comparison-table tbody tr:nth-child(even) {
    background: #1a1d27;
}

.comparison-table tbody tr:nth-child(even) td:first-child {
    background: #1a1d27;
}

.comparison-table tr:hover {
    background: rgba(193, 14, 90, 0.15) !important;
}

.comparison-table tr:hover td:first-child {
    background: rgba(193, 14, 90, 0.15) !important;
}

/* Checkmarks and Hyphens */
.check-icon {
    color: #ecdd20;
    font-size: 1.2rem;
    font-weight: bold;
}

.dash-icon {
    color: #444;
    font-size: 1rem;
}

/* Highlight Aceleración Column */
.col-highlight {
    background: rgba(249, 88, 57, 0.12);
    border-left: 2px solid rgba(249, 88, 57, 0.2) !important;
    border-right: 2px solid rgba(249, 88, 57, 0.2) !important;
}

.plan-name-header.premium-highlight {
    background: rgba(249, 88, 57, 0.2);
    color: #f95839;
    font-weight: 800;
}

/* Column Hover Effect */
[data-column]:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.cta-table {
    text-align: center;
    margin-top: 5rem;
}

.table-expand-wrapper {
    text-align: center;
    margin-top: 0.6rem;
    margin-bottom: 0;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.table-expand-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 194, 255, 0.2), transparent);
    transform: translateY(-50%);
    z-index: 0;
}

.btn-table {
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(236, 221, 32, 0.3);
    transition: var(--transition);
}

.btn-table:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 221, 32, 0.4);
}

.table-expand-btn {
    position: relative;
    z-index: 1;
    background: rgba(193, 14, 90, 0.15);
    border: 1.5px solid #c10e5a;
    color: #c10e5a;
    padding: 9px 24px;
    border-radius: 30px;
    font-size: 0.83rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.table-expand-btn:hover {
    background: #c10e5a;
    color: #fff;
    border-color: #c10e5a;
    box-shadow: 0 0 22px rgba(193, 14, 90, 0.4);
    transform: translateY(-1px);
}

/* Scroll reveal helper */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        min-width: 150px;
        font-size: 0.85rem;
    }
}

.chat-link {
    display: inline-block;
    color: var(--accent-cyan);
    text-decoration: underline;
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 100px 0;
    background: var(--bg-color);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0, 194, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 194, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent-cyan);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: rgba(0, 194, 255, 0.5);
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.1);
    background: rgba(0, 194, 255, 0.02);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px 0 120px 0;
    background: var(--bg-color);
    position: relative;
    z-index: 10;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 80% 50%, rgba(209, 111, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.form-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header-logo {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 0 auto 30px auto;
    object-fit: contain;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    margin-left: 4px;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    background: #12151d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.premium-form input:hover,
.premium-form textarea:hover,
.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: rgba(0, 194, 255, 0.5);
    background: #161a24;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.1);
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
    color: #555;
}

.btn-submit {
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(236, 221, 32, 0.3);
    transition: var(--transition);
    width: 100%;
    display: block;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 221, 32, 0.4);
}

/* Leads Section & Iframe Wrapper */
.leads-section {
    padding: 100px 0;
}

.iframe-wrapper {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    min-height: 800px;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 1272px;
    /* Height from user's data attribute */
    border: none;
}

@media (max-width: 768px) {
    .iframe-wrapper {
        min-height: 1300px;
    }
}

.form-footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Chatbot Widget Styling & Pulse */
#chat-widget-container,
#lc-chat-widget,
.lc-chat-widget-button,
div[id*="chat-widget"],
iframe[title*="Chat"] {
    transform: scale(1.3) !important;
    transform-origin: bottom right !important;
    animation: chatbotPulse 2.5s infinite ease-in-out !important;
}

@keyframes chatbotPulse {
    0% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1.3);
    }
}

@media (max-width: 768px) {

    #chat-widget-container,
    #lc-chat-widget,
    .lc-chat-widget-button,
    div[id*="chat-widget"],
    iframe[title*="Chat"] {
        transform: scale(1.15) !important;
        animation: chatbotPulseMobile 2.5s infinite ease-in-out !important;
    }
}

@keyframes chatbotPulseMobile {
    0% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1.22);
    }

    100% {
        transform: scale(1.15);
    }
}

.closing-phrase {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-container {
        padding: 35px 20px;
    }
}

/* Chat Widget Overrides - Resizing and Z-Index */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(26, 29, 35, 0.95) 100%);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    color: var(--text-main);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-cyan);
    text-decoration: none;
}

.modal-content h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.modal-content h3 {
    color: var(--accent-mint);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p,
.modal-content ul {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-content ul {
    padding-left: 20px;
}

.modal-content li {
    margin-bottom: 0.5rem;
}