/* ==========================================================================
   ERINITE SOLUTIONS — ANALYTICS & REPORTING
   Section 01: Hero with 3D Interactive Analytics Dashboard & Animated Fluid Waves
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* Base / Reset for Analytics Page */
.analytics-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #07182D;
    background: #FFFFFF;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   SECTION 01: HERO STYLES
   ========================================================================== */
.analytics-hero {
    position: relative;
    padding: 60px 0 35px;
    background: #FFFFFF;
    overflow: hidden;
    min-height: 740px;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   ANIMATED FLUID BACKGROUND BLUE SHAPES & WAVES (Matching Reference)
   ========================================================================== */
.analytics-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.analytics-bg-shapes-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    min-width: 620px;
    min-height: 560px;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

/* Fluid Wave 1 (Top-Right Sweeping Contour) */
.analytics-fluid-shape {
    position: absolute;
    will-change: transform, opacity;
}

.shape-wave-main {
    top: -10%;
    right: -10%;
    width: 950px;
    height: 850px;
    opacity: 0.85;
    animation: waveMotionMain 7s ease-in-out infinite alternate;
}

/* Fluid Wave 2 (Center-Right Sweeping Curve Layer) */
.shape-wave-secondary {
    top: 15%;
    right: 5%;
    width: 780px;
    height: 720px;
    opacity: 0.75;
    animation: waveMotionSecondary 9s ease-in-out infinite alternate;
}

/* Fluid Wave 3 (Behind Dashboard Ambient Crest) */
.shape-wave-crest {
    top: 30%;
    right: -5%;
    width: 650px;
    height: 600px;
    opacity: 0.65;
    animation: waveMotionCrest 6s ease-in-out infinite alternate;
}

/* Ambient Pulsing Glow Orb Behind Dashboard */
.shape-glow-orb {
    position: absolute;
    top: 25%;
    right: 12%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.22) 0%, rgba(56, 189, 248, 0.14) 40%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(45px);
    z-index: 1;
    animation: glowOrbPulse 4.5s ease-in-out infinite alternate;
}

/* Continuous Fluid Motion Animations */
@keyframes waveMotionMain {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-30px, 20px) scale(1.06) rotate(2.5deg);
    }
    100% {
        transform: translate(20px, -25px) scale(1.02) rotate(-1.5deg);
    }
}

@keyframes waveMotionSecondary {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(35px, -30px) scale(1.08) rotate(-3deg);
    }
    100% {
        transform: translate(-25px, 25px) scale(0.96) rotate(2deg);
    }
}

@keyframes waveMotionCrest {
    0% {
        transform: translate(0, 0) scale(0.95);
    }
    50% {
        transform: translate(-20px, -30px) scale(1.1);
    }
    100% {
        transform: translate(15px, 20px) scale(1.02);
    }
}

@keyframes glowOrbPulse {
    0% {
        transform: scale(0.9) translate(0, 0);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2) translate(-20px, -15px);
        opacity: 1;
    }
    100% {
        transform: scale(1.05) translate(15px, -10px);
        opacity: 0.85;
    }
}

/* Container */
.analytics-hero-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   LEFT CONTENT COLUMN
   ========================================================================== */
.analytics-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Eyebrow */
.analytics-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.analytics-eyebrow-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0066FF;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.analytics-eyebrow-line {
    width: 46px;
    height: 2px;
    background: #93C5FD;
    border-radius: 2px;
}

/* Main Heading */
.analytics-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.14;
    color: #07182D;
    letter-spacing: -0.03em;
    margin: 0 0 20px 0;
}

.analytics-hero-title .text-blue {
    color: #0066FF;
    background: linear-gradient(135deg, #0066FF 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.analytics-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    color: #475569;
    max-width: 500px;
    margin: 0 0 32px 0;
}

/* CTA Button */
.analytics-hero-cta-wrap {
    margin-bottom: 40px;
}

.analytics-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0066FF;
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.35);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
}

.analytics-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 102, 255, 0.45);
    background: #0052CC;
}

.analytics-btn-primary .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.analytics-btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* 3 Bottom Benefit / Feature Badges */
.analytics-hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    border-top: 1px solid #E2E8F0;
    padding-top: 28px;
}

