/* =============================================
   WHY RETAIN — Styles
   ============================================= */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ---- Utility ---- */
.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #a855f7 70%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f0f23;
    margin-bottom: 16px;
    text-align: center;
}

.section-title-left {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f0f23;
    margin-bottom: 16px;
}

.section-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    line-height: 1.7;
}

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

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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


/* =============================================
    NAVBAR (matching site-wide)
    ============================================= */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #f3f4f6;
}

.nav-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

@media (min-width: 640px) {
    .nav-inner {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-inner {
        padding: 0 2rem;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand-link {
    display: flex;
    align-items: baseline;
    text-decoration: none;
}

.nav-brand-logo {
    height: 1.5rem;
    width: 1.5rem;
    margin-right: 0.5rem;
    margin-top: 0.75rem;
}

.nav-brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.nav-brand-sub {
    color: #6b7280;
    font-size: 0.875rem;
    margin-left: 0.5rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-brand-sub:hover {
    color: #374151;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: #111827;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6366f1;
    transition: width 0.3s ease-in-out;
}

.nav-link.active::after {
    width: 66.66%;
}

.nav-link.active {
    color: #6366f1;
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    color: #374151;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    transition: color 0.2s;
    position: relative;
}

.nav-dropdown-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6366f1;
    transition: width 0.3s ease-in-out;
}

.nav-dropdown:hover .nav-dropdown-btn::after {
    width: 100%;
}

.nav-dropdown-btn:hover {
    color: #111827;
}

.nav-dropdown-btn .chevron-icon {
    margin-left: 0.375rem;
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.nav-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    width: 14rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    transform-origin: top;
    z-index: 50;
    border: 1px solid #f3f4f6;
    top: 100%;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-dropdown-item:hover {
    background: #f9fafb;
}

.dropdown-icon {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
    padding: 0.375rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown-icon.blue {
    color: #3b82f6;
    background: #eff6ff;
}

.dropdown-icon.amber {
    color: #f59e0b;
    background: #fffbeb;
}

.dropdown-icon.sky {
    color: #0ea5e9;
    background: #f0f9ff;
}

.dropdown-icon.rose {
    color: #f43f5e;
    background: #fff1f2;
}

.dropdown-icon.violet {
    color: #8b5cf6;
    background: #f5f3ff;
}

.dropdown-icon.teal {
    color: #14b8a6;
    background: #f0fdfa;
}

.nav-cta {
    background: #0f0f23;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

/* Mobile Nav */
.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    color: #6b7280;
    background: #f3f4f6;
}

.mobile-menu-btn:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #6366f1;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #333;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.mobile-nav-btn-wrapper {
    display: none;
}

@media (max-width: 767px) {
    .mobile-nav-btn-wrapper {
        display: flex;
        align-items: center;
    }
}

.mobile-menu-wrapper {
    display: none;
    background: #fff;
    border-top: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
    .mobile-menu-wrapper {
        display: none !important;
    }
}

.mobile-menu-wrapper.open {
    display: block;
}

.mobile-menu-inner {
    padding: 0.5rem 0.75rem 0.75rem;
}

@media (min-width: 640px) {
    .mobile-menu-inner {
        padding: 0.5rem 0.75rem 0.75rem;
    }
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    color: #374151;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: #111827;
}

.active-mobile {
    background: #e5e7eb;
    color: #6366f1;
}

.mobile-sub-nav {
    padding-left: 0.75rem;
}

.mobile-sub-nav > * + * {
    margin-top: 0.25rem;
}

.mobile-sub-label {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-sub-link {
    color: #374151;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    padding-left: 1.5rem;
    border-left: 2px solid transparent;
    text-decoration: none;
}

.mobile-sub-link:hover {
    color: #111827;
}

.mobile-sub-link:hover.blue {
    border-color: #3b82f6;
    background: #eff6ff;
}

.mobile-sub-link:hover.amber {
    border-color: #f59e0b;
    background: #fffbeb;
}

.mobile-sub-link:hover.sky {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.mobile-sub-link:hover.rose {
    border-color: #f43f5e;
    background: #fff1f2;
}

.mobile-sub-link:hover.violet {
    border-color: #8b5cf6;
    background: #f5f3ff;
}

.mobile-sub-link:hover.teal {
    border-color: #14b8a6;
    background: #f0fdfa;
}

.mobile-nav-cta {
    background: #0f0f23;
    color: white;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    margin-top: 0.5rem;
}


/* =============================================
   1. HERO
   ============================================= */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: linear-gradient(168deg, #f8f7ff 0%, #f0eeff 30%, #e8e4ff 60%, #f5f3ff 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: #6366f1;
    top: -120px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: #a855f7;
    bottom: -80px;
    left: -80px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: #c084fc;
    top: 50%;
    left: 50%;
    animation: orbFloat 12s ease-in-out infinite 2s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #0f0f23;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #555;
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 14px 32px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.45);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.3s;
}

.btn-ghost:hover {
    color: #6366f1;
}

.btn-ghost-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #6366f1;
    transition: all 0.3s;
}

.btn-ghost:hover .btn-ghost-circle {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6366f1;
    border: 2px solid #6366f1;
    padding: 12px 28px;
    border-radius: 10px;
    transition: all 0.3s;
    margin-top: 8px;
}

.btn-secondary:hover {
    background: #6366f1;
    color: #fff;
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary i {
    transition: transform 0.3s;
}

.btn-secondary:hover i {
    transform: translateX(4px);
}

/* Hero Stats */
.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.hero-stat-val {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-lbl {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: #888;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.3), transparent);
}


/* =============================================
   MARQUEE
   ============================================= */
.marquee-strip {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.marquee-dot {
    font-size: 0.5rem !important;
    color: #6366f1 !important;
    opacity: 1 !important;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* =============================================
   2. PROBLEM SECTION
   ============================================= */
.sec-problem {
    padding: 100px 0;
    background: #fff;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.problem-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 36px 28px;
    transition: all 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border-color: rgba(99, 102, 241, 0.15);
}

.problem-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.problem-card-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.problem-card-icon.violet {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.problem-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f0f23;
    margin-bottom: 10px;
}

.problem-card-text {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 20px;
}

.problem-stat {
    background: rgba(99, 102, 241, 0.04);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-stat-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #6366f1;
}

.problem-stat-lbl {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

.problem-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.problem-image {
    width: 100%;
    display: block;
}

/* ---- Coded Comparison Section ---- */
.comparison-section {
    margin-top: 64px;
}

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

.comparison-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #0f0f23;
    margin-bottom: 10px;
}

.comparison-subtitle {
    font-size: 0.95rem;
    color: #888;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.comparison-col {
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.4s ease;
}

.comparison-old {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.comparison-old:hover {
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.08);
}

.comparison-new {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.comparison-new:hover {
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.08);
}

.comparison-col-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.old-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.new-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.comparison-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 16/10;
}

.comparison-col-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-img-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.old-overlay {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.02));
}

.new-overlay {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02));
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.comparison-item-bad,
.comparison-item-good {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.comparison-item-bad strong,
.comparison-item-good strong {
    display: block;
    font-size: 0.9rem;
    color: #0f0f23;
    margin-bottom: 2px;
}

.comparison-item-bad p,
.comparison-item-good p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.45;
}

.comparison-icon-x {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-top: 2px;
}

.comparison-icon-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-top: 2px;
}

.comparison-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
}

.old-result {
    background: rgba(239, 68, 68, 0.06);
    color: #b91c1c;
}

.old-result i {
    font-size: 1rem;
}

.new-result {
    background: rgba(34, 197, 94, 0.06);
    color: #15803d;
}

.new-result i {
    font-size: 1rem;
}

/* VS Divider */
.comparison-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}

.vs-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 2;
}

