/* ===== INDEX PAGE-SPECIFIC CSS ===== */

/* ============================================================
           STATS BAND
           ============================================================ */
        .stats-band {
            position: relative;
            background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
            border-bottom: 1px solid var(--gray-200);
            padding: 64px 0;
            overflow: hidden;
        }

.stats-band .sb-blob {
            position: absolute;
            width: 420px; height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,58,175,0.06), transparent 70%);
            filter: blur(60px);
            top: -180px; left: -120px;
            pointer-events: none;
            z-index: 0;
        }

.stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 22px;
            position: relative;
            z-index: 1;
        }

.stats-item {
            position: relative;
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: 18px;
            padding: 26px 24px 22px;
            text-align: left;
            overflow: hidden;
            transition: var(--transition);
            cursor: default;
        }

.stats-item::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
        }

.stats-item:hover::before { transform: scaleX(1); }

.stats-item:hover {
            transform: translateY(-7px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

.stats-item .si-icon {
            width: 42px; height: 42px;
            border-radius: 12px;
            background: var(--primary-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            transition: var(--transition);
        }

.stats-item .si-icon svg {
            width: 20px; height: 20px;
            color: var(--primary);
        }

.stats-item:hover .si-icon {
            background: var(--primary);
            transform: rotate(-8deg) scale(1.08);
        }

.stats-item:hover .si-icon svg { color: #fff; }

.stats-item .number {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

.stats-item .label {
            font-size: 0.85rem;
            color: var(--gray-600);
            font-weight: 600;
            margin-top: 2px;
        }

.stats-item .si-desc {
            font-size: 0.78rem;
            color: var(--gray-500);
            line-height: 1.55;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1), opacity 0.3s ease, margin-top 0.4s;
        }

.stats-item:hover .si-desc {
            max-height: 70px;
            opacity: 1;
            margin-top: 10px;
        }

.stats-item .si-bar {
            margin-top: 14px;
            height: 4px;
            border-radius: 2px;
            background: var(--gray-100);
            overflow: hidden;
        }

.stats-item .si-bar span {
            display: block;
            height: 100%;
            width: 0%;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            transition: width 1.4s cubic-bezier(0.23,1,0.32,1);
        }

.stats-item.in-view .si-bar span { width: var(--pct, 0%); }

.stats-item .si-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            font-size: 0.7rem;
            font-weight: 700;
            color: #059669;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

.stats-item .si-live .dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #10b981;
            box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
            animation: dotPulse 1.8s ease-in-out infinite;
        }

@keyframes dotPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.4); opacity: 0.7; }
        }

/* ============================================================
           COMPANY INTRODUCTION SECTION
           ============================================================ */
        .intro-section {
            position: relative;
            overflow: hidden;
            background: var(--gray-50);
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
        }

.intro-section .sec-blob {
            position: absolute;
            width: 460px;
            height: 460px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,58,175,0.06), transparent 70%);
            filter: blur(60px);
            top: -160px;
            right: -120px;
            pointer-events: none;
            z-index: 0;
            animation: floatBg 20s ease-in-out infinite;
        }

.intro-grid {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

.intro-visual {
            position: relative;
            aspect-ratio: 4/3.3;
        }

.intro-glow {
            position: absolute;
            inset: -8%;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary-glow), transparent 70%);
            filter: blur(6px);
            z-index: 0;
        }

.intro-frame {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

.intro-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.4s cubic-bezier(0.23,1,0.32,1);
        }

.intro-frame:hover img { transform: scale(1.06); }

.intro-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(200deg, rgba(0,58,175,0.32) 0%, transparent 45%);
            pointer-events: none;
        }

.intro-badge-float {
            position: absolute;
            bottom: 18px;
            left: 18px;
            z-index: 2;
            background: rgba(255,255,255,0.94);
            backdrop-filter: blur(10px);
            padding: 12px 18px;
            border-radius: 14px;
            box-shadow: 0 20px 40px -18px rgba(0,58,175,0.35);
            display: flex;
            gap: 18px;
        }