.analytics-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.analytics-benefit-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.analytics-benefit-item:hover .analytics-benefit-icon-box {
    transform: translateY(-4px) scale(1.12);
    background: #0066FF;
    border-color: #0066FF;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.25);
}

.analytics-benefit-icon-box svg {
    width: 22px;
    height: 22px;
    color: #0066FF;
    transition: color 0.3s ease;
}

.analytics-benefit-item:hover .analytics-benefit-icon-box svg {
    color: #FFFFFF;
}

.analytics-benefit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #07182D;
    margin: 0 0 4px 0;
}

.analytics-benefit-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    line-height: 1.45;
    color: #64748B;
    margin: 0;
}


/* ==========================================================================
   RIGHT VISUAL COLUMN: 3D TILTED DASHBOARD
   ========================================================================== */
.analytics-hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1400px;
}

/* 3D Stage Wrapper with Float Animation */
.analytics-stage-wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
    transform-style: preserve-3d;
    animation: dashboardFastFloat 4.5s ease-in-out infinite alternate;
}

@keyframes dashboardFastFloat {
    0% {
        transform: rotateY(-7deg) rotateX(6deg) rotateZ(-1.2deg) translateY(0px);
    }
    100% {
        transform: rotateY(-6deg) rotateX(5deg) rotateZ(-1deg) translateY(-16px);
    }
}

/* Dashboard Card (Strict No-Text-Select) */
.analytics-dashboard-card {
    background: #FFFFFF;
    border-radius: 22px;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 30px 70px rgba(0, 60, 180, 0.16), 0 12px 28px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(241, 245, 249, 0.8);
    padding: 22px 24px;
    width: 100%;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: default;
    position: relative;
    z-index: 3;
}

/* Dashboard Top Header Bar */
.dash-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dash-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #07182D;
    margin: 0;
    letter-spacing: -0.01em;
}

.dash-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dash-date-pill:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: #0066FF;
    background: #EFF6FF;
    color: #0066FF;
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.14);
}

.dash-date-pill .pill-caret {
    width: 12px;
    height: 12px;
    color: #64748B;
}

/* --------------------------------------------------------------------------
   ROW 1: 4 METRIC KPI CARDS
   -------------------------------------------------------------------------- */
.dash-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.dash-kpi-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.dash-kpi-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #93C5FD;
    box-shadow: 0 10px 24px rgba(0, 102, 255, 0.14), 0 0 0 1px #3B82F6;
    z-index: 5;
}

.kpi-label {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    color: #64748B;
    margin-bottom: 3px;
    white-space: nowrap;
}

.kpi-value {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #07182D;
    line-height: 1.15;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
}

.kpi-growth {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #10B981;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

/* --------------------------------------------------------------------------
   ROW 2: REVENUE GROWTH CHART CARD
   -------------------------------------------------------------------------- */
.dash-chart-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 14px 16px 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.dash-chart-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.chart-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #07182D;
}

/* Time Filter Tabs (Daily / Weekly / Monthly) */
.chart-filter-tabs {
    display: flex;
    align-items: center;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 2px;
    gap: 2px;
}

.filter-tab {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: #64748B;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.filter-tab:hover:not(.active) {
    color: #0066FF;
    background: rgba(0, 102, 255, 0.08);
    transform: translateY(-2px) scale(1.08);
}

.filter-tab.active {
    background: #0066FF;
    color: #FFFFFF;
    box-shadow: 0 3px 10px rgba(0, 102, 255, 0.35);
    transform: scale(1.04);
}

/* Chart Canvas / SVG Container */
.chart-canvas-wrap {
    position: relative;
    width: 100%;
    height: 120px;
}

.revenue-svg-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* SVG Chart Elements */
.chart-grid-line {
    stroke: #F1F5F9;
    stroke-width: 1;
    stroke-dasharray: 3 3;
}

.chart-axis-label {
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    font-weight: 500;
    fill: #94A3B8;
}

.chart-line-path {
    stroke: #0066FF;
    stroke-width: 2.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: d 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-area-path {
    fill: url(#revenueAreaGrad);
    transition: d 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-data-dot {
    fill: #0066FF;
    stroke: #FFFFFF;
    stroke-width: 2;
    r: 3.5;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chart-data-dot:hover {
    r: 6;
    stroke-width: 3;
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.5));
}

/* --------------------------------------------------------------------------
   ROW 3: BOTTOM 2 CARDS (Traffic Sources + Top Products)
   -------------------------------------------------------------------------- */
.dash-bottom-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 12px;
}

/* Left Card: Traffic Sources */
.dash-traffic-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.traffic-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #07182D;
    margin: 0 0 10px 0;
}