.vs-line {
    position: absolute;
    width: 2px;
    top: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 10%, rgba(99, 102, 241, 0.15) 40%, rgba(99, 102, 241, 0.15) 60%, transparent 90%);
}

/* Verdict */
.comparison-verdict {
    margin-top: 28px;
}

.verdict-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, #f8f7ff, #f0eeff);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 14px;
    padding: 18px 28px;
}

.verdict-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.verdict-inner p {
    font-size: 0.95rem;
    color: #555;
}

.verdict-inner strong {
    font-weight: 700;
}

/* =============================================
   3. THE RETAIN DIFFERENCE
   ============================================= */
.sec-difference {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f7ff 0%, #fff 100%);
}

.difference-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.difference-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(99, 102, 241, 0.12);
}

.difference-image {
    width: 100%;
    display: block;
}

.difference-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

.difference-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 8px;
}

.difference-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
}

.difference-list li i {
    color: #6366f1;
    margin-top: 4px;
    flex-shrink: 0;
}

.difference-list li strong {
    color: #0f0f23;
}


/* =============================================
   4. THREE PILLARS
   ============================================= */
.sec-pillars {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(168deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    overflow: hidden;
}

.sec-pillars .section-label {
    color: #818cf8;
    background: rgba(129, 140, 248, 0.12);
    border-color: rgba(129, 140, 248, 0.2);
}

.sec-pillars .section-title {
    color: #fff;
}

.sec-pillars .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.pillars-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pillar-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.pillar-orb-1 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    top: -100px;
    left: -100px;
}

