:root {
    --bg-dark: #ffffff;
    --bg-card: #f8f9fa;
    --border-color: rgba(0, 0, 0, 0.08);
    
    --primary: #ff6a00;
    --primary-hover: #ff8c3a;
    --secondary: #2563eb;
    --accent-purple: #8a2be2;
    --error: #ff4757;
    
    --text-main: #111827;
    --text-muted: #6b7280;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }

.section {
    padding: 100px 0;
}

#why-us {
    padding-top: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #e65c00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.5);
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 106, 0, 0.1);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.logo span span {
    font-weight: 400;
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 110px 0 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, rgba(255, 106, 0, 0.05) 40%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

/* === ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

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

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

.animate-fade-up { animation: fadeUp 0.8s forwards; }
.animate-fade-left { animation: fadeInLeft 0.8s forwards; }

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

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start; /* Aligns content to top as requested */
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-indicators {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat .highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.hero-image .glass-card {
    padding: 10px;
    position: relative;
}

.hero-image {
    margin-top: 0; /* Image top aligns with badge level */
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.hero-image .trust-indicators {
    margin-top: 30px; /* Stats sit below image, parallel to CTA button area */
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.floating-badge i {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.floating-badge div {
    display: flex;
    flex-direction: column;
}

.floating-badge span {
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* === TRUST ELEMENTS === */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
}

.trust-summary-grid {
    display: flex;
    gap: 40px; /* Adjusted column gap for better row fit */
    margin-top: 0; /* Removing global margin to control it via parent */
    flex-wrap: nowrap; /* Force single row on desktop */
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-item .valueHighlight {
    font-family: 'Outfit', sans-serif;
    font-weight: 800; /* Balanced bold */
    font-size: 2.3rem; /* Adjusted for row-fit */
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.trust-item .label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.rating-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4b5563;
}

.rating-tag.centered {
    justify-content: center;
    width: 100%;
}

.rating-tag .stars {
    display: flex;
    gap: 2px;
}

@media (max-width: 1024px) {
    .trust-summary-grid {
        gap: 32px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        align-items: center;
    }
    .trust-summary-grid {
        justify-content: center;
        text-align: center;
    }
    .trust-item .valueHighlight {
        font-size: 1.8rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }

    .hide-mobile {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-text p {
        margin: 0 auto 40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }

    .case-study-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .case-study-visual {
        order: -1;
        margin-bottom: 30px;
    }

    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 20px auto 0;
    }

    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-benefits {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .grid-5, .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }

    .service-row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .service-row.reverse {
        flex-direction: column;
    }

    .case-study-metrics {
        grid-template-columns: 1fr;
    }

    .m-value {
        font-size: 1.5rem;
    }

    .m-valueHighlight {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .btn-lg {
        padding: 16px 24px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-fade-up {
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-left {
    opacity: 0;
    animation: fadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Integration Strip */
.integration-strip {
    background: var(--bg-dark);
    padding: 40px 0 20px;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.strip-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
    min-width: 100vw;
    justify-content: space-around;
    animation: scroll-x 15s linear infinite;
}

.crm-img {
    height: 120px;
    width: 250px;
    object-fit: contain;
    filter: opacity(0.5);
    transition: filter 0.3s, transform 0.3s;
    user-select: none;
    cursor: pointer;
    transform: scale(2);
}

.crm-img:hover {
    filter: opacity(1);
    transform: scale(2.2);
}

@keyframes scroll-x {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Revenue Counter */
.revenue-counter-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-bottom: 1px solid var(--border-color);
}

.counter-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
}

.counter-value {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin: 15px 0;
    text-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.counter-subtext {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Sections Common */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* Problems Section (Cards) */
.card {
    padding: 40px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-wrapper i { width: 30px; height: 30px; }
.icon-wrapper.red { background: rgba(255, 71, 87, 0.1); color: var(--error); border: 1px solid rgba(255, 71, 87, 0.2); }
.icon-wrapper.blue { background: rgba(0, 243, 255, 0.1); color: var(--secondary); border: 1px solid rgba(0, 243, 255, 0.2); }
.icon-wrapper.orange { background: rgba(255, 106, 0, 0.1); color: var(--primary); border: 1px solid rgba(255, 106, 0, 0.2); }
.icon-wrapper.purple { background: rgba(138, 43, 226, 0.1); color: var(--accent-purple); border: 1px solid rgba(138, 43, 226, 0.2); }
.icon-wrapper.yellow { background: rgba(255, 215, 0, 0.1); color: #ffd700; border: 1px solid rgba(255, 215, 0, 0.2); }
.icon-wrapper.cyan { background: rgba(0, 255, 255, 0.1); color: #00ffff; border: 1px solid rgba(0, 255, 255, 0.2); }

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

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

/* Services */
.services { position: relative; }
.services-bg-glow {
    position: absolute;
    top: 30%;
    left: -20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.service-row.reverse .service-text { order: 2; }
.service-row.reverse .service-image { order: 1; }

.service-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.feature-list i {
    color: var(--secondary);
}

.service-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
}

.placeholder-graphic {
    width: 100%;
    height: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.huge-icon {
    width: 100px;
    height: 100px;
    color: var(--border-color);
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 243, 255, 0.2);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 1;
}

.orange-glow .glow-effect {
    background: rgba(255, 106, 0, 0.2);
}

/* Highlights */
.highlights {
    background: rgba(20, 20, 28, 0.3);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.highlight-item i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.highlight-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

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

/* Guarantee Section */
.guarantee-section {
    padding: 100px 0;
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.guarantee-icon i {
    width: 70px;
    height: 70px;
    color: #22c55e;
    filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.4));
}

.guarantee-content h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    line-height: 1.1;
}

.guarantee-content h3 {
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.guarantee-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
}

/* CTA Section */
.cta-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 60px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border-radius: 20px;
}

.cta-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.cta-benefits i {
    color: var(--primary);
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    padding: 4px;
    width: 24px;
    height: 24px;
}

.cta-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-form input {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.08);
}

/* CRM Integration Section */
.crm-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.03) 0%, transparent 70%);
}

.crm-marquee-wrapper {
    margin-top: 40px;
    overflow: hidden; /* Hide the overflow for infinite scroll */
    position: relative;
    width: 100%;
}

/* Linear gradient masks to fade the edges of the marquee */
.crm-marquee-wrapper::before,
.crm-marquee-wrapper::after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: "";
    z-index: 2;
}
.crm-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}
.crm-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.crm-marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
    padding: 20px 0;
    animation: scroll 20s linear infinite;
    /* Pause animation on hover */
    will-change: transform;
}

.crm-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move left by exactly half the track width (the width of the first 5 duplicated logos + their gaps) */
        transform: translateX(calc(-50% - 15px)); 
    }
}

.crm-logo-wrapper {
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    min-width: 250px; /* Slightly wider to accommodate larger logos */
}

.crm-logo-wrapper:hover {
    transform: translateY(-5px);
}

.crm-logo-wrapper img {
    height: 60px; /* Increased by 50% from 40px */
    max-width: 225px; /* Increased by 50% from 150px */
    object-fit: contain;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    font-size: 0.9rem;
}

/* Lead Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-dark);
    width: 90%;
    max-width: 900px;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: white;
}

/* Modal Specific Alignment Overrides */
.modal-content .cta-benefits {
    /* Stack the tick marks so they don't break onto new lines awkwardly in the smaller modal space */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content .cta-text h2 {
    font-size: 2.2rem;
    line-height: 1.2;
}

.modal-content .cta-box {
    gap: 40px;
    align-items: center;
}

/* Partner Badges */
.partner-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
}

.partner-badges .badge {
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-badges .badge:hover {
    transform: translateY(-3px);
}

/* Footer Contact Area */
.footer-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.footer-column h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-column p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary);
}

/* Responsive */
/* Case Study Section */
.case-study {
    background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.05) 0%, transparent 50%);
}

.case-study-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 60px;
    margin-top: 40px;
    align-items: center;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.client-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.client-info h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.client-info .status {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-story {
    margin-bottom: 40px;
}

.narrative {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--primary);
}

.outcome-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.m-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1;
}