.traffic-content-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Donut SVG Wrap */
.donut-svg-wrap {
    position: relative;
    width: 95px;
    height: 95px;
    flex-shrink: 0;
}

.donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-segment {
    fill: none;
    stroke-width: 13;
    transition: stroke-width 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.donut-segment:hover {
    stroke-width: 16;
    filter: drop-shadow(0 2px 6px rgba(0, 102, 255, 0.4));
}

.donut-center-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.donut-center-val {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #07182D;
    line-height: 1;
    display: block;
}

.donut-center-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 7.5px;
    font-weight: 500;
    color: #94A3B8;
    line-height: 1.1;
    display: block;
    margin-top: 2px;
    white-space: nowrap;
}

/* Traffic Legend List */
.traffic-legend-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.traffic-legend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    padding: 2px 4px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.traffic-legend-item:hover {
    background: #F8FAFC;
}

.legend-label-group {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-weight: 500;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot.organic { background: #0066FF; }
.legend-dot.paid { background: #38BDF8; }
.legend-dot.social { background: #F59E0B; }
.legend-dot.referral { background: #A855F7; }

.legend-percent {
    font-weight: 700;
    color: #07182D;
}


/* Right Card: Top Products */
.dash-products-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.products-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #07182D;
    margin: 0 0 6px 0;
}

.products-table-head {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #94A3B8;
    padding-bottom: 4px;
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 4px;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.product-row-item:hover {
    background: #EFF6FF;
    transform: translateX(4px) scale(1.02);
}

.product-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-icon-box {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07182D;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.product-row-item:hover .product-icon-box {
    background: #0066FF;
    color: #FFFFFF;
}

.product-icon-box svg {
    width: 12px;
    height: 12px;
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #07182D;
    white-space: nowrap;
}

.product-sales {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #07182D;
}


/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Laptop 1024px maintains side-by-side desktop layout)
   ========================================================================== */
/* 1. Laptop (1024px - 1200px): Keep 2-Column Left/Right Layout in Compact Form */
@media (max-width: 1200px) and (min-width: 901px) {
    .analytics-hero {
        padding: 50px 0 35px;
    }

    .analytics-hero-container {
        grid-template-columns: 46% 54%;
        gap: 20px;
        align-items: center;
        text-align: left;
    }

    .analytics-hero-content {
        align-items: flex-start;
    }

    .analytics-hero-title {
        font-size: 38px;
        line-height: 1.16;
    }

    .analytics-hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .analytics-hero-cta-wrap {
        margin-bottom: 28px;
    }

    .analytics-btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .analytics-hero-benefits {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
        padding-top: 20px;
        max-width: 100%;
    }

    .analytics-benefit-item {
        align-items: flex-start;
        text-align: left;
    }

    .analytics-benefit-icon-box {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }

    .analytics-benefit-icon-box svg {
        width: 18px;
        height: 18px;
    }

    .analytics-benefit-title {
        font-size: 13px;
    }

    .analytics-benefit-desc {
        font-size: 11px;
    }

    .analytics-stage-wrap {
        max-width: 530px;
        transform: rotateY(-5deg) rotateX(4deg);
    }

    .analytics-dashboard-card {
        padding: 18px 16px;
    }

    .dash-kpi-grid {
        gap: 8px;
    }

    .dash-kpi-card {
        padding: 10px 8px;
    }

    .kpi-value {
        font-size: 16.5px;
    }

    .dash-bottom-grid {
        gap: 12px;
    }

    .dash-chart-card,
    .products-table-card {
        padding: 12px 14px;
    }
}

/* 2. Tablet & Mobile (<= 900px): Vertical Stacked Layout */
@media (max-width: 900px) {
    /* Hide Bluish Shapes on Mobile */
    .analytics-bg-shapes-wrap {
        display: none !important;
    }

    .analytics-hero {
        padding: 40px 0 35px;
    }

    .analytics-hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .analytics-hero-content {
        align-items: center;
    }

    .analytics-hero-title {
        font-size: 34px;
    }

    .analytics-hero-desc {
        max-width: 600px;
        margin: 0 auto 28px;
    }

    .analytics-hero-benefits {
        max-width: 560px;
        margin: 0 auto;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px;
        padding-top: 20px;
        width: 100%;
    }

    .analytics-benefit-item {
        align-items: center;
        text-align: center;
    }

    .analytics-benefit-icon-box {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }

    .analytics-benefit-icon-box svg {
        width: 18px;
        height: 18px;
    }

    .analytics-benefit-title {
        font-size: 12.5px;
    }

    .analytics-benefit-desc {
        font-size: 10.5px;
    }

    .analytics-stage-wrap {
        max-width: 560px;
        margin: 0 auto;
        transform: none !important;
        animation: none;
    }

    .dash-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-bottom-grid {
        grid-template-columns: 1fr;
    }
}

/* 3. Small Mobile (<= 480px) */
@media (max-width: 480px) {
    .analytics-hero-title {
        font-size: 27px;
    }

    .analytics-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .analytics-dashboard-card {
        padding: 16px 12px;
    }

    .kpi-value {
        font-size: 16px;
    }

    /* Extra compact for 1-row fit on very small screens */
    .analytics-hero-benefits {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px;
        padding-top: 16px;
    }

    .analytics-benefit-icon-box {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        margin-bottom: 5px;
    }

    .analytics-benefit-icon-box svg {
        width: 15px;
        height: 15px;
    }

    .analytics-benefit-title {
        font-size: 11px;
        line-height: 1.15;
    }

    .analytics-benefit-desc {
        font-size: 9.5px;
        line-height: 1.2;
    }
}

/* ==========================================================================
   SECTION 02: WHAT WE TRACK (6-CARD GRID SHOWCASE)
   ========================================================================== */
.analytics-track-section {
    position: relative;
    padding: 35px 0 35px;
    background: #FFFFFF;
    overflow: hidden;
}

.analytics-track-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section 02 Header */
.track-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.track-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.track-eyebrow-line {
    width: 36px;
    height: 2px;
    background: #93C5FD;
    border-radius: 2px;
}

.track-eyebrow-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0066FF;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.track-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #07182D;
    letter-spacing: -0.025em;
    margin: 0 0 16px 0;
}

.track-main-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* 3x2 Cards Grid */
.track-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Card Container */
.track-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 22px;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    min-height: 200px;
}

.track-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #93C5FD;
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.12), 0 0 0 1px #3B82F6;
    z-index: 5;
}

/* Card Top Header */
.track-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

/* Number Badges (01 to 06) */
.track-num-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.track-card:hover .track-num-badge {
    transform: scale(1.15) rotate(-3deg);
}

/* Number Badge Color Themes */
.badge-blue {
    background: #EFF6FF;
    border: 1.5px solid #DBEAFE;
    color: #0066FF;
}

.badge-purple {
    background: #F5F3FF;
    border: 1.5px solid #EDE9FE;
    color: #8B5CF6;
}

.badge-green {
    background: #ECFDF5;
    border: 1.5px solid #D1FAE5;
    color: #10B981;
}

.badge-magenta {
    background: #FAF5FF;
    border: 1.5px solid #F3E8FF;
    color: #9333EA;
}

.badge-orange {
    background: #FFF7ED;
    border: 1.5px solid #FFEDD5;
    color: #EA580C;
}

/* Card Header Text */
.track-card-info {
    display: flex;
    flex-direction: column;
}

.track-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #07182D;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.track-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    line-height: 1.45;
    color: #64748B;
    margin: 0;
}