.pillar-orb-2 {
    width: 300px;
    height: 300px;
    background: #a855f7;
    bottom: -80px;
    right: -80px;
}

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

.pillar-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-6px);
}

.pillar-card-featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(168, 85, 247, 0.08));
    border: 2px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.15), 0 8px 32px rgba(168, 85, 247, 0.1);
    transform: scale(1.05);
    z-index: 10;
}

.pillar-card-featured:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(168, 85, 247, 0.12));
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.25), 0 12px 40px rgba(168, 85, 247, 0.2);
    transform: scale(1.08);
}

.pillar-featured-badge {
    position: absolute;
    top: -14px;
    left: 28px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    padding: 5px 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(168, 85, 247, 0.6);
    }
}

.pillar-featured-badge i {
    font-size: 0.7rem;
}

.pillar-num {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: 8px;
}

.pillar-card-featured .pillar-num {
    color: rgba(255, 255, 255, 0.08);
}

.pillar-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.pillar-card-featured .pillar-icon-wrap {
    width: 58px;
    height: 58px;
    font-size: 1.3rem;
}

.pillar-icon-wrap.indigo {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.pillar-icon-wrap.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.25));
    color: #c084fc;
}

.pillar-card-featured .pillar-icon-wrap.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(139, 92, 246, 0.35));
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.pillar-icon-wrap.teal {
    background: rgba(20, 184, 166, 0.15);
    color: #5eead4;
}

.pillar-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.pillar-card-featured .pillar-title {
    font-size: 1.28rem;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3px;
}

.pillar-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 20px;
}

.pillar-card-featured .pillar-desc {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.7);
}

.pillar-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pillar-features li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pillar-card-featured .pillar-features li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.pillar-features li i {
    color: #6366f1;
    font-size: 0.7rem;
}

.pillar-card-featured .pillar-features li i {
    color: #a855f7;
}


/* =============================================
   5. HOW IT WORKS
   ============================================= */
.sec-how-it-works {
    padding: 100px 0;
    background: #fff;
}

.steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 24px;
}

.step-marker-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, #6366f1, rgba(99, 102, 241, 0.1));
    min-height: 40px;
}

.step-content {
    padding-bottom: 36px;
}

.step-icon-bg {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 14px;
}

.step-icon-bg.indigo {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.step-icon-bg.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.step-icon-bg.teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.step-icon-bg.amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f0f23;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 10px;
}

.step-duration {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6366f1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-duration i {
    font-size: 0.7rem;
}

.steps-image-wrap {
    position: relative;
}

.steps-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.steps-image-float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floatBounce 4s ease-in-out infinite;
}

.steps-image-float-card.card-1 {
    bottom: 24px;
    left: -24px;
    animation-delay: 0s;
}

.steps-image-float-card.card-2 {
    top: 24px;
    right: -24px;
    animation-delay: 2s;
}

@keyframes floatBounce {

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

    50% {
        transform: translateY(-8px);
    }
}

