﻿/* Google Fonts: Plus Jakarta Sans */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Fonts */
    --font-primary: 'Plus Jakarta Sans', sans-serif;

    /* Colors - Light AI Theme */
    --neutral-100: #f5f5f5;
    --primary-color: #2563eb;
    /* Electric Blue */
    --secondary-color: #7c3aed;
    /* Purple */
    --accent-color: #06b6d4;
    /* Cyan */

    --bg-color: #f2eeee;
    /* User requested light bg */
    --bg-card: #ffffff;
    --text-color: #1f2937;
    /* Gray 900 */
    --text-muted: #64748b;
    /* Slate 500 */

    --border-color: #e2e8f0;

    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-text: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Navbar */
/* Navbar */
.navbar {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 950px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    padding: 0.9rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 56px;
    /* Adjust height as needed to fit the navbar */
    width: auto;
    object-fit: contain;
}

/* Old logo-icon styles removed */

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #265fb1;
    /* User requested color */
    font-weight: 600;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: flex;
    /* alignment */
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
    width: 100%;
    /* Ensure full width */
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 0.7rem 1.2rem;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: space-between;
    /* For chevron */
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    color: #265fb1;
    background: rgba(38, 95, 177, 0.05);
    /* Slight tint of the brand color */
}

/* Submenu - Level 2 */
.dropdown-submenu .dropdown-menu-sub {
    position: absolute;
    top: 0;
    left: 100%;
    /* Shows to the right */
    margin-left: 0.5rem;
    /* Gap */
    background: #ffffff;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-submenu:hover .dropdown-menu-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Header Button */
.btn-header {
    background: #1f2937;
    /* Dark Gray/Black */
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

/* Hero Section */
/* Hero Section */
.hero {
    padding: 180px 0 100px 0;
    /* Top padding for fixed navbar */
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/homePage/heroImage-home.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Overlay scroll effect */
    margin: 20px;
    border-radius: 10px;
    position: relative;
    color: white;
    /* Ensure text is visible on dark overlay */
}

/* Override text colors inside hero for better visibility if needed, or rely on inheritance */
.hero h1,
.hero p {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Features/Services */
.features {
    padding: 6rem 0;
}

/* New Wrapper to match Hero margins */
.features-wrapper {
    margin: 0 20px;
    border-radius: 10px;
    /* Optional: if we want a background, add it here. For now, just structure. */
}

/* Two Column Layout */
.features-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    /* Align top, or stretch if we want equal height */
}

/* New Header Row Layout */
/* New Header Row Layout */
.features-header-row {
    margin-bottom: 0;
    /* Removed margin as requested */
    text-align: left;
    padding-bottom: 0;
    /* No padding */
    position: relative;
    z-index: 2;
}

/* Replaces old feature-col-content logic */
.feature-col-globe {
    flex: 1;
    min-width: 320px;
    background: #2c2c2f;
    /* Updated color */
    border-radius: 20px;
    /* Increase height significantly as requested */
    min-height: 500px;
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    justify-content: space-between;
    /* Top and Bottom */
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: -5px;
    /* Negative margin to ensure no gap */
}

.feature-col-globe .globe-img {
    max-width: 100%;
    /* Allow height to adjust naturally, or constrain if needed. 
       If we want it 'appearing from bottom', consistent width is good. */
    width: 100%;
    object-fit: contain;
    opacity: 0.9;
    margin-bottom: -15%;
    /* Pull it down slightly so it looks like appearing from bottom */
    transform-origin: center;
    z-index: 1;
}

/* Globe Content Styles */
.globe-content {
    text-align: center;
    padding-top: 4rem;
    z-index: 2;
    width: 100%;
}

.globe-heading {
    color: #ffffff;
    font-size: 2.0rem;
    /* Reduced size */
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.btn-glossy {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(180deg, #52525b 0%, #18181b 100%);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid #3f3f46;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-glossy:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
}

/* Stat Grid & Cards */
.stat-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Space between the two rows */
    height: 100%;
    margin-left: 20px;
    /* Separation from globe box */
}

/* Ensure column grid wrapper stretches */
.feature-col-grid {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card {
    /* 3D Background Effect */
    /* 3D Background Effect */
    background: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 2.5rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Deep 3D Shadow */
    box-shadow: 0px 7.77px 16px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843), 0px -8px 0px 0px rgba(0, 0, 0, 0.0509803922) inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset;
    /* Top highlight */
    overflow: visible;
    min-height: 240px;
    margin-bottom: 12px;
}

.stat-text {
    font-size: 1.10rem;
    /* Increased from 1rem */
    width: 60%;
    /* Restrict text width as requested */
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.6;
    /* Increased line height */
    z-index: 2;
    /* Content above watermark */
    position: relative;
}

.stat-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

/* Metric Display (Counter) */
.metric-display {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label-small {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Trustpilot Styles - kept if needed for other cards, or can be removed if unused */
.trustpilot-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tp-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
}

.text-success {
    color: #00b67a;
    /* Trustpilot Green */
}

.tp-stars {
    background: #1f2937;
    /* Black bg */
    display: inline-flex;
    padding: 6px 10px;
    gap: 4px;
    border-radius: 4px;
}

.tp-stars .fa-star {
    color: #ffffff;
    font-size: 0.8rem;
}

/* Main Stat Number (formerly Watermark) */
/* Main Stat Number (formerly Watermark) */
.stat-watermark {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: #e4e4e7;
    /* Changed back to solid color per request */
    background: none;
    /* Remove gradient */
    -webkit-text-fill-color: initial;
    /* Reset text fill */

    position: relative;
    right: auto;
    bottom: auto;
    pointer-events: auto;
    z-index: 2;
    margin-left: auto;
}

/* Metric Bar for 2nd card */
.metric-wrapper {
    width: 100%;
    max-width: 200px;
}

.metric-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.metric-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Section Tag / Button - 3D Glass Style */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.25rem;
    background: transparent;
    /* Removed solid bg */
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0;
    /* 3D Borders & Shadow */
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.8),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.section-heading-large {
    font-size: 3.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-color);
    margin-bottom: 0;
}

.text-muted-gradient {
    color: #94a3b8;
}

/* The Dot */
.section-tag::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.section-tag.section-tag--no-dot::before {
    content: none;
    display: none;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Slightly smaller minmax for tight spaces */
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: transparent;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 1rem;
}

.btn-footer-icon {
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    /* Align to right if flex container */
}

.btn-footer-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-footer-icon img {
    width: 24px;
    height: auto;
    object-fit: contain;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #cbd5e1;
    color: var(--text-muted);
    text-align: center;
}

/* =========================================
   Utility Classes & New Components
   ========================================= */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: white;
    /* specialized for hero dark bg */
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Icon Boxes */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.icon-primary {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.icon-secondary {
    background: rgba(124, 58, 237, 0.1);
    color: var(--secondary-color);
}

.icon-accent {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-color);
}

/* Links */
.learn-more-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-primary {
    color: var(--primary-color);
}

.link-secondary {
    color: var(--secondary-color);
}

.link-accent {
    color: var(--accent-color);
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border-color);
}

.about-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================
   Responsive & Mobile Menu
   ========================================= */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-only-item {
    display: none;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Media Query for Mobile/Tablet */
@media (max-width: 968px) {

    /* Navbar Adjustment */
    .navbar {
        width: 95%;
        top: 1rem;
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 46px;
    }

    .desktop-only-btn {
        display: none;
    }

    .mobile-only-item {
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Nav Links as Mobile Menu */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 20px;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        display: none;
        /* Hidden by default */
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        /* Flex to show */
        opacity: 1;
        transform: translateY(0);
        animation: fadeIn 0.3s ease forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Adjust Dropdowns for Mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-left: 1rem;
        display: none;
        /* Hide by default */
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        background: transparent;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
        /* Disable hover effect on mobile */
    }

    /* Only show when .show class is added via JS */
    /* Only show when .show class is added via JS */
    .dropdown-menu.show {
        display: block !important;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-menu-sub {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        display: none;
        /* Hide sub-dropdown by default */
    }

    .dropdown-menu-sub.show {
        display: block !important;
    }

    .submenu-trigger i {
        display: none;
    }

    /* Mobile Menu Button - 3D Effect */
    .mobile-only-item {
        text-align: center;
        margin-top: 1.5rem;
    }

    .mobile-only-item .btn {
        background: #1f2937;
        color: white;
        border: none;
        width: auto !important;
        display: inline-block;
        padding: 0.8rem 2rem;
        border-radius: 50px;
        /* 3D Effect */
        box-shadow: 0 6px 0 #0f172a;
        /* Darker shade */
        transform: translateY(0);
        transition: all 0.1s;
        margin-bottom: 6px;
        /* Space for shadow */
    }

    .mobile-only-item .btn:active {
        transform: translateY(6px);
        box-shadow: 0 0 0 #0f172a;
    }


    /* hide chevron right */

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f5f9;
        display: block;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    /* Hero */
    .hero {
        padding-top: 140px;
        /* less padding */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Sections */
    .feature-grid {
        grid-template-columns: 1fr;
        /* Stack cards */
    }

    .about-container {
        flex-direction: column-reverse;
        /* Image on top? or Text on top? Text on top usually better. Default is row. */
        gap: 2rem;
    }

    .about-image-wrapper {
        width: 100%;
    }

    .about-content {
        width: 100%;
        text-align: center;
    }

    .about-list li {
        justify-content: center;
    }

    /* Responsive Features */
    .features-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .features-layout .section-header {
        text-align: center;
    }

    /* Mobile Adjustments for Features */
    .section-heading-large {
        font-size: 2.1rem;
        /* Reduced to fit on one line */
        line-height: 1.2;
    }

    .globe-heading {
        font-size: 1.5rem;
        /* Reduced for mobile */
    }

    .stat-text {
        width: 100%;
        /* Full width for mobile */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* Our Services Section */
/* Our Services Section */
.our-services {
    padding: 1rem 0 6rem 0;
}

.services-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    gap: 4rem;
    padding: 4rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
}

.service-col {
    flex: 1;
}

/* Services Left Column */
.service-intro {
    padding-right: 2rem;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    color: #2563eb;
    /* Blue */
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-tag .dot {
    width: 6px;
    height: 6px;
    background: #2563eb;
    /* Blue */
    border-radius: 50%;
}

.service-preview-img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin-top: 2rem;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.service-heading {
    font-size: 4rem;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 90%;
}

/* Accordion 3D Styles */
.accordion-3d {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    background: #f8fafc;
    /* Very light grey/white */
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0px 7.77px 16px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843), 0px -8px 0px 0px rgba(0, 0, 0, 0.0509803922) inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset;
    /* Highlight */
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.accordion-item:hover {
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.08),
        0 4px 6px -2px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
    background: #ffffff;
}

.accordion-header {
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #71717a;
    font-size: 2.0rem;
    letter-spacing: -0.02em;
    /* Matching Hero H1 style */
}

.accordion-item:hover .accordion-header {
    color: var(--primary-color);
}

.accordion-number {
    font-weight: 600;
    color: #94a3b8;
    font-size: 1rem;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 2.5rem;
    color: var(--text-muted);
}

.accordion-item.active .accordion-body {
    max-height: 800px;
    padding-bottom: 2rem;
}

.accordion-body ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

.accordion-item.active {
    background: radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), #18181b;
    box-shadow: 0px -8px 0px 0px #2E2E2E inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.3019607843) inset, 0px 7.77px 2.21px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843);
    border: none;
}

.accordion-item.active .accordion-header {
    color: #ffffff;
}

.accordion-item.active .accordion-number {
    color: rgba(255, 255, 255, 0.8);
}

.accordion-item.active .accordion-body {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .services-wrapper {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .service-heading {
        font-size: 3rem;
    }

    .service-intro {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .services-wrapper {
        padding: 1.5rem;
    }

    .service-heading {
        font-size: 2.5rem;
    }

    .accordion-header {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Our Process Section */
.our-process-section {
    padding: 1rem 0 2rem 0;
    /* Reduced top padding */
}

.process-wrapper {
    background: transparent;
    padding: 0;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.process-left {
    flex: 0 0 30%;
    max-width: 30%;
}

.process-right {
    flex: 0 0 70%;
    max-width: 70%;
}

/* Process Navigation Arrows */
.process-controls {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: flex-start;
}

.process-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(0deg, #F5F5F5, #F5F5F5), radial-gradient(62.56% 62.56% at 28.14% -10.42%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border: none;
    box-shadow: 0px -3px 0px 0px #E9E9E9 inset, 0px 1px 0px 0px rgba(255, 255, 255, 0.6980392157) inset, 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.1215686275), 0px 3px 3px 0px rgba(0, 0, 0, 0.1411764706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-arrow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.process-arrow:active {
    transform: translateY(-1px);
}


/* Steps Grid inside Right Column */

.process-right {
    flex: 0 0 70%;
    max-width: 70%;
    overflow: hidden;
    /* Hide overflow for carousel */
}

/* Process Carousel */
.process-viewport {
    width: 100%;
    overflow: hidden;
}

.process-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* Fix: Constrain to viewport width so percentages work */
    padding: 10px;
    margin: -10px;
}

.process-step-card {
    background: #f4f4f4;
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    position: relative;

    /* Carousel Item Sizing */
    flex: 0 0 calc(50% - 1rem);
    width: calc(50% - 1rem);
    /* 2 items visible with 2rem gap */
    min-width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

/* Card Icon Wrapper */
.card-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Specific Icon Colors */
.icon-dark {
    background: linear-gradient(135deg, #272626, #595958);
    box-shadow: 0 8px 20px rgb(17 17 17 / 50%);
}

/* Card Content */
.process-step-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: -0.01em;
}

/* Separator Line */
.card-separator {
    width: 50px;
    height: 2px;
    background: #d1d5db;
    /* Light gray line */
    margin-bottom: 1.5rem;
}

.process-step-card p {
    font-size: 1rem;
    margin-bottom: auto;
    color: #64748b;
    line-height: 1.6;
    height: 100px;
    overflow: hidden;
}

/* Card Footer */
.card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 2rem;
    border-top: 1px solid transparent;
}

/* Time Tag */
.time-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f2937;
    background: transparent;
    letter-spacing: 0.05em;
}

/* Step Number */
.step-count {
    font-size: 3rem;
    font-weight: 700;
    color: #969798;
    /* Updated color */
    line-height: 1;
}

.step-total {
    font-size: 3rem;
    font-weight: 400;
    color: #d1d5db;
    /* Lighter gray */
}

/* Responsive */
@media (max-width: 992px) {
    .process-wrapper {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .process-left,
    .process-right {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .process-right {
        margin-top: 1rem;
    }

    .process-step-card {
        flex: 0 0 100%;
        /* Show 1 card on mobile */
        min-width: 100%;
        max-width: 100%;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 2rem 0 6rem 0;
}

.why-choose-us-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    /* User asked for radius border of 10px. This implies border-radius: 10px. */
}

.section-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.benefits-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.25rem;
    background: #eff6ff;
    /* Light blue background */
    color: #2563eb;
    /* Blue text */
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dot-blue {
    width: 6px;
    height: 6px;
    background-color: #2563eb;
    border-radius: 50%;
}

/* WCU Grid Layout & Visuals */
.wcu-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

@media (max-width: 900px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }
}

.wcu-inner-card {
    background: #f4f4f4;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0px 7.77px 16px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843), 0px -8px 0px 0px rgba(0, 0, 0, 0.0509803922) inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset;
}

.wcu-grid-reverse {
    grid-template-columns: 2fr 3fr;
    /* 40% / 60% */
}

@media (max-width: 900px) {
    .wcu-grid-reverse {
        grid-template-columns: 1fr;
    }
}

.centering-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.center-visual {
    justify-content: center;
    padding: 0.5rem 0;
    /* Reduced padding to accommodate larger icon without growing card */
    margin-bottom: 0.5rem;
    /* Override default 2rem margin of wcu-visual-area */
}

.secure-icon {
    height: 180px;
    /* Increased from 120px */
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.secure-icon:hover {
    transform: scale(1.05);
}

@keyframes moveLeftRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-15px);
    }
}

.composition-visual {
    height: 200px;
    /* Taller area for composition */
    position: relative;
    display: flex;
    /* Ensure flex is explicit */
    justify-content: flex-end;
    /* Align right */
    padding-right: 2rem;
}

.main-message-box {
    height: 180px;
    width: auto;
    position: relative;
    z-index: 2;
    /* Removed margin-left */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.floating-chat-bubble {
    position: absolute;
    top: 30px;
    right: 140px;
    /* Position to the left of the phone (which is at right edge) */
    left: auto;
    /* Reset left */
    width: 140px;
    z-index: 1;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    animation: moveLeftRight 3s ease-in-out infinite;
}

.floating-tick {
    position: absolute;
    bottom: 20px;
    right: 20%;
    width: 50px;
    z-index: 3;
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}


.wcu-inner-card:hover {
    transform: translateY(-5px);
}

.wcu-inner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.wcu-inner-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Visual Areas */
.wcu-visual-area {
    min-height: 140px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Outcome List (Left Card) */
.outcome-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.outcome-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.outcome-bar {
    flex: 1;
    /* Grow to fill */
    height: 32px;
    position: relative;
    /* Removed visual styles from container */
}

.outcome-fill {
    height: 100%;
    /* New styles for the 'fill' to be the visible bar */
    background-color: var(--neutral-100);
    box-shadow: 0px -4px 0px 0px rgba(0, 0, 0, 0.0509803922) inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset, 0px 7.77px 16px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843);
    border-radius: 50px;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 0;
    /* Default starting width */
}

.outcome-pill {
    flex-shrink: 0;
    background: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    /* Ensure consistent width */
}

.outcome-pill i {
    color: #64748b;
    width: 20px;
    text-align: center;
}

/* Floating Settings Icon */
.floating-settings-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 32px;
    height: 32px;
    background: #1f2937;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Eval Steps (Right Card) */
.eval-steps-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 1rem 0;
}

.eval-line {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 6px;
    background: #e2e8f0;
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 10px;
}

.eval-step {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
    font-size: 1.5rem;
    color: #1f2937;
}

/* Floating Arrow Icon */
.floating-arrow-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Ensure Header Centering if not defined */
.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Service Map Section */
.service-map-section {
    padding-bottom: 6rem;
    overflow: hidden;
}

.service-map-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    width: 100%;
    /* Full width of container */
    max-width: none;
    margin: 0 auto;
}

.map-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    z-index: 2;
}

.map-col-side {
    width: 380px;
    /* Increased size */
}

/* Alignment for Left Column (Right Aligned) */
.icon-right-side .map-card {
    text-align: left;
    align-items: flex-start;
    /* If flex column */
}

.icon-right-side .map-card-icon {
    margin-right: auto;
    margin-left: 0;
}

/* Alignment for Right Column (Left Aligned - Default but ensured) */
.icon-left-side .map-card {
    text-align: left;
    align-items: flex-start;
}

.icon-left-side .map-card-icon {
    margin-right: auto;
    margin-left: 0;
}

.map-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0px 7.77px 16px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843), 0px -8px 0px 0px rgba(0, 0, 0, 0.0509803922) inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: transform 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
}

.map-card-icon {
    width: 48px;
    height: 48px;
    background: #1f2937;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.map-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.map-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Center Column */
.map-col-center {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-brand-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #676767 100%);
    padding: 2.5rem 3rem;
    border-radius: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    min-width: 220px;
    text-align: center;
}

.center-logo {
    width: 76px;
    height: 76px;
    filter: brightness(0) invert(1);
}

.center-logo--white-mark {
    filter: none;
    object-fit: contain;
}

.center-brand-card h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

/* Connectors */
.map-connector {
    position: relative;
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Connectors - Electric Neuron Effect */
/* Base Line Style with animation support */
.connector-spine-left,
.connector-spine-right,
.connector-bridge-left,
.connector-bridge-right,
.connector-arm-top-left,
.connector-arm-bottom-left,
.connector-arm-middle-left,
.connector-arm-top-right,
.connector-arm-bottom-right,
.connector-arm-middle-right {
    position: absolute;
    /* Base color is grey, but we use a gradient for the pulse */
    background: linear-gradient(90deg, #e2e8f0 0%, #e2e8f0 40%, #2b2b2b 50%, #e2e8f0 60%, #e2e8f0 100%);
    background-size: 200% 200%;
}

/* Vertical Spines - Flow Down */
.connector-spine-left,
.connector-spine-right {
    top: 16%;
    bottom: 16%;
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
    /* Vertical Gradient Pulse */
    background: linear-gradient(180deg, #e2e8f0 0%, #e2e8f0 40%, #2b2b2b 50%, #e2e8f0 60%, #e2e8f0 100%);
    background-size: 200% 200%;
    animation: neuronPulseVertical 3s infinite linear;
}

/* Left Side Horizontal Lines (Arms & Bridge) - Flow Left to Right (towards center) */
.connector-arm-top-left,
.connector-arm-bottom-left,
.connector-arm-middle-left,
.connector-bridge-left {
    height: 2px;
    background: linear-gradient(90deg, #e2e8f0 0%, #e2e8f0 40%, #2b2b2b 50%, #e2e8f0 60%, #e2e8f0 100%);
    background-size: 200% 200%;
    animation: neuronPulseHorizontal 3s infinite linear;
}

/* Right Side Horizontal Lines - Flow Right to Left (towards center) */
/* Note: For Gradient to flow Right to Left, we animate background position in reverse or flip gradient */
.connector-arm-top-right,
.connector-arm-bottom-right,
.connector-arm-middle-right,
.connector-bridge-right {
    height: 2px;
    background: linear-gradient(270deg, #e2e8f0 0%, #e2e8f0 40%, #2b2b2b 50%, #e2e8f0 60%, #e2e8f0 100%);
    background-size: 200% 200%;
    animation: neuronPulseHorizontalReverse 3s infinite linear;
}

/* Specific Positioning Adjustments (overriding repeats if necessary) */
.connector-bridge-left {
    top: 50%;
    right: 0;
    left: 50%;
    width: 50%;
    transform: translateY(-50%);
}

.connector-bridge-right {
    top: 50%;
    left: 0;
    right: 50%;
    width: 50%;
    transform: translateY(-50%);
}

.connector-arm-top-left,
.connector-arm-top-right {
    top: 16%;
    width: 50%;
}

.connector-arm-bottom-left,
.connector-arm-bottom-right {
    bottom: 16%;
    width: 50%;
}

.connector-arm-middle-left,
.connector-arm-middle-right {
    top: 50%;
    width: 50%;
}

.connector-arm-top-left,
.connector-arm-bottom-left,
.connector-arm-middle-left {
    left: 0;
}

.connector-arm-top-right,
.connector-arm-bottom-right,
.connector-arm-middle-right {
    right: 0;
    left: 50%;
}

/* Keyframes */
@keyframes neuronPulseHorizontal {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }

    /* Moves Right */
}

/* For Left to Right logic: 
   Standard Gradient 90deg is Left-Color to Right-Color.
   Moving Background Position from 100% to 0% moves it. 
   Let's ensure the pulse moves towards center.
   Center is at Right for Left-Side lines.
*/

@keyframes neuronPulseVertical {
    0% {
        background-position: 0 100%;
    }

    100% {
        background-position: 0 -100%;
    }
}

@keyframes neuronPulseHorizontalReverse {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* Dots at intersection - Make them glow orange too */
.connector-spine-left::before,
.connector-spine-right::before,
.connector-spine-left::after,
.connector-spine-right::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2b2b2b;
    /* Changed from Orange tint */
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(43, 43, 43, 0.5);
}

.connector-spine-left::before,
.connector-spine-right::before {
    top: 0;
}

.connector-spine-left::after,
.connector-spine-right::after {
    bottom: 0;
}


/* Responsive */
@media (max-width: 992px) {
    .service-map-container {
        flex-direction: column;
        gap: 2rem;
    }

    .map-connector {
        display: none;
    }

    .map-col-center {
        order: -1;
        padding: 0;
        margin-bottom: 2rem;
    }

    .map-col-side {
        width: 100%;
        max-width: 400px;
    }
}

/* AI Tools Section */
.ai-tools {
    padding: 2rem 0 0 0;
}

.ai-tools-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ai-tools-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dot-small {
    width: 6px;
    height: 6px;
    background-color: #1f2937;
    border-radius: 50%;
}

.ai-tools-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.ai-tools-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 800px;
    margin-bottom: 3rem;
}

.btn-ai-tools {
    display: inline-block;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-ai-tools:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    background-color: #000000;
}

@media (max-width: 768px) {
    .ai-tools-heading {
        font-size: 2.5rem;
    }

    .ai-tools-desc {
        font-size: 1rem;
    }

    .ai-tools-wrapper {
        padding: 4rem 1.5rem;
    }
}


/* Floating Tool Logos */
/* Floating Tool Logos */
.ai-tools-wrapper {
    position: relative;
    overflow: visible;
    /* Allow overlap */
}

.tool-logo-card {
    position: absolute;
    width: 150px;
    height: 100px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.3s ease;
    animation: floatLogo 6s ease-in-out infinite;
    padding: 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.tool-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tool-logo-card:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 12;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

/* Positions - Pushed outwards to avoid text overlap */

/* Top Left - Office 365 */
.card-pos-1 {
    top: 5%;
    left: 5%;
    transform: rotate(-12deg);
    animation-delay: 0s;
    --rotation: -12deg;
}

/* Top Right - OpenAI */
.card-pos-2 {
    top: 5%;
    right: 5%;
    transform: rotate(12deg);
    animation-delay: 2s;
    --rotation: 12deg;
}

/* Middle Left - Gemini */
.card-pos-3 {
    top: 35%;
    left: -2%;
    transform: rotate(15deg);
    animation-delay: 1s;
    --rotation: 15deg;
}

/* Middle Right - Zapier */
.card-pos-4 {
    top: 35%;
    right: -2%;
    transform: rotate(-10deg);
    animation-delay: 3s;
    --rotation: -10deg;
}

/* Bottom Left - Salesforce */
.card-pos-5 {
    bottom: 5%;
    left: 5%;
    transform: rotate(-8deg);
    animation-delay: 1.5s;
    --rotation: -8deg;
}

/* Bottom Right (Inner) - Meta */
.card-pos-6 {
    bottom: 5%;
    right: 5%;
    transform: rotate(8deg);
    animation-delay: 2.5s;
    --rotation: 8deg;
}

/* Bottom Right (Outer) - WhatsApp (Moved from Center) */
.card-pos-7 {
    bottom: 25%;
    right: 2%;
    top: auto;
    left: auto;
    transform: rotate(-5deg);
    animation-delay: 4s;
    --rotation: -5deg;
}

/* Floating Animation */
@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }

    50% {
        transform: translateY(-10px) rotate(var(--rotation, 0deg));
    }
}

/* Mobile: Hide or re-flow */
@media (max-width: 992px) {
    .tool-logo-card {
        width: 100px;
        height: 80px;
    }

    .card-pos-1 {
        left: 2%;
        top: 5%;
    }

    .card-pos-2 {
        right: 2%;
        top: 5%;
    }

    .card-pos-3 {
        top: 30%;
        left: -5%;
    }

    .card-pos-4 {
        top: 30%;
        right: -5%;
    }

    .card-pos-5 {
        bottom: 5%;
        left: 2%;
    }

    .card-pos-6 {
        bottom: 5%;
        right: 2%;
    }

    .card-pos-7 {
        bottom: 20%;
        right: -5%;
    }
}

@media (max-width: 768px) {
    .tool-logo-card {
        display: none;
    }
}

/* Additional Logo Positions */
.card-pos-3 {
    top: 45%;
    left: 4%;
    transform: rotate(15deg);
    animation-delay: 1s;
    --rotation: 15deg;
}

.card-pos-4 {
    top: 45%;
    right: 4%;
    transform: rotate(-10deg);
    animation-delay: 3s;
    --rotation: -10deg;
}

.card-pos-5 {
    bottom: 12%;
    left: 10%;
    transform: rotate(-8deg);
    animation-delay: 1.5s;
    --rotation: -8deg;
}

.card-pos-6 {
    bottom: 12%;
    right: 10%;
    transform: rotate(8deg);
    animation-delay: 2.5s;
    --rotation: 8deg;
}

.card-pos-7 {
    top: 23%;
    right: 78%;
    margin-left: -90px;
    /* Half of width (180/2) */
    transform: rotate(0deg);
    animation-delay: 4s;
    --rotation: 0deg;
}

/* Update mobile rules for new cards */
@media (max-width: 992px) {
    .card-pos-3 {
        top: 35%;
        left: 0%;
    }

    .card-pos-4 {
        top: 35%;
        right: 0%;
    }

    .card-pos-5 {
        bottom: 10%;
        left: 5%;
    }

    .card-pos-6 {
        bottom: 10%;
        right: 5%;
    }

    .card-pos-7 {
        bottom: 2%;
        left: 50%;
        margin-left: -60px;
        /* Half of tablet size (120/2) */
    }
}

/* Mobile Logo Visibility & Positioning Override */
@media (max-width: 768px) {
    .tool-logo-card {
        display: flex !important;
        width: 60px !important;
        height: 40px !important;
        border-radius: 12px;
        opacity: 0.9;
        filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    }

    /* Pushed to edges to avoid covering text */
    .card-pos-1 {
        top: 7%;
        left: 5%;
        transform: rotate(-5deg);
    }

    .card-pos-2 {
        top: 18%;
        right: 14%;
        transform: rotate(5deg);
    }

    /* Middle ones slightly higher to avoid text body */
    .card-pos-3 {
        top: 16%;
        left: 14%;
        transform: rotate(10deg);
    }

    .card-pos-4 {
        top: 8%;
        right: 5%;
        transform: rotate(-10deg);
    }

    /* Lower ones */
    .card-pos-5 {
        bottom: 5%;
        left: 2%;
        transform: rotate(-5deg);
    }

    .card-pos-6 {
        bottom: 5%;
        right: 2%;
        transform: rotate(5deg);
    }

    /* WhatsApp - Bottom Right corner */
    .card-pos-7 {
        top: auto !important;
        left: auto !important;
        bottom: 20% !important;
        right: 3% !important;
        margin: 0 !important;
        transform: rotate(0deg);
    }
}

/* FAQ Section */
.faq-section {
    padding: 1rem 0 6rem 0;
    background-color: transparent;
    margin-top: 4rem;
}

.faq-header-center {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    background: #ffffff;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dot-black {
    width: 6px;
    height: 6px;
    background-color: #1f2937;
    border-radius: 50%;
}

.faq-heading-large {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.02em;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle i {
    color: white;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #4b5563;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    background: #fff;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Transition to ample height */
    padding-bottom: 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-heading-large {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
}

/* Contact Details Section */
.contact-details {
    padding: 60px 0;
    /* Spacing below hero */
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.contact-card {
    background: #f8fafc;
    /* Very light grey/white */
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    /* Soft neumorphic-like shadow */
    box-shadow:
        10px 10px 30px rgba(0, 0, 0, 0.05),
        -10px -10px 30px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon-box {
    width: 70px;
    height: 70px;
    background: #1f2937;
    /* Dark color */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    /* Drop shadow for the icon itself to make it pop */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Badge specific for the first card */
.card-badge-setting {
    position: absolute;
    top: 40px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Map Section */
.map-section {
    padding-bottom: 60px;
}

.map-card-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 10px;
    /* Small padding like a frame */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.map-card-wrapper iframe {
    border-radius: 20px;
    display: block;
}

/* Under Construction Section */
.under-construction {
    padding: 2rem 0;
    text-align: center;
}

.uc-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
}

.uc-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* AI Agentic CRM Page */
.crm-hero {
    padding: 0 0 4rem;
    background: none;
    text-align: left;
    overflow: visible;
}

.crm-hero-stage {
    position: relative;
    overflow: visible;
}

.crm-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    min-height: auto;
}

.crm-hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 140px;
    min-width: 0;
    width: 100%;
    gap: 1.5rem;
}

.crm-hero-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crm-hero-heading {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-color);
    margin: 0 0 1.5rem;
    max-width: none;
    text-shadow: none;
}

.crm-hero-heading-light {
    font-weight: 400;
}

.crm-hero-tagline {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 2rem;
    max-width: 600px;
    text-shadow: none;
}

.crm-hero-cta {
    display: inline-flex;
    align-items: center;
    background: #1f2937;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.crm-hero-cta:hover {
    background: #000000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.crm-solution-section .crm-solution-card .btn-primary {
    background: #1f2937;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.crm-solution-section .crm-solution-card .btn-primary:hover {
    background: #000000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* Hero mobile mockup — outside card, beside hero copy */
.crm-hero-mobile {
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
}

.crm-mobile-device {
    position: relative;
    width: min(168px, 38vw);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.crm-mobile-frame {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 55%, #334155 100%);
    border-radius: 28px;
    padding: 10px;
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.22),
        0 2px 0 rgba(255, 255, 255, 0.12) inset,
        0 -2px 0 rgba(0, 0, 0, 0.35) inset;
}

.crm-mobile-island {
    width: 52px;
    height: 14px;
    background: #0f172a;
    border-radius: 20px;
    margin: 0 auto 8px;
}

.crm-mobile-screen {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    overflow: hidden;
    min-height: 248px;
    display: flex;
    flex-direction: column;
}

.crm-mobile-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px 4px;
    font-size: 0.58rem;
    font-weight: 700;
    color: #64748b;
}

.crm-mobile-status-icons {
    display: flex;
    gap: 4px;
    font-size: 0.5rem;
}

.crm-mobile-app-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 12px 0.65rem;
    border-bottom: 1px solid #e2e8f0;
}

.crm-mobile-app-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.crm-mobile-app-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.crm-mobile-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.crm-mobile-lead-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.crm-mobile-lead-row--dim {
    opacity: 0.55;
}

.crm-mobile-lead-avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crm-mobile-lead-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.crm-mobile-lead-lines span {
    display: block;
    height: 5px;
    border-radius: 4px;
    background: #e2e8f0;
}

.crm-mobile-lead-lines span:first-child {
    width: 72%;
    background: #cbd5e1;
}

.crm-mobile-lead-lines span:last-child {
    width: 48%;
}

.crm-mobile-push {
    position: absolute;
    left: 8px;
    right: 8px;
    top: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    border: 1px solid #dbeafe;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
    opacity: 0;
    transform: translateY(-12px) scale(0.92);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.crm-mobile-push-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.crm-mobile-push-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.crm-mobile-push-text strong {
    font-size: 0.62rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.crm-mobile-push-text span {
    font-size: 0.55rem;
    color: #64748b;
    line-height: 1.2;
}

.crm-mobile-target {
    position: absolute;
    left: 50%;
    top: 42%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.crm-hero-mobile.is-notify .crm-mobile-push {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.crm-hero-mobile.is-notify .crm-mobile-device {
    transform: scale(1.04);
    filter: drop-shadow(0 0 24px rgba(59, 130, 246, 0.35));
}

.crm-hero-mobile.is-notify .crm-mobile-frame {
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.22),
        0 0 0 3px rgba(59, 130, 246, 0.25),
        0 2px 0 rgba(255, 255, 255, 0.12) inset;
}

/* Lead flies from stack to mobile (hero stage level) */
.crm-lead-to-user {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    background: #fff;
    border: 1px solid #bbf7d0;
    border-radius: 100px;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
    opacity: 0;
    pointer-events: none;
    z-index: 20;
    --fly-from-x: 50%;
    --fly-from-y: 50%;
    --fly-to-x: 20%;
    --fly-to-y: 50%;
    animation: crm-fly-to-user var(--crm-cycle, 30s) cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.crm-lead-to-user-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.crm-lead-to-user-text {
    font-size: 0.68rem;
    font-weight: 700;
    color: #1e293b;
}

@keyframes crm-fly-to-user {
    0%, 81% {
        opacity: 0;
        left: var(--fly-from-x);
        top: var(--fly-from-y);
        transform: translate(-50%, -50%) scale(0.85);
    }
    83% {
        opacity: 1;
        left: var(--fly-from-x);
        top: var(--fly-from-y);
        transform: translate(-50%, -50%) scale(1);
    }
    88% {
        opacity: 1;
        left: var(--fly-to-x);
        top: var(--fly-to-y);
        transform: translate(-50%, -50%) scale(0.95);
    }
    90%, 100% {
        opacity: 0;
        left: var(--fly-to-x);
        top: var(--fly-to-y);
        transform: translate(-50%, -50%) scale(0.8);
    }
}

.crm-hero-stage {
    --crm-cycle: 30s;
}

.crm-hero-right {
    min-width: 0;
    width: 100%;
    padding-top: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.crm-hero-card {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-height: 320px;
    margin-bottom: 0;
    padding: 1.5rem 1.25rem;
    overflow: hidden;
    box-sizing: border-box;
}

.crm-hero-card.stat-card {
    flex: none;
    position: relative;
    background: radial-gradient(ellipse 78% 68% at 50% 42%, #1c1c1f 0%, #141416 48%, #0f0f11 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.crm-hero-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.crm-hero-orbit-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.09);
    stroke-width: 1.2;
}

.crm-hero-orbit-line--inner {
    stroke: rgba(255, 255, 255, 0.07);
}

.crm-hero-orbit-line--tight {
    stroke: rgba(255, 255, 255, 0.05);
}

.crm-hero-orbit-dot {
    fill: rgba(255, 255, 255, 0.2);
}

.crm-hero-card-glow {
    position: absolute;
    left: 72%;
    top: 42%;
    width: 38%;
    height: 42%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 140, 90, 0.12) 0%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.crm-lead-flow {
    position: relative;
    z-index: 1;
    height: 300px;
    width: 100%;
    --crm-cycle: 30s;
}

.crm-hero-card .crm-lead-stack-card {
    background: rgba(32, 32, 36, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.crm-hero-card .crm-lead-stack-label {
    color: rgba(248, 250, 252, 0.45);
}

.crm-hero-card .crm-lead-stack-count {
    color: #f8fafc;
}

.crm-hero-card .crm-lead-stack-count.crm-count-bump {
    animation-name: crm-count-pulse-dark;
}

@keyframes crm-count-pulse-dark {
    0%, 100% { transform: scale(1); color: #f8fafc; }
    50% { transform: scale(1.12); color: #fbbf24; }
}

/* Lead stack — left */
.crm-lead-stack {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 88px;
    height: 110px;
}

.crm-lead-stack-card {
    position: absolute;
    left: 0;
    width: 76px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.crm-lead-stack-card--back {
    top: 0;
    opacity: 0.45;
    transform: scale(0.92);
}

.crm-lead-stack-card--mid {
    top: 18px;
    opacity: 0.7;
    transform: scale(0.96);
}

.crm-lead-stack-card--front {
    top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0.5rem;
}

.crm-lead-stack-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.crm-lead-stack-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    display: inline-block;
    transition: color 0.2s ease;
}

.crm-lead-stack-count.crm-count-bump {
    animation: crm-count-pulse 0.45s ease;
}

@keyframes crm-count-pulse {
    0%, 100% { transform: scale(1); color: #1f2937; }
    50% { transform: scale(1.12); color: var(--primary-color); }
}

.crm-lead-notify {
    position: absolute;
    top: 28px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 100px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    opacity: 0;
    transform: scale(0.5);
}

.crm-lead-notify.crm-notify-active {
    animation: crm-notify-pop-once 0.55s ease forwards;
}

.crm-lead-notify:not(.crm-notify-active) {
    opacity: 0;
    transform: scale(0.5);
}

@keyframes crm-notify-pop-once {
    0% { opacity: 0; transform: scale(0.5); }
    55% { opacity: 1; transform: scale(1.12); }
    100% { opacity: 1; transform: scale(1); }
}

/* Right panel: chat + social sources */
.crm-right-panel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: min(100%, 240px);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.crm-social-sources {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    padding: 0.35rem 0.15rem 0;
}

.crm-social-icon {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    z-index: 1;
}

.crm-hero-card .crm-social-icon {
    background: rgba(28, 28, 32, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.crm-social-icon i {
    line-height: 1;
    transition: font-size 0.2s ease;
}

.crm-social-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 14px;
    border: 2px solid transparent;
    opacity: 0;
    pointer-events: none;
}

.crm-social-icon--fb {
    color: #1877f2;
    animation: crm-social-pulse-fb var(--crm-cycle) ease-in-out infinite;
}

.crm-social-icon--fb::after {
    animation: crm-social-ring-fb var(--crm-cycle) ease-in-out infinite;
}

.crm-social-icon--ig {
    color: #e4405f;
    animation: crm-social-pulse-ig var(--crm-cycle) ease-in-out infinite;
}

.crm-social-icon--ig::after {
    animation: crm-social-ring-ig var(--crm-cycle) ease-in-out infinite;
}

.crm-social-icon--tiktok {
    color: #010101;
    animation: crm-social-pulse-tiktok var(--crm-cycle) ease-in-out infinite;
}

.crm-social-icon--tiktok::after {
    animation: crm-social-ring-tiktok var(--crm-cycle) ease-in-out infinite;
}

.crm-social-icon--yt {
    color: #ff0000;
    animation: crm-social-pulse-yt var(--crm-cycle) ease-in-out infinite;
}

.crm-social-icon--yt::after {
    animation: crm-social-ring-yt var(--crm-cycle) ease-in-out infinite;
}

.crm-hero-card .crm-social-icon--fb { color: #60a5fa; }
.crm-hero-card .crm-social-icon--ig { color: #f472b6; }
.crm-hero-card .crm-social-icon--tiktok { color: #e2e8f0; }
.crm-hero-card .crm-social-icon--yt { color: #f87171; }

@keyframes crm-social-pulse-fb {
    0%, 18%, 42%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        border-color: rgba(255, 255, 255, 0.14);
    }
    20%, 21% { transform: scale(1.08); }
    22%, 36% {
        transform: scale(1.42);
        box-shadow: 0 0 0 6px rgba(24, 119, 242, 0.14), 0 10px 22px rgba(24, 119, 242, 0.3);
        border-color: #60a5fa;
    }
    22%, 36% { font-size: 1.1rem; }
    38%, 41% { transform: scale(1.12); font-size: 0.95rem; }
}

@keyframes crm-social-ring-fb {
    0%, 20%, 42%, 100% { opacity: 0; transform: scale(0.85); border-color: transparent; }
    24%, 34% { opacity: 1; transform: scale(1); border-color: rgba(24, 119, 242, 0.35); }
}

@keyframes crm-social-pulse-ig {
    0%, 38%, 62%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        border-color: rgba(255, 255, 255, 0.14);
    }
    40%, 41% { transform: scale(1.08); }
    42%, 56% {
        transform: scale(1.42);
        box-shadow: 0 0 0 6px rgba(228, 64, 95, 0.14), 0 10px 22px rgba(228, 64, 95, 0.28);
        border-color: #f472b6;
    }
    42%, 56% { font-size: 1.1rem; }
    58%, 61% { transform: scale(1.12); font-size: 0.95rem; }
}

@keyframes crm-social-ring-ig {
    0%, 40%, 62%, 100% { opacity: 0; transform: scale(0.85); border-color: transparent; }
    44%, 54% { opacity: 1; transform: scale(1); border-color: rgba(228, 64, 95, 0.35); }
}

@keyframes crm-social-pulse-tiktok {
    0%, 58%, 82%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        border-color: rgba(255, 255, 255, 0.14);
    }
    60%, 61% { transform: scale(1.08); }
    62%, 76% {
        transform: scale(1.42);
        box-shadow: 0 0 0 6px rgba(15, 23, 42, 0.1), 0 10px 22px rgba(15, 23, 42, 0.22);
        border-color: #94a3b8;
    }
    62%, 76% { font-size: 1.1rem; }
    78%, 81% { transform: scale(1.12); font-size: 0.95rem; }
}

@keyframes crm-social-ring-tiktok {
    0%, 60%, 82%, 100% { opacity: 0; transform: scale(0.85); border-color: transparent; }
    64%, 74% { opacity: 1; transform: scale(1); border-color: rgba(15, 23, 42, 0.25); }
}

@keyframes crm-social-pulse-yt {
    0%, 62.4%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        border-color: rgba(255, 255, 255, 0.14);
    }
    64%, 64.8% { transform: scale(1.08); }
    65.6%, 74.4% {
        transform: scale(1.42);
        box-shadow: 0 0 0 6px rgba(255, 0, 0, 0.12), 0 10px 22px rgba(255, 0, 0, 0.26);
        border-color: #f87171;
    }
    65.6%, 74.4% { font-size: 1.1rem; }
    75.2%, 76.8% { transform: scale(1.12); font-size: 0.95rem; }
}

@keyframes crm-social-ring-yt {
    0%, 64%, 100% { opacity: 0; transform: scale(0.85); border-color: transparent; }
    67.2%, 73.6% { opacity: 1; transform: scale(1); border-color: rgba(255, 0, 0, 0.3); }
}

/* Chat window — inside right panel */
.crm-chat-window {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    animation: crm-chat-cooking var(--crm-cycle) ease-in-out infinite;
}

.crm-hero-card .crm-chat-window {
    background: linear-gradient(165deg, #4a3f34 0%, #3d3329 42%, #2a231c 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: crm-chat-cooking-dark var(--crm-cycle) ease-in-out infinite;
}

@keyframes crm-chat-cooking {
    0%, 16%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
        border-color: #e2e8f0;
    }
    6.4%, 12.8% {
        transform: scale(1.03);
        box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1), 0 10px 28px rgba(37, 99, 235, 0.15);
        border-color: #93c5fd;
    }
}

@keyframes crm-chat-cooking-dark {
    0%, 16%, 100% {
        transform: scale(1);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.14);
    }
    6.4%, 12.8% {
        transform: scale(1.03);
        box-shadow:
            0 0 0 5px rgba(251, 191, 36, 0.12),
            0 14px 36px rgba(180, 140, 90, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border-color: rgba(251, 191, 36, 0.35);
    }
}

.crm-chat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.crm-hero-card .crm-chat-header {
    background: rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.crm-chat-status {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.crm-chat-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.crm-hero-card .crm-chat-title {
    color: rgba(248, 250, 252, 0.92);
}

.crm-chat-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 96px;
}

.crm-msg {
    max-width: 88%;
    padding: 0.5rem 0.7rem;
    border-radius: 12px;
    font-size: 0.72rem;
    line-height: 1.45;
    font-weight: 500;
    opacity: 0;
    transform: translateY(6px) scale(0.96);
}

.crm-msg--user {
    align-self: flex-end;
    background: #eff6ff;
    color: #1e40af;
    border-bottom-right-radius: 4px;
    animation: crm-msg-user-in var(--crm-cycle) ease-out infinite;
}

.crm-msg--bot {
    align-self: flex-start;
    background: #f1f5f9;
    color: #334155;
    border-bottom-left-radius: 4px;
    animation: crm-msg-bot-in var(--crm-cycle) ease-out infinite;
}

.crm-hero-card .crm-msg--user {
    background: rgba(255, 255, 255, 0.14);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.crm-hero-card .crm-msg--bot {
    background: rgba(0, 0, 0, 0.22);
    color: rgba(248, 250, 252, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Flying lead pills — origins synced via JS (--fly-from-x/y, --fly-to-x/y) */
.crm-flying-lead {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 100px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
    opacity: 0;
    pointer-events: none;
    z-index: 6;
    --fly-from-x: 70%;
    --fly-from-y: 40%;
    --fly-to-x: 12%;
    --fly-to-y: 48%;
}

.crm-flying-lead--chat {
    animation: crm-fly-chat var(--crm-cycle) cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.crm-flying-lead--fb {
    animation: crm-fly-fb var(--crm-cycle) cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.crm-flying-lead--fb .crm-flying-lead-icon {
    background: #eff6ff;
    color: #1877f2;
}

.crm-flying-lead--ig {
    animation: crm-fly-ig var(--crm-cycle) cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.crm-flying-lead--ig .crm-flying-lead-icon {
    background: #fdf2f8;
    color: #e4405f;
}

.crm-flying-lead--tiktok {
    animation: crm-fly-tiktok var(--crm-cycle) cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.crm-flying-lead--tiktok .crm-flying-lead-icon {
    background: #f1f5f9;
    color: #0f172a;
}

.crm-flying-lead--yt {
    animation: crm-fly-yt var(--crm-cycle) cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.crm-flying-lead--yt .crm-flying-lead-icon {
    background: #fef2f2;
    color: #dc2626;
}

.crm-flying-lead-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.crm-flying-lead-text {
    font-size: 0.68rem;
    font-weight: 700;
    color: #1e293b;
}

.crm-hero-card .crm-flying-lead {
    background: rgba(32, 32, 36, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.crm-hero-card .crm-flying-lead-text {
    color: #f1f5f9;
}

.crm-hero-card .crm-flying-lead-icon {
    background: rgba(255, 255, 255, 0.1);
}

.crm-hero-card .crm-flying-lead--fb .crm-flying-lead-icon { color: #60a5fa; }
.crm-hero-card .crm-flying-lead--ig .crm-flying-lead-icon { color: #f472b6; }
.crm-hero-card .crm-flying-lead--tiktok .crm-flying-lead-icon { color: #e2e8f0; }
.crm-hero-card .crm-flying-lead--yt .crm-flying-lead-icon { color: #f87171; }
.crm-hero-card .crm-flying-lead--chat .crm-flying-lead-icon { color: #fbbf24; }

/* Animation keyframes — 24s loop, 5 lead sources */
@keyframes crm-msg-user-in {
    0%, 2.4% { opacity: 0; transform: translateY(6px) scale(0.96); }
    4.8%, 14.4% { opacity: 1; transform: translateY(0) scale(1); }
    16%, 100% { opacity: 0; transform: translateY(-4px) scale(0.94); }
}

@keyframes crm-msg-bot-in {
    0%, 5.6% { opacity: 0; transform: translateY(6px) scale(0.96); }
    8%, 14.4% { opacity: 1; transform: translateY(0) scale(1); }
    16%, 100% { opacity: 0; transform: translateY(-4px) scale(0.94); }
}

@keyframes crm-fly-chat {
    0%, 11.2% { opacity: 0; left: var(--fly-from-x); top: var(--fly-from-y); transform: translate(-50%, -50%) scale(0.85); }
    12.8% { opacity: 1; left: var(--fly-from-x); top: var(--fly-from-y); transform: translate(-50%, -50%) scale(1); }
    15.2% { opacity: 1; left: var(--fly-to-x); top: var(--fly-to-y); transform: translate(-50%, -50%) scale(0.95); }
    16%, 100% { opacity: 0; left: var(--fly-to-x); top: var(--fly-to-y); transform: translate(-50%, -50%) scale(0.8); }
}

@keyframes crm-fly-fb {
    0%, 27.2% { opacity: 0; left: var(--fly-from-x); top: var(--fly-from-y); transform: translate(-50%, -50%) scale(0.85); }
    28.8% { opacity: 1; left: var(--fly-from-x); top: var(--fly-from-y); transform: translate(-50%, -50%) scale(1); }
    31.2% { opacity: 1; left: var(--fly-to-x); top: var(--fly-to-y); transform: translate(-50%, -50%) scale(0.95); }
    32%, 100% { opacity: 0; left: var(--fly-to-x); top: var(--fly-to-y); transform: translate(-50%, -50%) scale(0.8); }
}

@keyframes crm-fly-ig {
    0%, 43.2% { opacity: 0; left: var(--fly-from-x); top: var(--fly-from-y); transform: translate(-50%, -50%) scale(0.85); }
    44.8% { opacity: 1; left: var(--fly-from-x); top: var(--fly-from-y); transform: translate(-50%, -50%) scale(1); }
    47.2% { opacity: 1; left: var(--fly-to-x); top: var(--fly-to-y); transform: translate(-50%, -50%) scale(0.95); }
    48%, 100% { opacity: 0; left: var(--fly-to-x); top: var(--fly-to-y); transform: translate(-50%, -50%) scale(0.8); }
}

@keyframes crm-fly-tiktok {
    0%, 59.2% { opacity: 0; left: var(--fly-from-x); top: var(--fly-from-y); transform: translate(-50%, -50%) scale(0.85); }
    60.8% { opacity: 1; left: var(--fly-from-x); top: var(--fly-from-y); transform: translate(-50%, -50%) scale(1); }
    63.2% { opacity: 1; left: var(--fly-to-x); top: var(--fly-to-y); transform: translate(-50%, -50%) scale(0.95); }
    64%, 100% { opacity: 0; left: var(--fly-to-x); top: var(--fly-to-y); transform: translate(-50%, -50%) scale(0.8); }
}

@keyframes crm-fly-yt {
    0%, 75.2% { opacity: 0; left: var(--fly-from-x); top: var(--fly-from-y); transform: translate(-50%, -50%) scale(0.85); }
    76% { opacity: 1; left: var(--fly-from-x); top: var(--fly-from-y); transform: translate(-50%, -50%) scale(1); }
    78.4% { opacity: 1; left: var(--fly-to-x); top: var(--fly-to-y); transform: translate(-50%, -50%) scale(0.95); }
    79.2%, 100% { opacity: 0; left: var(--fly-to-x); top: var(--fly-to-y); transform: translate(-50%, -50%) scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
    .crm-msg--user,
    .crm-msg--bot,
    .crm-flying-lead,
    .crm-lead-to-user,
    .crm-social-icon,
    .crm-chat-window {
        animation: none;
    }

    .crm-msg--user,
    .crm-msg--bot {
        opacity: 1;
        transform: none;
    }

    .crm-flying-lead,
    .crm-lead-to-user {
        display: none;
    }

    .crm-lead-notify {
        opacity: 1;
        transform: scale(1);
    }

    .crm-mobile-push {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 1025px) {
    .crm-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
        align-items: center;
        min-height: 380px;
    }

    .crm-hero-left {
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-start;
        padding-top: 180px;
        padding-left: clamp(2.5rem, 6vw, 5rem);
        text-align: left;
        gap: 0.75rem 1.25rem;
    }

    .crm-hero-copy {
        align-items: flex-start;
        flex: 1;
        min-width: 0;
    }

    .crm-hero-mobile {
        align-self: flex-end;
        margin-bottom: 0.25rem;
        flex-shrink: 0;
    }

    .crm-mobile-device {
        width: 108px;
    }

    .crm-mobile-frame {
        border-radius: 20px;
        padding: 6px;
        box-shadow:
            0 14px 28px rgba(15, 23, 42, 0.18),
            0 2px 0 rgba(255, 255, 255, 0.12) inset,
            0 -2px 0 rgba(0, 0, 0, 0.35) inset;
    }

    .crm-mobile-island {
        width: 34px;
        height: 9px;
        margin-bottom: 5px;
    }

    .crm-mobile-screen {
        min-height: 152px;
        border-radius: 14px;
    }

    .crm-mobile-status {
        padding: 5px 8px 2px;
        font-size: 0.48rem;
    }

    .crm-mobile-status-icons {
        font-size: 0.42rem;
        gap: 2px;
    }

    .crm-mobile-app-bar {
        padding: 0.25rem 8px 0.45rem;
    }

    .crm-mobile-app-dot {
        width: 6px;
        height: 6px;
    }

    .crm-mobile-app-title {
        font-size: 0.55rem;
    }

    .crm-mobile-body {
        padding: 6px 8px;
        gap: 5px;
    }

    .crm-mobile-lead-row {
        padding: 5px;
        gap: 5px;
        border-radius: 8px;
    }

    .crm-mobile-lead-avatar {
        width: 20px;
        height: 20px;
        font-size: 0.45rem;
        border-radius: 6px;
    }

    .crm-mobile-lead-lines {
        gap: 3px;
    }

    .crm-mobile-lead-lines span {
        height: 4px;
    }

    .crm-mobile-push {
        left: 5px;
        right: 5px;
        top: 38px;
        padding: 6px;
        gap: 5px;
        border-radius: 10px;
    }

    .crm-mobile-push-icon {
        width: 22px;
        height: 22px;
        font-size: 0.55rem;
        border-radius: 7px;
    }

    .crm-mobile-push-text strong {
        font-size: 0.5rem;
    }

    .crm-mobile-push-text span {
        font-size: 0.45rem;
    }

    .crm-hero-copy {
        padding-right: 0.5rem;
    }

    .crm-hero-heading {
        font-size: 3.5rem;
    }

    .crm-hero-tagline {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .crm-hero-right {
        padding-top: 180px;
        min-height: 280px;
        min-width: 0;
    }

    .crm-hero-card {
        max-width: 420px;
        min-height: 320px;
        padding: 2rem 1.75rem;
    }

    .crm-lead-flow {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .crm-hero-left {
        padding-top: 120px;
    }

    .crm-hero-heading {
        font-size: 2rem;
    }

    .crm-hero-card {
        border-radius: 24px;
        padding: 1.25rem 1rem;
    }

    .crm-lead-flow {
        height: 280px;
    }

    .crm-chat-window {
        width: 100%;
    }

    .crm-social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .crm-chat-body {
        min-height: 100px;
        padding: 0.65rem;
    }

    .crm-msg {
        font-size: 0.65rem;
        padding: 0.4rem 0.55rem;
    }

    .crm-lead-stack {
        width: 72px;
    }

    .crm-lead-stack-card {
        width: 64px;
        height: 46px;
    }
}

.crm-section-header {
    text-align: center;
    align-items: center;
    margin-bottom: 3rem;
}

.crm-section-intro {
    max-width: 640px;
    margin: 1.25rem auto 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.crm-problem-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.crm-problem-heading {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.crm-problem-diagram {
    position: relative;
    max-width: 1000px;
    margin: 2.5rem auto 0;
    min-height: clamp(420px, 52vw, 560px);
    border-radius: 28px;
    background: radial-gradient(ellipse 80% 70% at 50% 45%, #1a2234 0%, #0c1018 55%, #06080d 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.crm-problem-flow-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.crm-problem-orbit-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1.2;
}

.crm-problem-orbit-line--inner {
    stroke: rgba(255, 255, 255, 0.08);
}

.crm-problem-orbit-line--tight {
    stroke: rgba(255, 255, 255, 0.06);
}

.crm-problem-orbit-dot {
    fill: rgba(255, 255, 255, 0.22);
}

.crm-problem-connector {
    fill: none;
    stroke: rgba(255, 255, 255, 0.32);
    stroke-width: 1.5;
    stroke-dasharray: 5 9;
}

.crm-problem-connector--to-hub {
    stroke: rgba(255, 255, 255, 0.42);
    stroke-width: 1.75;
}

.crm-problem-orbit-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42%;
    height: 38%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.crm-problem-source {
    position: absolute;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.crm-problem-source--chat {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.crm-problem-source--phone {
    left: 46%;
    top: 4%;
    transform: translateX(-50%);
}

.crm-problem-source--web {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.crm-problem-node {
    position: absolute;
    z-index: 3;
    width: min(240px, 28vw);
    margin: 0;
}

.crm-problem-node--leads {
    left: 4%;
    top: 10%;
}

.crm-problem-node--excel {
    right: 4%;
    top: 10%;
}

.crm-problem-node--manual {
    right: 6%;
    bottom: 10%;
}

.crm-problem-node--calendar {
    left: 4%;
    bottom: 10%;
}

.crm-problem-node-time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.45rem;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.crm-problem-node-time i {
    font-size: 0.65rem;
    opacity: 0.85;
}

.crm-problem-node-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 0.9rem 1rem 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.crm-problem-node-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.crm-problem-node-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.25);
    color: #93c5fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.crm-problem-node-avatar--sheet {
    background: rgba(34, 197, 94, 0.22);
    color: #86efac;
}

.crm-problem-node-avatar--cal {
    background: rgba(248, 113, 113, 0.22);
    color: #fca5a5;
}

.crm-problem-node-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.crm-problem-node-lines span {
    display: block;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
}

.crm-problem-node-lines span:first-child {
    width: 88%;
}

.crm-problem-node-lines span:last-child {
    width: 62%;
}

.crm-problem-node-title {
    margin: 0 0 0.25rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.3;
}

.crm-problem-node-desc {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(248, 250, 252, 0.62);
}

.crm-problem-node-chips {
    display: flex;
    gap: 0.35rem;
}

.crm-problem-node-chips span {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
}

.crm-problem-node-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.crm-problem-node-grid span {
    height: 14px;
    border-radius: 3px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(134, 239, 172, 0.15);
}

.crm-problem-node-checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.crm-problem-node-checks li {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.crm-problem-node-cal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.crm-problem-node-cal span {
    height: 18px;
    border-radius: 4px;
    background: rgba(248, 113, 113, 0.18);
    border: 1px dashed rgba(252, 165, 165, 0.35);
}

.crm-problem-node-cal span.is-empty {
    background: transparent;
}

.crm-problem-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: min(280px, 34vw);
    text-align: center;
    padding: 1.35rem 1.5rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(59, 130, 246, 0.12) inset;
}

.crm-problem-hub-badge {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.crm-problem-hub-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.9);
}

.crm-problem-hub-title {
    margin: 0 0 0.4rem;
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.25;
}

.crm-problem-hub-desc {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.65);
}

.crm-solution-section .features-header-row {
    margin-bottom: 2rem;
}

.crm-solution-layout {
    align-items: stretch;
}

.crm-solution-layout .feature-col-globe.crm-solution-visual {
    background: transparent;
    box-shadow: none;
    overflow: visible;
    min-height: 0;
    margin-top: 0;
    padding: 0;
    align-items: stretch;
}

.crm-solution-diagram {
    position: relative;
    width: 100%;
    min-height: clamp(420px, 52vw, 560px);
    border-radius: 28px;
    background: radial-gradient(ellipse 80% 70% at 50% 45%, #1e293b 0%, #0c1018 55%, #06080d 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.crm-solution-flow-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.crm-solution-orbit-line {
    fill: none;
    stroke: rgba(96, 165, 250, 0.14);
    stroke-width: 1.2;
}

.crm-solution-orbit-line--inner {
    stroke: rgba(96, 165, 250, 0.1);
}

.crm-solution-orbit-line--tight {
    stroke: rgba(96, 165, 250, 0.08);
}

.crm-solution-connector {
    fill: none;
    stroke: rgba(96, 165, 250, 0.35);
    stroke-width: 1.5;
    stroke-dasharray: 5 9;
}

.crm-solution-connector--from-hub {
    stroke: rgba(34, 197, 94, 0.5);
    stroke-width: 1.75;
}

.crm-solution-orbit-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44%;
    height: 40%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.crm-solution-source {
    position: absolute;
    z-index: 2;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.crm-solution-node {
    position: absolute;
    z-index: 3;
    width: min(220px, 28vw);
    margin: 0;
}

.crm-solution-node--whatsapp {
    left: 4%;
    top: 10%;
}

.crm-solution-node--chat {
    right: 4%;
    top: 10%;
}

.crm-solution-node--assign {
    right: 6%;
    bottom: 10%;
}

.crm-solution-node--followup {
    left: 4%;
    bottom: 10%;
}

.crm-solution-node-time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(134, 239, 172, 0.85);
    margin-bottom: 0.45rem;
}

.crm-solution-node-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 18px;
    padding: 0.9rem 1rem 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.crm-solution-node-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.crm-solution-node-avatar {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.crm-solution-node-avatar--wa {
    background: rgba(34, 197, 94, 0.28);
    color: #86efac;
}

.crm-solution-node-avatar--chat {
    background: rgba(59, 130, 246, 0.28);
    color: #93c5fd;
}

.crm-solution-node-avatar--assign {
    background: rgba(168, 85, 247, 0.25);
    color: #d8b4fe;
}

.crm-solution-node-avatar--follow {
    background: rgba(251, 191, 36, 0.22);
    color: #fde68a;
}

.crm-solution-node-bubble {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.crm-solution-node-bubble span {
    display: block;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.14);
}

.crm-solution-node-bubble span:first-child {
    width: 82%;
}

.crm-solution-node-bubble span:last-child {
    width: 58%;
}

.crm-solution-node-bubble--pulse span {
    width: 70%;
    background: rgba(251, 191, 36, 0.35);
}

.crm-solution-node-tags {
    display: flex;
    gap: 0.35rem;
}

.crm-solution-node-tags span {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    background: rgba(168, 85, 247, 0.25);
    color: #e9d5ff;
}

.crm-solution-node-title {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.3;
}

.crm-solution-node-desc {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(248, 250, 252, 0.62);
}

.crm-solution-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: min(260px, 34vw);
    text-align: center;
    padding: 1.25rem 1.35rem 1.4rem;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(30, 58, 95, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    border: 1px solid rgba(96, 165, 250, 0.28);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(34, 197, 94, 0.15) inset;
}

.crm-solution-hub-badge {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.crm-solution-hub-brand {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #f8fafc;
}

.crm-solution-hub-title {
    margin: 0 0 0.45rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #93c5fd;
    line-height: 1.25;
}

.crm-solution-hub-desc {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.7);
}

.crm-solution-card {
    min-height: auto;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
}

.crm-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
}

.crm-benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
    color: #374151;
}

.crm-benefit-list i {
    color: #22c55e;
}

/* CRM features — scroll-driven panel swap (desktop) */
.crm-features-scroll {
    --crm-features-sticky-top: 80px;
    position: relative;
}

.crm-features-scroll.is-scroll-mode .crm-features-sticky {
    position: sticky;
    top: var(--crm-features-sticky-top);
    z-index: 6;
    height: calc(100vh - var(--crm-features-sticky-top));
    height: calc(100dvh - var(--crm-features-sticky-top));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent;
}

.crm-features-scroll.is-scroll-mode .crm-features-panels {
    position: relative;
    width: 100%;
    height: 100%;
}

.crm-features-scroll.is-scroll-mode .crm-feature-panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(28px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        visibility 0.5s ease;
    pointer-events: none;
    overflow: visible;
}

.crm-features-scroll.is-scroll-mode .crm-feature-panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.crm-features-scroll.is-scroll-mode .crm-feature-panel.is-past {
    transform: translateY(-20px);
}

.crm-features-scroll.is-scroll-mode .crm-feature-panel .crm-feature-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

#crm-feature-1 .crm-feature-section {
    padding-top: 2.75rem;
}

.crm-features-scroll .crm-feature-section--alt {
    background: transparent;
}

.crm-features-scroll.is-scroll-mode .crm-features-step {
    height: 100vh;
    height: 100dvh;
}

.crm-features-scroll.is-scroll-mode .crm-features-progress {
    position: absolute;
    right: clamp(1rem, 3vw, 2rem);
    bottom: 1.25rem;
    z-index: 8;
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    border-radius: 100px;
    background: rgba(15, 23, 42, 0.88);
    color: #f8fafc;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.crm-features-scroll.is-scroll-mode .crm-features-progress-current {
    font-size: 1rem;
    color: #fff;
}

.crm-features-scroll.is-scroll-mode .crm-features-progress-label,
.crm-features-scroll.is-scroll-mode .crm-features-progress-sep,
.crm-features-scroll.is-scroll-mode .crm-features-progress-total {
    color: rgba(248, 250, 252, 0.55);
    font-weight: 600;
}

.crm-features-scroll:not(.is-scroll-mode) .crm-features-sticky {
    position: relative;
    height: auto;
}

.crm-features-scroll:not(.is-scroll-mode) .crm-features-panels {
    display: flex;
    flex-direction: column;
}

.crm-features-scroll:not(.is-scroll-mode) .crm-feature-panel {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.crm-features-scroll:not(.is-scroll-mode) .crm-features-steps,
.crm-features-scroll:not(.is-scroll-mode) .crm-features-progress {
    display: none;
}

.crm-feature-section {
    padding: 5rem 0;
}

.crm-feature-section--alt {
    background: #f8fafc;
}

/* Feature 1 — AI Chatbot layout */
.crm-feature-content--v2 .crm-feature-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.85rem;
    padding: 0.3rem 1rem 0.3rem 0.35rem;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    background: #000000;
    border-radius: 9999px;
}

.crm-feature-content--v2 .crm-feature-label-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.crm-feature-content--v2 .crm-feature-label-text {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.crm-feature-content--v2 .section-heading-large {
    margin: 0 0 0.75rem;
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.crm-feature-content--v2 .crm-feature-lead {
    margin: 0 0 1.75rem;
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 300;
    color: #4b5563;
}

.crm-feature-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    table-layout: fixed;
}

.crm-feature-table th,
.crm-feature-table td {
    border: 1px solid #94a3b8;
    padding: 0.55rem 0.65rem;
    vertical-align: top;
    line-height: 1.45;
    text-align: left;
}

.crm-feature-table thead th {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    background: #f1f5f9;
    border-color: #64748b;
}

.crm-feature-table tbody td {
    font-weight: 500;
    color: #374151;
}

.crm-feature-table tbody td:last-child {
    color: #1f2937;
}

.crm-feature-visual.crm-feature-visual--widget {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    min-height: 0;
}

.crm-feature-visual-cluster {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: transparent;
}

.crm-feature-visual--widget .crm-feature-widget-img {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: min(100%, 280px);
    height: auto;
    flex: 0 0 auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    filter: drop-shadow(0 20px 32px rgba(15, 23, 42, 0.14));
}

.crm-feature-visual--widget .crm-feature-channel-icon {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
    pointer-events: none;
}

.crm-feature-visual--widget .crm-feature-channel-icon--whatsapp {
    margin-right: -10px;
}

.crm-feature-visual--widget .crm-feature-channel-icon--website {
    margin-left: -10px;
}

#crm-feature-1:not(.is-active) .crm-feature-reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: none;
}

#crm-feature-1.is-active .crm-feature-reveal {
    animation: crm-feature-reveal-in 0.65s ease forwards;
}

#crm-feature-1.is-active .crm-feature-label { animation-delay: 0.05s; }
#crm-feature-1.is-active .crm-feature-content--v2 > .section-heading-large { animation-delay: 0.15s; }
#crm-feature-1.is-active .crm-feature-lead { animation-delay: 0.25s; }
#crm-feature-1.is-active .crm-feature-table { animation-delay: 0.38s; }

#crm-feature-2:not(.is-active) .crm-feature-reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: none;
}

#crm-feature-2.is-active .crm-feature-reveal {
    animation: crm-feature-reveal-in 0.65s ease forwards;
}

#crm-feature-2.is-active .crm-feature-label { animation-delay: 0.05s; }
#crm-feature-2.is-active .crm-feature-content--v2 > .section-heading-large { animation-delay: 0.15s; }
#crm-feature-2.is-active .crm-feature-lead { animation-delay: 0.25s; }
#crm-feature-2.is-active .crm-feature-table { animation-delay: 0.38s; }

#crm-feature-2 .crm-feature-section {
    padding-top: 2.75rem;
}

#crm-feature-3:not(.is-active) .crm-feature-reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: none;
}

#crm-feature-3.is-active .crm-feature-reveal {
    animation: crm-feature-reveal-in 0.65s ease forwards;
}

#crm-feature-3.is-active .crm-feature-label { animation-delay: 0.05s; }
#crm-feature-3.is-active .crm-feature-content--v2 > .section-heading-large { animation-delay: 0.15s; }
#crm-feature-3.is-active .crm-feature-lead { animation-delay: 0.25s; }
#crm-feature-3.is-active .crm-feature-platform-icons { animation-delay: 0.32s; }
#crm-feature-3.is-active .crm-feature-table { animation-delay: 0.42s; }

#crm-feature-3 .crm-feature-section {
    padding-top: 2.75rem;
}

#crm-feature-4:not(.is-active) .crm-feature-reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: none;
}

#crm-feature-4.is-active .crm-feature-reveal {
    animation: crm-feature-reveal-in 0.65s ease forwards;
}

#crm-feature-4.is-active .crm-feature-label { animation-delay: 0.05s; }
#crm-feature-4.is-active .crm-feature-content--v2 > .section-heading-large { animation-delay: 0.15s; }
#crm-feature-4.is-active .crm-feature-lead { animation-delay: 0.25s; }
#crm-feature-4.is-active .crm-feature-table { animation-delay: 0.38s; }

#crm-feature-4 .crm-feature-section {
    padding-top: 2.75rem;
}

.crm-feature-visual.crm-feature-visual--scoring {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    min-height: 0;
}

.crm-feature-scoring-board {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.crm-feature-score-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.crm-feature-score-card--dim {
    opacity: 0.72;
}

.crm-feature-score-card--hot {
    border-color: #fca5a5;
    background: linear-gradient(90deg, #fff5f5 0%, #fff 55%);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.14);
    opacity: 1;
}

.crm-feature-score-hot-badge {
    position: absolute;
    top: -0.45rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.58rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.crm-feature-score-hot-badge i {
    font-size: 0.52rem;
}

.crm-feature-score-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crm-feature-score-card--hot .crm-feature-score-avatar {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.crm-feature-score-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.crm-feature-score-info strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.crm-feature-score-meter {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.crm-feature-score-meter i {
    display: block;
    height: 100%;
    width: calc(var(--score, 50) * 1%);
    max-width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.crm-feature-score-meter--hot i {
    background: linear-gradient(90deg, #f97316, #ef4444);
}

.crm-feature-score-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #475569;
    line-height: 1;
    min-width: 2.25rem;
    text-align: right;
}

.crm-feature-score-value--hot {
    color: #dc2626;
    font-size: 1.35rem;
}

@media (max-width: 600px) {
    .crm-feature-scoring-board {
        max-width: 100%;
    }
}

#crm-feature-5:not(.is-active) .crm-feature-reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: none;
}

#crm-feature-5.is-active .crm-feature-reveal {
    animation: crm-feature-reveal-in 0.65s ease forwards;
}

#crm-feature-5.is-active .crm-feature-label { animation-delay: 0.05s; }
#crm-feature-5.is-active .crm-feature-content--v2 > .section-heading-large { animation-delay: 0.15s; }
#crm-feature-5.is-active .crm-feature-lead { animation-delay: 0.25s; }
#crm-feature-5.is-active .crm-feature-table { animation-delay: 0.38s; }

#crm-feature-5 .crm-feature-section {
    padding-top: 2.75rem;
}

.crm-feature-visual.crm-feature-visual--reports {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    min-height: 0;
}

.crm-feature-reports-browser {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.crm-reports-body {
    padding: 0.6rem 0.65rem 0.7rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.crm-reports-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.crm-reports-head strong {
    font-size: 0.74rem;
    color: #1e293b;
}

.crm-reports-ai {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.52rem;
    font-weight: 700;
    color: #7c3aed;
    padding: 0.2rem 0.45rem;
    background: #f5f3ff;
    border-radius: 999px;
}

.crm-reports-ai i {
    font-size: 0.5rem;
}

.crm-reports-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    margin-bottom: 0.55rem;
}

.crm-reports-kpi {
    padding: 0.4rem 0.45rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
}

.crm-reports-kpi span {
    display: block;
    font-size: 0.48rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.crm-reports-kpi strong {
    font-size: 0.72rem;
    color: #1e293b;
}

.crm-reports-kpi--highlight {
    border-color: #93c5fd;
    background: #eff6ff;
}

.crm-reports-kpi--highlight strong {
    color: #2563eb;
}

.crm-reports-section-title {
    margin: 0 0 0.4rem;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}

.crm-reports-platforms {
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.crm-reports-platforms li {
    display: grid;
    grid-template-columns: 18px 72px 1fr auto;
    align-items: center;
    gap: 0.35rem;
}

.crm-reports-platforms img {
    display: block;
    width: 18px !important;
    height: 18px !important;
    max-width: 18px;
    max-height: 18px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.crm-reports-platform-name {
    font-size: 0.55rem;
    font-weight: 600;
    color: #475569;
}

.crm-reports-bar {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.crm-reports-bar::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--w, 50%);
    border-radius: inherit;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.crm-reports-bar--top::after {
    background: linear-gradient(90deg, #34d399, #10b981);
}

.crm-reports-num {
    font-size: 0.55rem;
    font-weight: 700;
    color: #1e293b;
    min-width: 1.75rem;
    text-align: right;
}

.crm-reports-insight {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.45rem 0.5rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
}

.crm-reports-insight i {
    color: #d97706;
    font-size: 0.65rem;
    margin-top: 0.1rem;
}

.crm-reports-insight p {
    margin: 0;
    font-size: 0.52rem;
    line-height: 1.45;
    color: #92400e;
}

.crm-reports-insight strong {
    color: #78350f;
}

@media (max-width: 600px) {
    .crm-feature-reports-browser {
        max-width: 100%;
    }
}

#crm-feature-6:not(.is-active) .crm-feature-reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: none;
}

#crm-feature-6.is-active .crm-feature-reveal {
    animation: crm-feature-reveal-in 0.65s ease forwards;
}

#crm-feature-6.is-active .crm-feature-label { animation-delay: 0.05s; }
#crm-feature-6.is-active .crm-feature-content--v2 > .section-heading-large { animation-delay: 0.15s; }
#crm-feature-6.is-active .crm-feature-lead { animation-delay: 0.25s; }
#crm-feature-6.is-active .crm-feature-store-badges { animation-delay: 0.32s; }
#crm-feature-6.is-active .crm-feature-table { animation-delay: 0.42s; }

#crm-feature-6 .crm-feature-section {
    padding-top: 2.75rem;
}

.crm-feature-store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1.5rem;
}

.crm-feature-store-badge {
    display: block;
    width: auto !important;
    height: 36px !important;
    max-width: 130px;
    max-height: 36px;
    border-radius: 6px;
    box-shadow: none;
    object-fit: contain;
}

.crm-feature-visual.crm-feature-visual--access {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0;
    min-height: 0;
    overflow: visible;
}

.crm-feature-access-duo {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 1.5rem 4.5rem 0;
}

.crm-feature-access-web {
    width: 100%;
    border: 2px solid #cbd5e1;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.crm-feature-access-web .crm-browser-chrome {
    padding: 0.55rem 0.7rem;
}

.crm-feature-access-web .crm-browser-url {
    padding: 0.4rem 0.65rem;
    font-size: 0.68rem;
}

.crm-access-screen {
    padding: 0.55rem 0.6rem 0.65rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.crm-access-screen--web {
    padding: 0.85rem 0.95rem 1.1rem;
    min-height: 200px;
}

.crm-access-brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #e2e8f0;
}

.crm-access-logo {
    display: block;
    width: auto !important;
    height: 22px !important;
    max-height: 22px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.crm-access-screen--web .crm-access-logo {
    height: 30px !important;
    max-height: 30px;
}

.crm-access-screen--web .crm-access-brand {
    margin-bottom: 0.65rem;
    padding-bottom: 0.6rem;
}

.crm-access-screen--web .crm-access-card {
    padding: 0.55rem 0.65rem;
}

.crm-access-screen--web .crm-access-card span {
    font-size: 0.55rem;
}

.crm-access-screen--web .crm-access-card strong {
    font-size: 0.95rem;
}

.crm-access-screen--web .crm-access-cards {
    gap: 0.5rem;
}

.crm-access-logo--mobile {
    height: 20px !important;
    max-height: 20px;
    width: 20px !important;
    max-width: 20px;
}

.crm-access-screen--mobile .crm-access-brand span {
    font-size: 0.62rem;
    font-weight: 700;
    color: #1e293b;
}

.crm-access-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
}

.crm-access-card {
    padding: 0.4rem 0.45rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.crm-access-card span {
    display: block;
    font-size: 0.48rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.crm-access-card strong {
    font-size: 0.78rem;
    color: #1e293b;
    line-height: 1.2;
}

.crm-access-card--wide {
    grid-column: 1 / -1;
}

.crm-access-card--report {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.crm-access-card--report i {
    font-size: 0.85rem;
    color: #2563eb;
}

.crm-access-card--report div {
    display: flex;
    flex-direction: column;
}

.crm-feature-access-mobile {
    position: absolute;
    right: -0.25rem;
    bottom: 0;
    z-index: 4;
    filter: drop-shadow(0 16px 32px rgba(15, 23, 42, 0.22));
}

.crm-feature-access-mobile .crm-mobile-device {
    width: min(188px, 40vw);
}

.crm-feature-access-mobile .crm-mobile-frame {
    border-radius: 30px;
    padding: 11px;
}

.crm-feature-access-mobile .crm-mobile-screen {
    min-height: 228px;
    border-radius: 22px;
}

.crm-access-screen--mobile {
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.crm-access-screen--mobile .crm-access-cards {
    flex: 1;
}

@media (max-width: 600px) {
    .crm-feature-access-duo {
        max-width: 300px;
        padding: 0 0.5rem 3.75rem 0;
    }

    .crm-feature-access-web {
        width: 100%;
    }

    .crm-feature-access-mobile {
        right: -0.5rem;
    }

    .crm-feature-access-mobile .crm-mobile-device {
        width: min(150px, 44vw);
    }

    .crm-feature-store-badge {
        height: 32px !important;
        max-width: 118px;
    }
}

.crm-feature-platform-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1.5rem;
}

.crm-feature-platform-icons img {
    display: block;
    width: 32px !important;
    height: 32px !important;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    background: #fff;
    padding: 4px;
}

.crm-feature-table--benefits-only thead th {
    width: 100%;
}

.crm-feature-table--benefits-only tbody td {
    font-weight: 500;
}

.crm-feature-visual.crm-feature-visual--dashboard {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    min-height: 0;
}

.crm-feature-visual--dashboard img {
    width: auto;
    height: auto;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.crm-feature-dashboard-flow {
    display: grid;
    grid-template-columns: 44px 52px minmax(0, 1fr);
    grid-template-rows: repeat(6, minmax(36px, auto));
    column-gap: 0;
    row-gap: 0.35rem;
    align-items: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.crm-feature-dashboard-sources {
    display: contents;
}

.crm-feature-dashboard-source {
    display: contents;
}

.crm-feature-dashboard-icon {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.crm-feature-dashboard-source:nth-child(1) .crm-feature-dashboard-icon { grid-row: 1; }
.crm-feature-dashboard-source:nth-child(2) .crm-feature-dashboard-icon { grid-row: 2; }
.crm-feature-dashboard-source:nth-child(3) .crm-feature-dashboard-icon { grid-row: 3; }
.crm-feature-dashboard-source:nth-child(4) .crm-feature-dashboard-icon { grid-row: 4; }
.crm-feature-dashboard-source:nth-child(5) .crm-feature-dashboard-icon { grid-row: 5; }
.crm-feature-dashboard-source:nth-child(6) .crm-feature-dashboard-icon { grid-row: 6; }

.crm-feature-dashboard-icon img {
    display: block;
    width: 28px !important;
    height: 28px !important;
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
}

.crm-feature-dashboard-connector {
    grid-column: 2;
    display: block;
    flex: none;
    width: 52px;
    height: 20px;
    color: #3b82f6;
    overflow: visible;
}

.crm-feature-dashboard-source:nth-child(1) .crm-feature-dashboard-connector { grid-row: 1; }
.crm-feature-dashboard-source:nth-child(2) .crm-feature-dashboard-connector { grid-row: 2; }
.crm-feature-dashboard-source:nth-child(3) .crm-feature-dashboard-connector { grid-row: 3; }
.crm-feature-dashboard-source:nth-child(4) .crm-feature-dashboard-connector { grid-row: 4; }
.crm-feature-dashboard-source:nth-child(5) .crm-feature-dashboard-connector { grid-row: 5; }
.crm-feature-dashboard-source:nth-child(6) .crm-feature-dashboard-connector { grid-row: 6; }

.crm-feature-dashboard-path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 5 5;
    animation: crm-feature-dashboard-flow 2.4s linear infinite;
}

.crm-feature-dashboard-path-dot {
    fill: #3b82f6;
}

.crm-feature-dashboard-source:nth-child(odd) .crm-feature-dashboard-path {
    animation-delay: 0.2s;
}

.crm-feature-dashboard-source:nth-child(even) .crm-feature-dashboard-path {
    animation-delay: 0.6s;
}

@keyframes crm-feature-dashboard-flow {
    to {
        stroke-dashoffset: -20;
    }
}

.crm-feature-dashboard-browser {
    grid-column: 3;
    grid-row: 1 / -1;
    align-self: center;
    min-width: 0;
    margin-left: 0.15rem;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.crm-browser-chrome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.55rem;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.crm-browser-controls {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.crm-browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.crm-browser-dot:nth-child(1) { background: #ef4444; }
.crm-browser-dot:nth-child(2) { background: #f59e0b; }
.crm-browser-dot:nth-child(3) { background: #22c55e; }

.crm-browser-url {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
    padding: 0.3rem 0.55rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.58rem;
    font-weight: 600;
    color: #475569;
}

.crm-browser-url i {
    font-size: 0.5rem;
    color: #22c55e;
}

.crm-browser-url span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.crm-browser-body {
    padding: 0.55rem 0.6rem 0.65rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.crm-browser-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.45rem;
}

.crm-browser-head strong {
    font-size: 0.72rem;
    color: #1e293b;
}

.crm-browser-live {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.52rem;
    font-weight: 700;
    color: #16a34a;
}

.crm-browser-live i {
    font-size: 0.35rem;
}

.crm-browser-leads {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.crm-browser-lead {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.45rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.crm-browser-lead img {
    display: block;
    width: 20px !important;
    height: 20px !important;
    max-width: 20px;
    max-height: 20px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.crm-browser-lead-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.crm-browser-lead-meta strong {
    font-size: 0.62rem;
    color: #1e293b;
    line-height: 1.2;
}

.crm-browser-lead-meta span {
    font-size: 0.52rem;
    color: #64748b;
    line-height: 1.2;
}

.crm-browser-lead-badge {
    flex-shrink: 0;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.15rem 0.35rem;
    border-radius: 6px;
    background: #eff6ff;
    color: #2563eb;
}

.crm-browser-lead-badge--hot {
    background: #fef2f2;
    color: #dc2626;
}

.crm-browser-lead-badge--warm {
    background: #fffbeb;
    color: #d97706;
}

@media (max-width: 600px) {
    .crm-feature-dashboard-flow {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        max-width: 100%;
        width: 100%;
        padding: 0 0.25rem;
    }

    .crm-feature-dashboard-sources {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.55rem;
        width: 100%;
        max-width: 320px;
        order: 2;
        justify-items: center;
    }

    .crm-feature-dashboard-source {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .crm-feature-dashboard-icon {
        grid-column: unset;
        grid-row: unset;
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .crm-feature-dashboard-source:nth-child(n) .crm-feature-dashboard-icon {
        grid-column: unset;
        grid-row: unset;
    }

    .crm-feature-dashboard-icon img {
        width: 30px !important;
        height: 30px !important;
        max-width: 30px;
        max-height: 30px;
    }

    .crm-feature-dashboard-connector {
        display: none;
    }

    .crm-feature-dashboard-browser {
        order: 1;
        grid-column: unset;
        grid-row: unset;
        align-self: stretch;
        width: 100%;
        max-width: 360px;
        margin-left: 0;
        margin-bottom: 0;
    }

    .crm-feature-content--v2 .crm-feature-platform-icons {
        justify-content: center;
        gap: 0.5rem;
    }

    .crm-feature-platform-icons img {
        width: 36px !important;
        height: 36px !important;
        max-width: 36px;
        max-height: 36px;
    }
}

.crm-feature-visual.crm-feature-visual--qualify {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    min-height: 0;
}

.crm-feature-qualify-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.crm-feature-qualify-card {
    flex: 0 0 auto;
    width: min(168px, 38vw);
    padding: 0.85rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.crm-feature-qualify-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.65rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.62rem;
    font-weight: 700;
    color: #166534;
    background: #dcfce7;
    border-radius: 999px;
}

.crm-feature-qualify-card-badge i {
    font-size: 0.55rem;
}

.crm-feature-qualify-card-head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.65rem;
}

.crm-feature-qualify-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crm-feature-qualify-lines {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.crm-feature-qualify-lines strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.crm-feature-qualify-lines span {
    font-size: 0.58rem;
    color: #64748b;
    line-height: 1.3;
}

.crm-feature-qualify-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.crm-feature-qualify-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.45rem;
    font-size: 0.58rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    border-radius: 8px;
}

.crm-feature-qualify-meta span i {
    font-size: 0.52rem;
    color: #3b82f6;
}

.crm-feature-qualify-link {
    position: relative;
    flex: 0 0 auto;
    width: 72px;
    color: #3b82f6;
}

.crm-feature-qualify-link-svg {
    display: block;
    width: 100%;
    height: auto;
}

.crm-feature-qualify-link-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
    animation: crm-feature-qualify-pulse 1.8s ease infinite;
}

@keyframes crm-feature-qualify-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.crm-feature-qualify-mobile {
    flex: 0 0 auto;
}

.crm-feature-qualify-mobile .crm-mobile-device {
    width: min(248px, 50vw);
    transform: scale(1.04);
    filter: drop-shadow(0 0 24px rgba(59, 130, 246, 0.35));
}

.crm-feature-qualify-mobile .crm-mobile-frame {
    border-radius: 34px;
    padding: 12px;
}

.crm-feature-qualify-mobile .crm-mobile-island {
    width: 68px;
    height: 18px;
    margin-bottom: 10px;
}

.crm-feature-qualify-mobile .crm-mobile-screen {
    min-height: 320px;
    border-radius: 26px;
}

.crm-feature-qualify-mobile .crm-mobile-status {
    padding: 10px 14px 6px;
    font-size: 0.72rem;
}

.crm-feature-qualify-mobile .crm-mobile-status-icons {
    font-size: 0.62rem;
}

.crm-feature-qualify-mobile .crm-mobile-app-bar {
    padding: 0.45rem 14px 0.8rem;
}

.crm-feature-qualify-mobile .crm-mobile-app-dot {
    width: 10px;
    height: 10px;
}

.crm-feature-qualify-mobile .crm-mobile-app-title {
    font-size: 0.82rem;
}

.crm-feature-qualify-mobile .crm-mobile-body {
    padding: 12px 14px;
    gap: 10px;
}

.crm-feature-qualify-mobile .crm-mobile-lead-row {
    padding: 10px;
    gap: 10px;
}

.crm-feature-qualify-mobile .crm-mobile-lead-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.68rem;
}

.crm-feature-qualify-mobile .crm-mobile-lead-lines span {
    height: 6px;
}

.crm-feature-qualify-mobile .crm-mobile-push {
    opacity: 1;
    transform: translateY(0) scale(1);
    top: 58px;
    left: 10px;
    right: 10px;
    padding: 12px;
    gap: 10px;
}

.crm-feature-qualify-mobile .crm-mobile-push-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
}

.crm-feature-qualify-mobile .crm-mobile-push-text strong {
    font-size: 0.78rem;
}

.crm-feature-qualify-mobile .crm-mobile-push-text span {
    font-size: 0.68rem;
}

.crm-mobile-lead-row--highlight {
    border-color: #93c5fd;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15);
}

@media (max-width: 600px) {
    .crm-feature-qualify-flow {
        flex-direction: column;
        gap: 1rem;
        max-width: 240px;
    }

    .crm-feature-qualify-link {
        width: 48px;
        transform: rotate(90deg);
    }

    .crm-feature-qualify-card {
        width: 100%;
    }
}

@keyframes crm-feature-reveal-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crm-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.crm-feature-row--reverse .crm-feature-content {
    order: 2;
}

.crm-feature-row--reverse .crm-feature-visual {
    order: 1;
}

.crm-feature-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.75rem 0 1rem;
}

.crm-feature-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.crm-feature-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.crm-feature-columns h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.crm-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.crm-check-list li {
    position: relative;
    padding-left: 1.25rem;
    color: #374151;
    line-height: 1.5;
    font-size: 0.98rem;
}

.crm-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.crm-check-list--benefit li::before {
    background: #22c55e;
}

.crm-eye-opener {
    margin: 1.5rem 0 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(90deg, #eff6ff 0%, transparent 100%);
    border-radius: 0 16px 16px 0;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1e293b;
    line-height: 1.6;
}

.crm-feature-visual:not(.crm-feature-visual--dashboard):not(.crm-feature-visual--qualify):not(.crm-feature-visual--scoring):not(.crm-feature-visual--reports):not(.crm-feature-visual--access) img:not(.crm-feature-channel-icon):not(.crm-feature-widget-img) {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

@media (max-width: 600px) {
    .crm-feature-visual-cluster {
        gap: 0.25rem;
    }

    .crm-feature-visual--widget .crm-feature-channel-icon {
        width: 40px;
        height: 40px;
        max-width: 40px;
        max-height: 40px;
    }

    .crm-feature-visual--widget .crm-feature-widget-img {
        max-width: 220px;
    }
}

.crm-platform-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.crm-platform-logos img {
    height: 28px;
    width: auto;
    opacity: 0.85;
}

.crm-platform-tag {
    display: inline-flex;
    padding: 0.35rem 0.85rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
}

.crm-final-cta {
    padding: 5rem 0 6rem;
}

.crm-final-cta-card {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-radius: 32px;
    padding: 4rem 2.5rem;
    color: #fff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
    position: relative;
    overflow: hidden;
}

.crm-final-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.crm-final-cta-card .section-tag {
    color: #93c5fd;
    border-color: rgba(255, 255, 255, 0.15);
}

.crm-final-cta-card .section-heading-large {
    color: #fff;
    margin-top: 1rem;
}

.crm-final-cta-card .text-muted-gradient {
    color: #94a3b8;
}

.crm-final-cta-lead {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
    color: #e2e8f0;
}

.crm-final-cta-desc {
    max-width: 620px;
    margin: 0 auto 2rem;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1.05rem;
}

.crm-final-cta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.crm-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e1;
}

.crm-stat-pill i {
    color: #60a5fa;
}

.crm-final-cta-buttons {
    position: relative;
    z-index: 1;
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
}

.crm-final-cta .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.crm-final-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 968px) {
    .crm-solution-diagram {
        min-height: 680px;
    }

    .crm-solution-node {
        width: min(200px, 42vw);
    }

    .crm-solution-flow-svg {
        opacity: 0.7;
    }

    .crm-problem-diagram {
        min-height: 720px;
    }

    .crm-problem-node {
        width: min(200px, 42vw);
    }

    .crm-problem-node--leads {
        left: 3%;
        top: 6%;
    }

    .crm-problem-node--excel {
        right: 3%;
        top: 6%;
    }

    .crm-problem-node--manual {
        right: 3%;
        bottom: 6%;
        top: auto;
    }

    .crm-problem-node--calendar {
        left: 3%;
        bottom: 6%;
        top: auto;
    }

    .crm-problem-hub {
        width: min(260px, 72vw);
    }

    .crm-problem-flow-svg {
        opacity: 0.65;
    }

    .crm-feature-row,
    .crm-feature-row--reverse {
        grid-template-columns: 1fr;
    }

    .crm-feature-row--reverse .crm-feature-content,
    .crm-feature-row--reverse .crm-feature-visual {
        order: unset;
    }

    .crm-feature-columns {
        grid-template-columns: 1fr;
    }

    .crm-feature-table {
        font-size: 0.75rem;
    }

    .crm-feature-table th,
    .crm-feature-table td {
        padding: 0.45rem 0.5rem;
    }

    .crm-final-cta-card {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .crm-solution-diagram {
        min-height: auto;
        padding: 1.25rem 1rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .crm-solution-flow-svg,
    .crm-solution-orbit-glow,
    .crm-solution-source {
        display: none;
    }

    .crm-solution-node {
        position: static;
        width: 100%;
    }

    .crm-solution-hub {
        position: static;
        transform: none;
        width: 100%;
        order: -1;
        margin-bottom: 0.25rem;
    }

    .crm-problem-diagram {
        min-height: auto;
        padding: 1.25rem 1rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        background: #0c1018;
    }

    .crm-problem-flow-svg,
    .crm-problem-orbit-glow,
    .crm-problem-source {
        display: none;
    }

    .crm-problem-node {
        position: static;
        width: 100%;
    }

    .crm-problem-node-time {
        margin-bottom: 0.35rem;
    }

    .crm-problem-hub {
        position: static;
        transform: none;
        width: 100%;
        order: -1;
        margin-bottom: 0.25rem;
    }

    .crm-problem-hub-badge {
        right: 1rem;
    }
}