/* --------------------------------------------------------------------------
   BOTTOM VISUAL BOX & WIDER CHARTS WITH CUSTOM COLOR GLOWS
   -------------------------------------------------------------------------- */
.track-visual-box {
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px;
    box-sizing: border-box;
    transition: all 0.35s ease;
}

/* Left Chart Container - Wider Horizontal Span */
.track-chart-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end;
    height: 58px;
    position: relative;
    max-width: 68%;
}

/* Right Stat Box */
.track-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    flex-shrink: 0;
}

.track-stat-val {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
}

.track-card:hover .track-stat-val {
    transform: scale(1.05);
}

.track-stat-val.c-blue { color: #0066FF; }
.track-stat-val.c-purple { color: #8B5CF6; }
.track-stat-val.c-green { color: #10B981; }
.track-stat-val.c-magenta { color: #9333EA; }
.track-stat-val.c-orange { color: #EA580C; }

.track-stat-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #64748B;
    margin-top: 2px;
    white-space: nowrap;
}

.track-stat-sub.c-green {
    color: #10B981;
    font-weight: 700;
}

.track-stat-sub.c-purple {
    color: #9333EA;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   INDIVIDUAL PER-COLOR CARD HOVER GLOWS
   -------------------------------------------------------------------------- */

/* Card 01 - Emerald Green Glow */
.card-theme-emerald:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #10B981;
    box-shadow: 0 18px 40px rgba(16, 185, 129, 0.18), 0 0 0 1.5px #10B981;
}

.card-theme-emerald:hover .track-visual-box {
    background: #F0FDF4;
    border-color: #BBF7D0;
    box-shadow: inset 0 0 15px rgba(16, 185, 129, 0.06);
}

.card-theme-emerald:hover .bars-emerald .chart-bar-item {
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.7));
}

/* Card 02 - Purple Glow */
.card-theme-purple:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #8B5CF6;
    box-shadow: 0 18px 40px rgba(139, 92, 246, 0.18), 0 0 0 1.5px #8B5CF6;
}

.card-theme-purple:hover .track-visual-box {
    background: #FAF5FF;
    border-color: #E9D5FF;
    box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.06);
}