.float-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.float-card-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.float-card-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.float-card-info {
    display: flex;
    flex-direction: column;
}

.float-card-label {
    font-size: 0.7rem;
    color: #999;
    font-weight: 500;
}

.float-card-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f0f23;
}


/* =============================================
   6. OMNICHANNEL
   ============================================= */
.sec-omnichannel {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f7ff 0%, #fff 100%);
}

.omnichannel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
}

.omnichannel-showcase {
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(99, 102, 241, 0.1);
    flex-shrink: 0;
}

.omnichannel-image {
    width: 100%;
    display: block;
}

.channel-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    animation: channelCardIn 0.6s ease calc(var(--delay)) both;
    min-width: 280px;
}

.channel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #c7d2fe;
}

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

.channel-side-right .channel-card {
    animation-name: channelCardInRight;
}

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

.channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.channel-icon.green {
    background: #ecfdf5;
    color: #22c55e;
}

.channel-icon.pink {
    background: #fdf2f8;
    color: #ec4899;
}

.channel-icon.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.channel-icon.purple {
    background: #eef2ff;
    color: #6366f1;
}

.channel-icon.amber {
    background: #fffbeb;
    color: #f59e0b;
}

.channel-icon.teal {
    background: #f0fdfa;
    color: #14b8a6;
}

.channel-icon.sky {
    background: #f0f9ff;
    color: #0ea5e9;
}

.channel-icon.rose {
    background: #fff1f2;
    color: #f43f5e;
}

.channel-info {
    flex: 1;
    min-width: 0;
}

.channel-info strong {
    font-size: 0.875rem;
    color: #111827;
    display: block;
}

.channel-info span {
    font-size: 0.7rem;
    color: #9ca3af;
}

.channel-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.channel-status.online {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%,
    100% {
        box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
    }
}

.omnichannel-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.chip:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.chip i {
    font-size: 1rem;
}


/* =============================================
   7. AI + HUMAN PARTNERSHIP
   ============================================= */
.sec-ai-human {
    padding: 100px 0;
    background: #fff;
}

.ai-human-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ai-human-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
}

.ai-features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 14px;
    transition: all 0.3s;
}

.ai-feature:hover {
    background: #f8f7ff;
}

.ai-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.ai-feature h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f0f23;
    margin-bottom: 4px;
}

.ai-feature p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.55;
}

.ai-human-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.ai-human-image {
    width: 100%;
    display: block;
}


/* =============================================
   8. RESULTS & METRICS
   ============================================= */
.sec-results {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(168deg, #f8f7ff 0%, #f0eeff 50%, #fff 100%);
    overflow: hidden;
}

.results-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.results-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.results-orb-1 {
    width: 350px;
    height: 350px;
    background: #6366f1;
    top: 10%;
    right: -80px;
}

.results-orb-2 {
    width: 250px;
    height: 250px;
    background: #a855f7;
    bottom: 10%;
    left: -60px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.result-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(99, 102, 241, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.15);
}

.result-ring-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
}

.result-ring {
    width: 100%;
    height: 100%;
}

.result-ring-fill {
    transition: stroke-dashoffset 1.5s ease-in-out;
}

.result-ring-val {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f0f23;
}

.result-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f0f23;
    margin-bottom: 6px;
}

.result-card p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

.results-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.results-image {
    width: 100%;
    display: block;
}

.results-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 35, 0.95), rgba(15, 15, 35, 0.85), transparent);
    padding: 60px 40px 40px;
    display: flex;
    gap: 24px;
    justify-content: center;
}

.results-overlay-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.results-overlay-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.overlay-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.overlay-card-icon i {
    font-size: 1.4rem;
    color: #a78bfa;
}

.overlay-card-content {
    display: flex;
    flex-direction: column;
}