.m-valueHighlight {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: var(--font-heading);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.m-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.case-study-visual {
    position: relative;
}

.case-study-visual .result-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.result-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--bg-card);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.result-badge i {
    color: #22c55e;
}

.result-badge span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* -----------------------------------------------
   MOBILE STYLES — Single Column Layout (≤ 768px)
----------------------------------------------- */

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

@media (max-width: 768px) {

    /* === NAVBAR === */
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-wrapper {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.1rem;
        gap: 8px;
    }

    .logo-icon {
        width: 22px;
        height: 22px;
    }

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 1000;
        backdrop-filter: blur(12px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 18px 0;
    }

    .nav-links a {
        font-size: 1.4rem;
    }

    /* === HERO === */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

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

    .hero-text p {
        font-size: 1rem;
        margin: 0 auto 28px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-image {
        display: none; /* Hide large hero image on mobile for speed */
    }

    /* === SECTIONS === */
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* === ALL GRIDS → SINGLE COLUMN === */
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    /* === PROBLEMS / CARDS === */
    .card {
        padding: 28px 20px;
    }

    /* === SERVICES === */
    .service-row,
    .service-row.reverse {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px;
        text-align: center;
    }

    .service-image {
        order: -1;
        width: 100%;
    }

    .service-image img {
        width: 100%;
        border-radius: 12px;
    }

    .service-text {
        text-align: center;
    }

    .icon-wrapper {
        margin: 0 auto 20px !important;
    }

    .feature-list {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin: 0 auto;
    }

    /* === CASE STUDY === */
    .case-study-card {
        display: flex !important;
        flex-direction: column !important;
        padding: 32px 20px !important;
        text-align: center !important;
        gap: 32px !important;
        align-items: center !important;
    }

    .case-study-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .case-study-visual {
        order: -1 !important;
        width: 100% !important;
    }

    .result-badge {
        position: absolute !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        top: -18px !important;
        white-space: nowrap !important;
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }

    .client-profile {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 16px !important;
    }

    .client-logo {
        height: 50px !important;
        margin: 0 auto !important;
    }

    .narrative {
        padding: 20px 0 0 !important;
        border-left: none !important;
        border-top: 3px solid var(--primary) !important;
        text-align: center !important;
        font-size: 1rem !important;
    }

    .case-study-metrics {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .metric {
        align-items: center !important;
        text-align: center !important;
    }

    .m-value {
        font-size: 1.8rem !important;
    }

    .m-valueHighlight {
        font-size: 2rem !important;
    }

    /* === HIGHLIGHTS (1/3/6 MONTH) === */
    .highlight-item {
        padding: 28px 20px !important;
    }

    /* === GUARANTEE === */
    .guarantee-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 40px 24px !important;
        gap: 30px !important;
    }

    .guarantee-content h2 {
        font-size: 1.8rem;
    }

    .guarantee-content h3 {
        font-size: 1.2rem;
    }

    .guarantee-content p {
        font-size: 1rem;
    }

    /* === CRM SECTION === */
    .crm-marquee-wrapper::before,
    .crm-marquee-wrapper::after {
        width: 30px; /* Smaller gradient fade for mobile */
    }
    .crm-marquee-track {
        gap: 15px; /* Smaller gap on mobile */
        flex-direction: row !important; /* Force row for animation, override older grid column style if any */
    }
    .crm-logo-wrapper {
        min-width: 180px !important;
        padding: 15px !important;
    }
    .crm-logo-wrapper img {
        height: 45px !important; /* Slightly smaller for mobile */
        max-width: 160px !important;
    }

    /* === CTA SECTION === */
    .cta-box {
        display: flex !important;
        flex-direction: column !important;
        padding: 36px 20px !important;
        text-align: center !important;
        gap: 32px !important;
    }

    /* === LEAD MODAL === */
    .modal-content {
        padding: 30px 20px !important;
        width: 95% !important;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-content .cta-box {
        padding: 0 !important;
    }

    .modal-content .cta-text h2 {
        font-size: 1.8rem !important;
    }

    .cta-text h2 {
        font-size: 1.7rem;
    }

    .cta-benefits {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        margin: 16px auto 0 !important;
        gap: 12px !important;
    }

    .cta-form input,
    .cta-form button {
        width: 100%;
    }

    /* === FOOTER === */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 32px !important;
    }

    .footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-brand .logo {
        justify-content: center !important;
    }

    .footer-brand p {
        margin: 12px auto 0 !important;
        text-align: center !important;
    }

    footer {
        padding: 60px 0 30px;
    }
    
    .footer-contact {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 40px !important;
        margin-top: 30px;
    }
    
    .partner-badges {
        justify-content: center !important;
    }
}




/* New Green Theme for Benefits */
.icon-wrapper.green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

/* Comparison Matrix Styling Overrides */
.comparison-table-wrapper table {
    border-radius: 12px;
    overflow: hidden;
}

.col-providers {
    background: rgba(239, 68, 68, 0.05); /* Light red for competitors */
}

.col-marketingmovers {
    background: rgba(34, 197, 94, 0.08); /* Light green for us */
    border-left: 2px solid rgba(34, 197, 94, 0.1);
}

.comparison th.col-marketingmovers {
    color: #16a34a !important;
    font-weight: 800;
}

/* Transition Section Before/After Visuals */
.transition-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.transition-image {
    text-align: center;
}

.transition-image .img-container {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.transition-image:hover .img-container {
    transform: translateY(-5px);
}

.transition-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.transition-image h4 {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 600;
}

.transition-image.after h4 {
    color: #16a34a;
    font-weight: 800;
}

/* Roadmap Journey Images */
.roadmap-visual {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.roadmap-visual img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.highlight-item:hover .roadmap-visual img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .transition-visuals {
        grid-template-columns: 1fr;
    }
}

/* Transition Section Captions — page-consistent typography */
.transition-caption {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 14px;
    text-align: center;
}
.transition-caption.after-caption {
    color: #16a34a;
}

/* Strategy Cards with images */
.strategy-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.strategy-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
    transition: transform 0.4s ease;
}
.strategy-card:hover .strategy-card-img {
    transform: scale(1.04);
}
.strategy-card .icon-wrapper,
.strategy-card h3,
.strategy-card p {
    margin-left: 28px;
    margin-right: 28px;
}
.strategy-card .icon-wrapper {
    margin-top: 24px;
}
.strategy-card h3 {
    margin-top: 12px;
    margin-bottom: 8px;
}
.strategy-card p {
    margin-bottom: 28px;
}

/* Roadmap card typography fix */
.highlight-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
}
.highlight-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =======================================================
   VERSION B — TABLET  (768px – 1023px)
   Scaled-down 2-column layout, reduced typography & spacing
   ======================================================= */