.card-theme-purple:hover .bars-purple .chart-bar-item {
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.7));
}

/* Card 03 - Blue Glow */
.card-theme-blue:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #0066FF;
    box-shadow: 0 18px 40px rgba(0, 102, 255, 0.18), 0 0 0 1.5px #0066FF;
}

.card-theme-blue:hover .track-visual-box {
    background: #EFF6FF;
    border-color: #BFDBFE;
    box-shadow: inset 0 0 15px rgba(0, 102, 255, 0.06);
}

.card-theme-blue:hover .spline-line.c-blue {
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.8));
}

/* Card 04 - Magenta Glow */
.card-theme-magenta:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #A855F7;
    box-shadow: 0 18px 40px rgba(168, 85, 247, 0.18), 0 0 0 1.5px #A855F7;
}

.card-theme-magenta:hover .track-visual-box {
    background: #FAF5FF;
    border-color: #F3E8FF;
    box-shadow: inset 0 0 15px rgba(168, 85, 247, 0.06);
}

.card-theme-magenta:hover .spline-line.c-magenta {
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.8));
}

/* Card 05 - Orange Glow */
.card-theme-orange:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #F97316;
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.18), 0 0 0 1.5px #F97316;
}

.card-theme-orange:hover .track-visual-box {
    background: #FFF7ED;
    border-color: #FFEDD5;
    box-shadow: inset 0 0 15px rgba(249, 115, 22, 0.06);
}

.card-theme-orange:hover .bars-orange .chart-bar-item {
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.7));
}

/* Card 06 - Cyan / Blue Glow */
.card-theme-cyan:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #0066FF;
    box-shadow: 0 18px 40px rgba(0, 102, 255, 0.18), 0 0 0 1.5px #0066FF;
}

.card-theme-cyan:hover .track-visual-box {
    background: #EFF6FF;
    border-color: #BFDBFE;
    box-shadow: inset 0 0 15px rgba(0, 102, 255, 0.06);
}

.card-theme-cyan:hover .mini-combo-charts {
    filter: drop-shadow(0 0 6px rgba(0, 102, 255, 0.6));
}

/* --------------------------------------------------------------------------
   SPECIFIC CARD GRAPHICS (Wider & Spaced Out)
   -------------------------------------------------------------------------- */

/* Bar Chart Graphic (Wider Spacing Across Container) */
.bars-graphic {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 100%;
    width: 100%;
    padding-bottom: 2px;
}