.results-overlay-card .overlay-val {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.results-overlay-card .overlay-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-overlay-card .overlay-lbl {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* =============================================
    9. FAQ
    ============================================= */
.sec-faq {
    padding: 100px 0;
    background: linear-gradient(168deg, #f8f7ff 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.sec-faq::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sec-faq::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
}

.faq-item.open {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.12);
    transform: translateY(-4px);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    padding: 24px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0f0f23;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item.open .faq-question {
    padding-bottom: 12px;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-question-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-number {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-number {
    opacity: 1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.faq-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon {
    font-size: 0.85rem;
    color: #6366f1;
    transition: all 0.4s ease;
}

.faq-item.open .faq-icon-wrap {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.faq-item.open .faq-icon {
    color: #fff;
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 28px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.faq-answer strong {
    color: #6366f1;
    font-weight: 700;
}


@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* =====================
   CONTACT FORM
   ===================== */
.contact-section {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(99,102,241,0.06) 0%, transparent 40%),
                      radial-gradient(circle at 90% 30%, rgba(139,92,246,0.05) 0%, transparent 45%),
                      radial-gradient(circle at 15% 75%, rgba(99,102,241,0.04) 0%, transparent 35%),
                      radial-gradient(circle at 85% 85%, rgba(139,92,246,0.04) 0%, transparent 35%);
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='%236366f1' fill-opacity='0.04'%3E%3Cpath d='M20 20a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm0-12a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm0 24a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm12-12a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm-24 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-label {
    color: #6366f1; font-weight: 600;
    font-size: 0.875rem; letter-spacing: 0.05em;
    margin-bottom: 1rem; display: inline-block;
    text-transform: uppercase;
}
.contact-title {
    font-size: 1.875rem; font-weight: 800;
    color: #111827; margin-bottom: 1rem; line-height: 1.2;
}
@media (min-width: 768px) { .contact-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3rem; } }
.contact-desc { color: #6b7280; font-size: 1.125rem; margin-bottom: 2rem; }

.contact-features { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-feature { display: flex; align-items: flex-start; gap: 1rem; }
.contact-feature-icon {
    width: 2.5rem; height: 2.5rem;
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 0.125rem;
}
.contact-feature-icon.bg-emerald { background: #e0e7ff; }
.contact-feature-icon.bg-emerald i { color: #6366f1; }
.contact-feature-icon.bg-teal { background: #ede9fe; }
.contact-feature-icon.bg-teal i { color: #8b5cf6; }
.contact-feature-icon.bg-green { background: #fce7f3; }
.contact-feature-icon.bg-green i { color: #ec4899; }
.contact-feature-icon.bg-blue { background: #ddd6fe; }
.contact-feature-icon.bg-blue i { color: #a78bfa; }
.contact-feature-title { font-weight: 600; color: #111827; }
.contact-feature-desc { font-size: 0.875rem; color: #6b7280; }

/* Form card */
.form-card {
    background: #0f172a;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.form-card h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-label { color: #9ca3af; font-size: 0.875rem; margin-bottom: 0.25rem; display: block; }
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    color: #fff;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.form-input:focus { border-color: #6366f1; box-shadow: 0 0 0 2px rgba(99,102,241,0.3); }
.form-input::placeholder { color: #64748b; }
textarea.form-input { resize: none; }

.phone-row { display: flex; gap: 0.5rem; }
.phone-code {
    width: 25%;
    background: #1e293b;
    color: #a78bfa;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #334155;
    text-align: center;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.country-input-wrap { position: relative; }
.country-input-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
    pointer-events: none;
}

#country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-top: 0.5rem;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(99, 102, 241, 0.05);
}

#country-dropdown.active { display: block; }

#country-dropdown::-webkit-scrollbar {
    width: 8px;
}

#country-dropdown::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 0 12px 12px 0;
}

#country-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

#country-dropdown::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.country-option {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.country-option:last-child {
    border-bottom: none;
}

.country-option:hover {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    color: #111827;
    padding-left: 18px;
}

.country-option.focused {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    color: #111827;
    padding-left: 18px;
}

.country-option span {
    flex: 1;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99,102,241,0.3);
}

.cta-shimmer {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 1rem;
}


/* =====================
   FOOTER (WAVY)
   ===================== */
.footer {
    background: #111827;
    color: #9ca3af;
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
}
.footer::before {
    content: ''; position: absolute; top: -60px; left: 0; right: 0; height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%230f172a' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,35 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand img { height: 1.75rem; width: 1.75rem; }
.footer-brand span { font-weight: 700; color: #fff; font-size: 1.125rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; }

.footer-heading { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: #9ca3af; transition: color 0.3s; text-decoration: none; }
.footer-links a:hover { color: #a78bfa; }

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: 0.875rem; margin: 0; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: #6b7280; transition: color 0.3s; text-decoration: none; }
.footer-socials a:hover { color: #8b5cf6; }
.footer-socials a i { font-size: 1.125rem; }

.cta-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #0f0f23 0%, #1a1a3e 40%, #2d1754 100%);
    border-radius: 28px;
    padding: 72px 48px;
    text-align: center;
}

.cta-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    background: #6366f1;
    top: -80px;
    right: -80px;
}

.cta-orb-2 {
    width: 200px;
    height: 200px;
    background: #a855f7;
    bottom: -60px;
    left: -40px;
}

.cta-title {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-desc {
    position: relative;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-actions {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f0f23;
    background: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.25);
}

.cta-btn-primary i {
    transition: transform 0.3s;
}

.cta-btn-primary:hover i {
    transform: translateX(4px);
}

.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.cta-btn-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.cta-trust {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.cta-trust-item {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust-item i {
    color: #22c55e;
    font-size: 0.8rem;
}


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #0f0f23;
    padding: 56px 0 32px;
}

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

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

.footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo {
    width: 28px;
    height: 28px;
}

.footer-brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 320px;
}

.footer-links-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-links-col a:hover {
    color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-sub-link a {
    color: #6366f1;
    transition: color 0.2s;
}

.footer-sub-link a:hover {
    color: #818cf8;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {

    .difference-layout,
    .steps-layout,
    .ai-human-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-vs {
        flex-direction: row;
        padding: 0;
    }

    .vs-line {
        width: auto;
        height: 2px;
        top: auto;
        bottom: auto;
        left: 0;
        right: 0;
        background: linear-gradient(to right, transparent 10%, rgba(99, 102, 241, 0.15) 40%, rgba(99, 102, 241, 0.15) 60%, transparent 90%);
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .problem-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }

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

    .steps-image-float-card.card-1 {
        left: 16px;
    }

    .steps-image-float-card.card-2 {
        right: 16px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn,
    .mobile-nav-btn-wrapper {
        display: block;
    }

    .mobile-menu-wrapper.open {
        display: block;
    }

    .hero {
        padding: 130px 0 70px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats-row {
        gap: 24px;
    }

    .hero-stat-val {
        font-size: 2rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .result-card {
        padding: 24px 16px;
    }

    .result-ring-wrap {
        width: 80px;
        height: 80px;
    }

    .result-ring-val {
        font-size: 1rem;
    }

    .results-image-overlay {
        padding: 40px 24px 24px;
        gap: 16px;
        flex-direction: column;
    }

    .results-overlay-card {
        padding: 18px 24px;
        gap: 14px;
    }

    .overlay-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .overlay-card-icon i {
        font-size: 1.2rem;
    }

    .results-overlay-card .overlay-val {
        font-size: 1.8rem;
    }

    .results-overlay-card .overlay-suffix {
        font-size: 1rem;
    }

    .results-overlay-card .overlay-lbl {
        font-size: 0.75rem;
    }

    .cta-banner {
        padding: 48px 24px;
        border-radius: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-title-left {
        font-size: 1.7rem;
    }
}

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

    .hero {
        padding: 120px 0 56px;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

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

    .hero-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .btn-primary,
    .cta-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .omnichannel-chips {
        gap: 8px;
    }

    .chip {
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    .faq-question {
        font-size: 0.88rem;
        padding: 16px 18px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .results-overlay-card {
        padding: 16px 20px;
        gap: 12px;
    }

    .overlay-card-icon {
        width: 44px;
        height: 44px;
    }

    .overlay-card-icon i {
        font-size: 1.1rem;
    }

    .results-overlay-card .overlay-val {
        font-size: 1.6rem;
    }

    .results-overlay-card .overlay-lbl {
        font-size: 0.7rem;
    }
}