@media (min-width: 768px) and (max-width: 1023px) {

    /* --- NAV --- */
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .hide-mobile { display: none !important; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: rgba(255,255,255,0.98); flex-direction: column;
        justify-content: center; align-items: center;
        transition: 0.4s cubic-bezier(0.85,0,0.15,1); z-index: 1000;
        backdrop-filter: blur(12px);
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 16px 0; }
    .nav-links a { font-size: 1.3rem; }

    /* --- HERO --- */
    .hero { padding: 100px 0 40px; }
    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
        align-items: flex-start;
    }
    .hero-text h1 { font-size: 2.8rem; letter-spacing: -0.5px; }
    .hero-text p { font-size: 1rem; margin-bottom: 28px; }
    .hero-image { margin-top: 0; }
    .hero-image .trust-indicators { margin-top: 20px; }
    .trust-item .valueHighlight { font-size: 1.6rem; }
    .trust-item .label { font-size: 0.85rem; }
    .trust-summary-grid { gap: 24px; }

    /* --- SECTIONS --- */
    .section { padding: 70px 0; }
    #why-us { padding-top: 30px; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 2.2rem; }

    /* --- GRIDS --- */
    .grid-5 { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* --- CARDS --- */
    .card { padding: 24px 20px; }
    .card h3 { font-size: 1.2rem; }
    .icon-wrapper { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px; }
    .icon-wrapper i { width: 24px; height: 24px; }

    /* --- SERVICE ROWS --- */
    .service-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    .service-text h3 { font-size: 1.6rem; }
    .service-text p { font-size: 0.95rem; }

    /* --- STRATEGY CARDS --- */
    .strategy-card-img { height: 160px; }

    /* --- TRANSITION VISUALS --- */
    .transition-visuals { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }

    /* --- ROADMAP --- */
    .roadmap-visual img { height: 140px; }
    .highlight-item { padding: 20px !important; }

    /* --- CASE STUDY --- */
    .case-study-card {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 30px;
        padding: 40px 30px;
    }
    .case-study-metrics { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .m-value { font-size: 1.6rem; }
    .m-valueHighlight { font-size: 1.8rem; }

    /* --- COMPARISON TABLE --- */
    .comparison-table-wrapper { padding: 15px; }

    /* --- GUARANTEE --- */
    .guarantee-card { gap: 30px; padding: 40px 30px; }
    .guarantee-icon { width: 90px; height: 90px; }
    .guarantee-icon i { width: 50px; height: 50px; }
    .guarantee-content h2 { font-size: 2rem; }

    /* --- CTA FORM --- */
    .cta-box { grid-template-columns: 1fr 1fr; gap: 30px; }

    /* --- FOOTER --- */
    .footer-grid { grid-template-columns: 1fr 1.5fr; gap: 30px; }
    .footer-contact { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* =======================================================
   VERSION C — MOBILE  (max-width: 767px)
   Single-column, compact spacing, optimised typography
   ======================================================= */
@media (max-width: 767px) {

    /* --- NAV --- */
    .nav-toggle { display: flex !important; align-items: center; justify-content: center; }
    .hide-mobile { display: none !important; }
    .nav-wrapper { padding: 0 20px; }
    .logo { font-size: 1.1rem; gap: 8px; }
    .logo-icon { width: 22px; height: 22px; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: rgba(255,255,255,0.98); flex-direction: column;
        justify-content: center; align-items: center;
        transition: 0.4s cubic-bezier(0.85,0,0.15,1); z-index: 1000;
        backdrop-filter: blur(12px);
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 16px 0; }
    .nav-links a { font-size: 1.4rem; }

    /* --- HERO --- */
    .hero { padding: 100px 0 40px; }
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px;
        text-align: center;
    }
    .hero-text h1 { font-size: 1.9rem; line-height: 1.2; margin-bottom: 16px; }
    .hero-text p { font-size: 0.95rem; margin: 0 auto 20px; }
    .hero-actions { align-items: center; gap: 12px; margin-top: 20px; }
    .btn-lg { width: 100%; text-align: center; padding: 14px 20px; font-size: 0.95rem; }
    .trust-summary-grid { gap: 16px; justify-content: center; flex-wrap: wrap; text-align: center; }
    .trust-item .valueHighlight { font-size: 1.5rem; }
    .trust-item .label { font-size: 0.8rem; }
    .hero-image { display: none; } /* Hide large image on mobile for fast load */
    .trust-indicators { justify-content: center; flex-wrap: wrap; gap: 12px; }

    /* --- SECTIONS — compact spacing --- */
    .section { padding: 44px 0; }
    #why-us { padding-top: 20px; }
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 1.7rem; line-height: 1.3; }
    .section-header p { font-size: 0.9rem; }

    /* --- ALL GRIDS → SINGLE COLUMN --- */
    .grid-5,
    .grid-4,
    .grid-3,
    .grid-2 { grid-template-columns: 1fr !important; gap: 16px; }

    /* --- CARDS --- */
    .card { padding: 20px 16px; }
    .card h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .card p { font-size: 0.88rem; }
    .icon-wrapper { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 14px; margin-left: auto !important; margin-right: auto !important; }
    .icon-wrapper i { width: 22px; height: 22px; }

    /* --- SERVICE ROWS --- */
    .service-row,
    .service-row.reverse {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px;
        text-align: center;
        margin-bottom: 44px;
    }
    .service-image { order: -1; width: 100%; }
    .service-image img { width: 100%; border-radius: 12px; }
    .service-text { text-align: center; }
    .service-text h3 { font-size: 1.4rem; margin-bottom: 12px; }
    .service-text p { font-size: 0.9rem; margin-bottom: 16px; }
    .feature-list { display: inline-flex; flex-direction: column; align-items: flex-start; text-align: left; margin: 0 auto; }
    .feature-list li { font-size: 0.9rem; margin-bottom: 10px; }

    /* --- STRATEGY CARDS --- */
    .strategy-card { overflow: hidden; }
    .strategy-card-img { height: 160px; }
    .strategy-card .icon-wrapper,
    .strategy-card h3,
    .strategy-card p { margin-left: 20px; margin-right: 20px; }

    /* --- TRANSITION VISUALS --- */
    .transition-visuals { grid-template-columns: 1fr !important; gap: 20px; margin-top: 24px; }
    .transition-caption { font-size: 0.9rem; }

    /* --- ROADMAP --- */
    .roadmap-visual img { height: 140px; }
    .highlight-item { padding: 16px !important; border-radius: 12px !important; }
    .highlight-item h4 { font-size: 1rem; margin-bottom: 8px; }
    .highlight-item p { font-size: 0.88rem; }

    /* --- CASE STUDY --- */
    .case-study-card {
        display: flex !important;
        flex-direction: column !important;
        padding: 24px 16px !important;
        text-align: center !important;
        gap: 24px !important;
        align-items: center !important;
    }
    .case-study-content { display: flex !important; flex-direction: column !important; align-items: center !important; width: 100% !important; }
    .case-study-visual { order: -1 !important; width: 100% !important; }
    .client-profile { flex-direction: column !important; align-items: center !important; gap: 10px !important; margin-bottom: 14px !important; }
    .client-logo { height: 44px !important; margin: 0 auto !important; }
    .narrative { padding: 16px 0 0 !important; border-left: none !important; border-top: 3px solid var(--primary) !important; font-size: 0.95rem !important; }
    .case-study-metrics { grid-template-columns: 1fr !important; gap: 16px !important; width: 100% !important; }
    .metric { align-items: center !important; text-align: center !important; }
    .m-value { font-size: 1.6rem !important; }
    .m-valueHighlight { font-size: 1.8rem !important; }

    /* --- COMPARISON TABLE → STACKED CARDS on mobile --- */
    .comparison-table-wrapper {
        overflow-x: visible !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* The outer wrapper handles the card look per-row instead */
    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td,
    .comparison-table th {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    /* Hide the original header row */
    .comparison-table thead { display: none !important; }

    /* Each row = a card */
    .comparison-table tbody tr {
        border: 1px solid var(--border-color) !important;
        border-radius: 14px !important;
        margin-bottom: 16px !important;
        overflow: hidden !important;
        background: rgba(255,255,255,0.7) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    }

    /* Feature name cell — full-width title bar */
    .comparison-table tbody tr td:first-child {
        background: var(--bg-card) !important;
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        font-family: 'Outfit', sans-serif !important;
        padding: 12px 16px !important;
        border-bottom: 1px solid var(--border-color) !important;
        text-align: left !important;
        color: var(--text-primary) !important;
        letter-spacing: 0.3px;
    }

    /* Lead Providers cell */
    .comparison-table tbody tr td.col-providers {
        padding: 12px 16px !important;
        text-align: left !important;
        font-size: 0.88rem !important;
        color: #b91c1c !important;
        background: rgba(239,68,68,0.04) !important;
        border-bottom: 1px solid var(--border-color) !important;
    }
    .comparison-table tbody tr td.col-providers::before {
        content: "❌  Lead Providers: ";
        font-weight: 700;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #b91c1c;
        display: block;
        margin-bottom: 2px;
    }

    /* MarketingMovers cell */
    .comparison-table tbody tr td.col-marketingmovers {
        padding: 12px 16px !important;
        text-align: left !important;
        font-size: 0.88rem !important;
        color: #16a34a !important;
        font-weight: 700 !important;
        background: rgba(34,197,94,0.05) !important;
    }
    .comparison-table tbody tr td.col-marketingmovers::before {
        content: "✅  MarketingMovers: ";
        font-weight: 700;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #16a34a;
        display: block;
        margin-bottom: 2px;
    }



    /* --- GUARANTEE --- */
    .guarantee-card { flex-direction: column !important; align-items: center !important; text-align: center !important; padding: 28px 16px !important; gap: 20px !important; }
    .guarantee-icon { width: 80px; height: 80px; }
    .guarantee-icon i { width: 44px; height: 44px; }
    .guarantee-content h2 { font-size: 1.6rem; }
    .guarantee-content h3 { font-size: 1.1rem; }
    .guarantee-content p { font-size: 0.9rem; }

    /* --- CRM SECTION --- */
    .crm-marquee-wrapper::before, .crm-marquee-wrapper::after { width: 30px; }
    .crm-marquee-track { gap: 12px; }
    .crm-logo-wrapper { min-width: 160px !important; padding: 12px !important; }
    .crm-logo-wrapper img { height: 40px !important; max-width: 140px !important; }

    /* --- CTA FORM --- */
    .cta-box { display: flex !important; flex-direction: column !important; padding: 28px 16px !important; text-align: center !important; gap: 24px !important; }
    .cta-text h2 { font-size: 1.5rem; }
    .cta-benefits { display: flex !important; flex-direction: column !important; align-items: flex-start !important; text-align: left !important; margin: 12px auto 0 !important; gap: 10px !important; }
    .cta-form input, .cta-form button { width: 100%; }

    /* --- LEAD MODAL --- */
    .modal-content { padding: 24px 16px !important; width: 95% !important; max-height: 90vh; overflow-y: auto; }
    .modal-content .cta-box { padding: 0 !important; }
    .modal-content .cta-text h2 { font-size: 1.5rem !important; }

    /* --- FOOTER --- */
    .footer-grid { grid-template-columns: 1fr !important; text-align: center !important; gap: 28px !important; }
    .footer-brand { display: flex !important; flex-direction: column !important; align-items: center !important; }
    .footer-brand .logo { justify-content: center !important; }
    .footer-brand p { margin: 10px auto 0 !important; text-align: center !important; font-size: 0.9rem; }
    .footer-contact { grid-template-columns: 1fr !important; text-align: center !important; gap: 28px !important; margin-top: 20px; }
    .partner-badges { justify-content: center !important; }
    footer { padding: 44px 0 24px; }

    /* --- GENERAL --- */
    .container { padding: 0 16px; }
    .badge { font-size: 0.75rem; padding: 5px 12px; }
    .rating-tag { font-size: 0.85rem; }

    /* Small phones */
    @media (max-width: 380px) {
        .hero-text h1 { font-size: 1.6rem; }
        .btn-lg { font-size: 0.85rem; padding: 12px 16px; }
        .section-header h2 { font-size: 1.5rem; }
    }
}