.chart-bar-item {
    flex: 1;
    min-width: 5px;
    max-width: 9px;
    border-radius: 4px 4px 1.5px 1.5px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.track-card:hover .chart-bar-item {
    transform: scaleY(1.08);
    transform-origin: bottom;
}

/* Bar Colors & Base Glow */
.bars-emerald .chart-bar-item {
    background: linear-gradient(180deg, #10B981 0%, rgba(16, 185, 129, 0.25) 100%);
    box-shadow: 0 -2px 6px rgba(16, 185, 129, 0.2);
}

.bars-purple .chart-bar-item {
    background: linear-gradient(180deg, #A855F7 0%, rgba(168, 85, 247, 0.25) 100%);
    box-shadow: 0 -2px 6px rgba(168, 85, 247, 0.2);
}

.bars-orange .chart-bar-item {
    background: linear-gradient(180deg, #F97316 0%, rgba(249, 115, 22, 0.25) 100%);
    box-shadow: 0 -2px 6px rgba(249, 115, 22, 0.2);
}

/* Spline SVG Graphics (Full-Width Responsive Wave) */
.spline-graphic-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.spline-line {
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.track-card:hover .spline-line {
    stroke-width: 2.2;
}

.spline-line.c-blue { 
    stroke: #0066FF; 
}

.spline-line.c-magenta { 
    stroke: #A855F7; 
}

/* Card 06 Custom Business Reports Visual */
.card6-visual-combo {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.mini-combo-charts {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 52px;
    transition: all 0.3s ease;
}

.mini-bars-wrap {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 46px;
    width: 32px;
}

.mini-bar {
    width: 7px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #0066FF 0%, rgba(0, 102, 255, 0.5) 100%);
    transition: transform 0.3s ease;
}

.track-card:hover .mini-bar {
    transform: scaleY(1.1);
    transform-origin: bottom;
}

.mini-lines-wrap {
    width: 54px;
    height: 46px;
}

/* Card 06 Checklist Items */
.card6-checklist {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #07182D;
}

.check-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #10B981;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    font-weight: 800;
    flex-shrink: 0;
}


/* ==========================================================================
   RESPONSIVE BREAKPOINTS (SECTION 02)
   ========================================================================== */
@media (max-width: 900px) {
    .track-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .track-main-title {
        font-size: 34px;
    }
}

@media (max-width: 700px) {
    .analytics-track-section {
        padding: 70px 0 80px;
    }

    .track-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .track-main-title {
        font-size: 28px;
    }

    .track-main-desc {
        font-size: 14px;
    }

    .track-card {
        padding: 20px 16px 16px;
    }
}


/* ==========================================================================
   SECTION 03: OUR APPROACH (BALANCED CENTERED LAYOUT & RADIANT DASHBOARD GLOW)
   ========================================================================== */
.analytics-approach-section {
    position: relative;
    padding: 65px 0 65px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 65%, #F4F8FD 85%, #E5F0FD 100%);
    overflow: hidden;
}

.approach-dash-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

/* Radiant Soft Blue Glow Aura Radiating Exactly Behind Dashboard Card */
.approach-dash-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 108%;
    height: 110%;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.32) 0%, rgba(56, 189, 248, 0.22) 45%, rgba(0, 102, 255, 0) 72%);
    filter: blur(35px);
    border-radius: 28px;
    pointer-events: none;
    z-index: 0;
    animation: dashGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes dashGlowPulse {
    0% {
        opacity: 0.75;
        transform: translate(-50%, -50%) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.03);
    }
}

.analytics-approach-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Section 03 Header */
.approach-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.approach-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.approach-eyebrow-line {
    width: 36px;
    height: 2px;
    background: #93C5FD;
    border-radius: 2px;
}

.approach-eyebrow-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0066FF;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.approach-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: #07182D;
    letter-spacing: -0.025em;
    margin: 0 0 12px 0;
}

.approach-main-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.55;
    color: #64748B;
    margin: 0;
}

/* 2-Column Grid (Balanced 44% Left Steps, 56% Right Dashboard, Vertically Centered) */
.approach-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 36px;
    align-items: center;
}

/* --------------------------------------------------------------------------
   LEFT: 3 CONNECTED PROCESS STEPS
   -------------------------------------------------------------------------- */
.approach-steps-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    padding-left: 6px;
}

/* Vertical Dashed Connector Line */
.steps-vertical-line {
    position: absolute;
    left: 29px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    border-left: 2px dashed #93C5FD;
    z-index: 1;
}

.approach-step-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.approach-step-item:hover {
    transform: translateX(6px);
}