.intro-badge-float .ib-item .ib-num {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

.intro-badge-float .ib-item .ib-lbl {
            font-size: 0.64rem;
            color: var(--gray-500);
            margin-top: 4px;
            font-weight: 600;
        }

.intro-badge-corner {
            position: absolute;
            top: 18px;
            right: 18px;
            z-index: 2;
            background: rgba(255,255,255,0.94);
            backdrop-filter: blur(10px);
            padding: 8px 14px;
            border-radius: 100px;
            font-size: 0.68rem;
            font-weight: 700;
            color: var(--teal-dark);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 6px;
        }

.intro-badge-corner .dot {
            width: 7px; height: 7px; border-radius: 50%;
            background: var(--teal);
            box-shadow: 0 0 0 3px var(--teal-soft);
        }

.intro-copy .section-label { margin-bottom: 16px; }

.intro-copy h2 {
            font-size: clamp(1.7rem, 3vw, 2.3rem);
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1.28;
            margin-bottom: 18px;
            letter-spacing: -0.01em;
        }

.intro-copy > p {
            font-size: 1.02rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 30px;
        }

.intro-points {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

.intro-point {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

.intro-point .ip-icon {
            width: 38px;
            height: 38px;
            border-radius: 11px;
            background: var(--primary-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

.intro-point .ip-icon svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }

.intro-point h4 {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 3px;
        }

.intro-point p {
            font-size: 0.8rem;
            color: var(--gray-500);
            line-height: 1.55;
        }

@media (max-width: 1024px) {
            .intro-grid { grid-template-columns: 1fr; gap: 40px; }
            .intro-visual { order: -1; }
        }

@media (max-width: 560px) {
            .intro-points { grid-template-columns: 1fr; }
        }

.form-group-conditional {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            margin: 0 !important;
            padding: 0 !important;
            transition: opacity 0.4s cubic-bezier(0.23,1,0.32,1), max-height 0.4s cubic-bezier(0.23,1,0.32,1);
        }

.form-group-conditional.show {
            opacity: 1;
            max-height: 120px;
            margin-bottom: 20px !important;
        }

/* ============================================================
           WELCOME POPUP MODAL
           ============================================================ */
        .welcome-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 16, 32, 0.65);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

.welcome-modal-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

.welcome-modal {
            position: relative;
            width: 100%;
            max-width: 900px;
            max-height: 92vh;
            overflow: hidden;
            background: #fff;
            border-radius: 28px;
            box-shadow: 0 60px 120px -30px rgba(0,0,0,0.5);
            display: grid;
            grid-template-columns: 1fr 1fr;
            transform: scale(0.94) translateY(16px);
            opacity: 0;
            transition: transform 0.45s cubic-bezier(0.23,1,0.32,1), opacity 0.45s cubic-bezier(0.23,1,0.32,1);
        }

.welcome-modal-overlay.open .welcome-modal {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

/* ---------- Left panel: brand / value props ---------- */
.wm-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 26px;
            background: radial-gradient(120% 140% at 100% 0%, #0d2f6e 0%, var(--primary-dark) 45%, #041232 100%);
            padding: 36px 34px;
            overflow-y: auto;
        }

.wm-visual .wm-glow {
            position: absolute;
            width: 320px; height: 320px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(56,189,248,0.20), transparent 70%);
            top: -140px; right: -100px;
            pointer-events: none;
        }

.wm-brand {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 12px;
        }

.wm-brand-icon {
            width: 42px; height: 42px;
            flex-shrink: 0;
            border-radius: 12px;
            background: linear-gradient(135deg, #1e9de0, #0d6ecf);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.35);
            overflow: hidden;
        }

.wm-brand-icon img { width: 60%; height: 60%; object-fit: contain; }

/* Compact brand row shown only on the smallest screens (<=480px), where
   the full left-hand visual panel is hidden to save space — keeps the
   logo visible on the form panel instead of disappearing entirely. */
.wm-form-panel-brand {
            display: none;
            align-items: center;
            gap: 10px;
            margin: 0 0 18px;
        }

.wm-form-panel-brand .wm-brand-icon {
            width: 34px; height: 34px;
            border-radius: 10px;
        }

.wm-form-panel-brand .wm-brand-name {
            color: var(--primary-dark);
            font-size: 0.92rem;
        }

.wm-form-panel-brand .wm-brand-sub {
            color: var(--gray-500);
        }


.wm-brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
        }

.wm-brand-name {
            color: #fff;
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

.wm-brand-name strong { font-weight: 800; }

.wm-brand-sub {
            color: rgba(255,255,255,0.5);
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

.wm-pitch { position: relative; z-index: 1; }

.wm-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #2dd4bf;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

.wm-headline {
            color: #fff;
            font-size: 1.85rem;
            font-weight: 800;
            line-height: 1.22;
            letter-spacing: -0.01em;
        }

.wm-service-cards {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.wm-service-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 14px;
            padding: 14px 16px;
            transition: var(--transition);
        }

.wm-service-card:hover {
            background: rgba(255,255,255,0.11);
            transform: translateY(-1px);
        }

.wm-service-icon {
            width: 40px; height: 40px;
            flex-shrink: 0;
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

.wm-service-icon svg { width: 19px; height: 19px; }

.wm-service-icon-billing { background: linear-gradient(135deg, #fb7455, #ef4444); }
.wm-service-icon-web { background: linear-gradient(135deg, #22d3ee, #2563eb); }

.wm-service-copy {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
        }

.wm-service-copy strong {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 1.3;
        }

.wm-service-copy em {
            font-style: normal;
            color: rgba(255,255,255,0.55);
            font-size: 0.74rem;
            line-height: 1.4;
        }

.wm-tags {
            position: relative;
            z-index: 1;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.12);
            display: flex;
            flex-wrap: wrap;
            column-gap: 20px;
            row-gap: 10px;
        }

.wm-tags span {
            font-size: 0.78rem;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

.wm-tags span svg {
            width: 15px; height: 15px;
            color: #2dd4bf;
            flex-shrink: 0;
        }

/* ---------- Right panel: form ---------- */
.wm-form-panel {
            padding: 40px 38px;
            position: relative;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

.wm-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid var(--gray-200);
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--gray-500);
            transition: var(--transition);
            z-index: 2;
        }

.wm-close:hover {
            background: var(--gray-900);
            color: #fff;
            border-color: var(--gray-900);
            transform: rotate(90deg);
        }

.wm-close svg { width: 16px; height: 16px; }

.wm-form-eyebrow {
            display: block;
            color: var(--primary);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 10px;
            padding-right: 34px;
        }

.wm-form-panel h4 {
            font-size: 1.55rem;
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1.25;
            letter-spacing: -0.01em;
            margin-bottom: 12px;
        }

.wm-form-panel .wm-sub {
            font-size: 0.92rem;
            color: var(--gray-500);
            margin-bottom: 26px;
            line-height: 1.6;
        }

.wm-form-panel .form-group { margin-bottom: 18px; }

.wm-form-panel .form-group label {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 6px;
        }

.wm-form-panel .form-group input {
            padding: 13px 16px;
            border-radius: 10px;
            font-size: 0.95rem;
        }

.wm-form-panel .btn-primary {
            width: 100%;
            justify-content: center;
            margin-top: 6px;
            padding: 15px 34px;
            font-size: 0.98rem;
            border-radius: 12px;
            background: linear-gradient(135deg, #1d6fe0, var(--primary));
        }

.wm-form-panel .btn-primary::after {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }

.wm-form-panel .wm-disclaimer {
            font-size: 0.72rem;
            color: var(--gray-400);
            text-align: center;
            margin-top: 14px;
            line-height: 1.55;
        }

.wm-form-error {
            display: none;
            font-size: 0.8rem;
            font-weight: 600;
            color: #d64545;
            background: rgba(214, 69, 69, 0.08);
            border: 1px solid rgba(214, 69, 69, 0.25);
            border-radius: 10px;
            padding: 10px 14px;
            margin-top: 12px;
            text-align: center;
            line-height: 1.5;
        }

.wm-success {
            display: none;
            text-align: center;
            padding: 30px 10px;
        }

.wm-success.show { display: block; }

.wm-success .fs-icon {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: #d1fae5;
            color: #059669;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

.wm-success .fs-icon svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
            .welcome-modal { max-width: 480px; }
        }

@media (max-width: 720px) {
            .welcome-modal { grid-template-columns: 1fr; max-height: 94vh; border-radius: 22px; }
            .wm-visual { padding: 28px 26px; gap: 20px; }
            .wm-headline { font-size: 1.5rem; }
            .wm-service-card { padding: 12px 14px; }
            .wm-tags { padding-top: 16px; }
            .wm-form-panel { padding: 30px 24px 26px; }
            .wm-form-panel h4 { font-size: 1.3rem; }
        }

@media (max-width: 480px) {
            .welcome-modal-overlay { padding: 0; align-items: flex-end; }
            .welcome-modal { max-width: 100%; width: 100%; border-radius: 20px 20px 0 0; max-height: 96vh; }
            .wm-visual { display: none; }
            .wm-form-panel { padding: 30px 20px 24px; }
            .wm-form-panel-brand { display: flex; }
        }

.specialty-card {
            padding: 28px 20px 24px;
            text-align: left;
        }

.specialties-grid {
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
        }

.specialty-card .sp-icon-wrap { margin: 0 0 14px; }

.specialty-card h4 { margin-bottom: 6px; }

.specialty-card p {
            position: relative;
            z-index: 1;
            font-size: 0.79rem;
            color: var(--gray-500);
            line-height: 1.5;
        }

.specialty-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 44px; height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
        }

.specialty-card:hover::after { transform: scaleX(1); }

/* ============================================================
           FOOTER REDESIGN
           ============================================================ */
        .footer-cta-band {
            background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 65%, #1a5cdb 100%);
            padding: 56px 0;
            position: relative;
            overflow: hidden;
        }

.footer-cta-band .fcb-glow {
            position: absolute;
            width: 380px; height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
            top: -180px; right: -100px;
            pointer-events: none;
        }

.fcb-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

.fcb-inner h3 {
            font-size: clamp(1.3rem, 2.4vw, 1.7rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 6px;
        }

.fcb-inner p {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
        }

.fcb-inner .btn-white {
            flex-shrink: 0;
        }

.footer {
            padding: 60px 0 28px;
        }

@media (max-width: 640px) {
            .fcb-inner { flex-direction: column; text-align: center; }
            .fcb-inner .btn-white { width: 100%; justify-content: center; }
        }