/* Number Badge Pill */
.step-num-pill {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #EFF6FF;
    border: 1.5px solid #DBEAFE;
    color: #0066FF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.approach-step-item:hover .step-num-pill {
    background: #0066FF;
    color: #FFFFFF;
    border-color: #0066FF;
    transform: scale(1.12);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

/* Icon Box */
.step-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066FF;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.approach-step-item:hover .step-icon-box {
    background: #EFF6FF;
    border-color: #93C5FD;
    transform: scale(1.08);
}

.step-icon-box svg {
    width: 22px;
    height: 22px;
}

/* Text Content */
.step-text-wrap {
    display: flex;
    flex-direction: column;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #07182D;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
    color: #64748B;
    margin: 0;
    max-width: 360px;
}


/* --------------------------------------------------------------------------
   RIGHT: PERFORMANCE OVERVIEW DASHBOARD CARD (Compact & Perfectly Proportioned)
   -------------------------------------------------------------------------- */
.approach-dash-wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
    justify-self: center;
}

.approach-dash-card {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    border: 1.5px solid #DBEAFE;
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
}

.approach-dash-card:hover {
    transform: translateY(-6px);
    border-color: #93C5FD;
    box-shadow: 0 30px 70px rgba(0, 102, 255, 0.16), 0 0 0 1px #3B82F6;
}

/* Top Bar */
.approach-dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.approach-dash-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #07182D;
    margin: 0;
}

.approach-dash-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 5px 11px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
}

.approach-dash-pill:hover {
    background: #EFF6FF;
    border-color: #0066FF;
    color: #0066FF;
    transform: translateY(-2px);
}

.approach-dash-pill svg {
    width: 12px;
    height: 12px;
    color: #64748B;
}

/* Dashboard 2-Part Body (60% KPIs & Chart, 40% Donut) */
.approach-dash-body {
    display: grid;
    grid-template-columns: 59% 41%;
    gap: 14px;
    align-items: flex-start;
}

/* Left KPIs & Spline Chart */
.dash-left-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.approach-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.approach-kpi-item {
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    border-radius: 10px;
    padding: 8px 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.approach-kpi-item:hover {
    background: #FFFFFF;
    border-color: #93C5FD;
    box-shadow: 0 6px 14px rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.app-kpi-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    font-weight: 500;
    color: #64748B;
    margin-bottom: 2px;
}

.app-kpi-val {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #07182D;
    line-height: 1.1;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.app-kpi-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #10B981;
}

/* Spline Chart Canvas */
.approach-chart-canvas {
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-radius: 12px;
    padding: 8px 8px 4px;
    height: 110px;
    position: relative;
}

.approach-svg-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Right Traffic Sources Donut Section */
.dash-right-traffic {
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-traffic-title {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #07182D;
    margin: 0 0 8px 0;
    align-self: flex-start;
}

.approach-donut-wrap {
    position: relative;
    width: 82px;
    height: 82px;
    margin-bottom: 10px;
}

.approach-donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.approach-donut-seg {
    fill: none;
    stroke-width: 13;
    transition: stroke-width 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.approach-donut-seg:hover {
    stroke-width: 16;
    filter: drop-shadow(0 2px 6px rgba(0, 102, 255, 0.4));
}

.approach-donut-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.app-donut-val {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #07182D;
    line-height: 1;
    display: block;
}

.app-donut-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 500;
    color: #94A3B8;
    line-height: 1.1;
    display: block;
    margin-top: 1px;
}

/* Legend List */
.approach-legend-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
}

.app-legend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    padding: 2px 3px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.app-legend-item:hover {
    background: #F8FAFC;
}


/* ==========================================================================
   SECTION 04: CTA BANNER (100% FULL-PAGE WIDTH EDGE-TO-EDGE & ZERO GAPS)
   ========================================================================== */
.analytics-cta-section {
    position: relative;
    padding: 0;
    margin: 0;
    background: transparent;
    overflow: hidden;
    width: 100%;
}

.analytics-cta-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CTA Main Card - 100% Full-Bleed Edge-to-Edge with Soft Color Gradient */
.analytics-cta-card {
    background: linear-gradient(180deg, #092652 0%, #051A3B 22%, #020C1F 60%, #010815 100%);
    border-radius: 0;
    padding: 56px 8% 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

/* Ambient Deep Blue Radial Base */
.cta-glow-backdrop {
    position: absolute;
    top: -40%;
    right: 5%;
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(0, 150, 255, 0.35) 0%, rgba(0, 102, 255, 0.18) 45%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

/* Intense Neon Cyan/Blue Glow Directly Behind the 3D Bars */
.cta-bars-neon-glow {
    position: absolute;
    bottom: -20px;
    right: 5%;
    width: 450px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.7) 0%, rgba(0, 102, 255, 0.45) 45%, transparent 75%);
    filter: blur(45px);
    pointer-events: none;
    z-index: 1;
    animation: neonGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes neonGlowPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.75;
    }
    100% {
        transform: scale(1.12);
        opacity: 1;
    }
}

/* Sweeping Wave Ribbons SVG - Full Width & Height, Zero Cutoff */
.cta-wave-svg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Left CTA Content */
.analytics-cta-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.cta-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.cta-eyebrow-line {
    width: 28px;
    height: 2px;
    background: #60A5FA;
    border-radius: 2px;
}

.cta-eyebrow-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #60A5FA;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.analytics-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.18;
    color: #FFFFFF;
    letter-spacing: -0.025em;
    margin: 0 0 12px 0;
}

.analytics-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #94A3B8;
    margin: 0 0 28px 0;
}

/* CTA Button */
.analytics-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0066FF;
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.45);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
}

.analytics-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(0, 102, 255, 0.6);
    background: #0052CC;
}

.analytics-cta-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.analytics-cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Right Visual (3D Ascending Glassmorphic Glowing Bars with Bright Neon Tops) */
.analytics-cta-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 165px;
    padding-bottom: 8px;
    padding-right: 20px;
}

.cta-3d-bar {
    width: 26px;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, #BAE6FD 0%, #38BDF8 25%, #0066FF 65%, rgba(0, 70, 180, 0.3) 100%);
    border: 1.5px solid rgba(224, 242, 254, 0.85);
    box-shadow: 0 0 22px rgba(56, 189, 248, 0.7), inset 0 2px 6px #FFFFFF;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: barAscendGlow 4s ease-in-out infinite alternate;
}

.cta-3d-bar:nth-child(1) { height: 26%; animation-delay: 0s; }
.cta-3d-bar:nth-child(2) { height: 42%; animation-delay: 0.3s; }
.cta-3d-bar:nth-child(3) { height: 60%; animation-delay: 0.6s; }
.cta-3d-bar:nth-child(4) { height: 78%; animation-delay: 0.9s; }
.cta-3d-bar:nth-child(5) { height: 92%; animation-delay: 1.2s; }
.cta-3d-bar:nth-child(6) { height: 100%; animation-delay: 1.5s; }

.analytics-cta-card:hover .cta-3d-bar {
    filter: brightness(1.25) drop-shadow(0 0 20px rgba(56, 189, 248, 0.95));
}

/* Responsive for Section 03 & Section 04 (Laptop 1024px maintains side-by-side layout) */
@media (max-width: 1200px) and (min-width: 901px) {
    .analytics-approach-section {
        padding: 55px 0 55px;
    }

    .approach-grid {
        grid-template-columns: 44% 56%;
        gap: 24px;
        align-items: center;
    }

    .approach-main-title {
        font-size: 34px;
    }

    .approach-dash-wrap {
        max-width: 540px;
    }

    .analytics-cta-card {
        padding: 48px 6%;
    }

    .analytics-cta-title {
        font-size: 34px;
    }
}

/* Tablet & Mobile (<= 900px): Vertical Stacked */
@media (max-width: 900px) {
    .analytics-approach-section {
        padding: 45px 0 45px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .approach-steps-col {
        max-width: 580px;
        margin: 0 auto;
    }

    .approach-dash-wrap {
        max-width: 580px;
        margin: 0 auto;
    }

    .analytics-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 6%;
        gap: 32px;
    }

    .analytics-cta-left {
        align-items: center;
        max-width: 100%;
    }

    .analytics-cta-title {
        font-size: 30px;
    }
}

@media (max-width: 680px) {
    .approach-dash-body {
        grid-template-columns: 1fr;
    }

    .approach-main-title {
        font-size: 27px;
    }

    .analytics-cta-card {
        padding: 32px 5%;
    }

    .analytics-cta-title {
        font-size: 24px;
    }
}