/* ==========================================================================
   WEBCONVOY AI - MODERN EDITORIAL DESIGN SYSTEM
   Inspired by clean, non-AI-slop editorial product design:
   1. Interactive Prompt & Waveform Bento
   2. Measurable ROI Curve (100% -> 28%) & 2x2 Metric Bento
   3. 4-Pitfall Enterprise Diagnosis Grid with Optical CV Bounding Box
   4. High-Density Tech Stats & Heatmap Glow Cards [01, 02, 03]
   5. Embedded App Interface & Hardware Security Bento
   ========================================================================== */

/* -------------------------------------------------------------
   COMMON UTILITIES & FONTS
   ------------------------------------------------------------- */
.accent-serif {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-style: italic;
    font-weight: 500;
    color: #93c5fd;
    letter-spacing: -0.5px;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #126bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-coral {
    background: linear-gradient(135deg, #f87171 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =============================================================
   1. COMP-1: INTERACTIVE PROMPT & WAVEFORM BENTO
   ============================================================= */
.editorial-prompt-bento-section {
    padding: 100px 0;
    background: #05070b;
    position: relative;
    overflow: hidden;
}

.editorial-prompt-bento-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(18, 107, 255, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.epb-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 55px;
}

.epb-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 107, 255, 0.12);
    border: 1px solid rgba(45, 140, 255, 0.3);
    color: #38bdf8;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.epb-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.epb-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.6;
}

.epb-grid {
    display: grid;
    grid-template-columns: 290px 1fr 290px;
    gap: 24px;
    align-items: stretch;
}

.epb-side-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.epb-card {
    background: #090d15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.epb-card:hover {
    border-color: rgba(45, 140, 255, 0.4);
    background: #0c121e;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.epb-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #60a5fa;
    margin-bottom: 16px;
}

.epb-card-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.epb-card-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
}

/* Center Showcase Card */
.epb-center-card {
    background: radial-gradient(circle at 50% 60%, rgba(220, 38, 38, 0.16) 0%, rgba(18, 107, 255, 0.08) 50%, transparent 80%), #0c1018;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.epb-prompt-bubble {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.epb-prompt-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
}

.epb-prompt-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #f1f5f9;
    line-height: 1.5;
    margin: 0;
}

.epb-waveform-area {
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.epb-waveform-svg {
    width: 100%;
    max-width: 380px;
    height: 70px;
    display: block;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.epb-mic-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    color: #ffffff;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: epbMicPulse 2.4s infinite ease-in-out;
}

.epb-mic-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(239, 68, 68, 0.8);
}

@keyframes epbMicPulse {
    0%, 100% {
        box-shadow: 0 0 18px rgba(239, 68, 68, 0.5);
    }
    50% {
        box-shadow: 0 0 32px rgba(239, 68, 68, 0.85);
    }
}

.epb-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 18px;
}

.epb-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.epb-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* =============================================================
   2. COMP-2: MEASURABLE ROI DROP CURVE & 2x2 METRIC BENTO
   ============================================================= */
.editorial-roi-section {
    padding: 100px 0;
    background: #05070b;
    position: relative;
}

.roi-container-card {
    background: #080c14;
    border: 1px solid rgba(18, 107, 255, 0.22);
    border-radius: 24px;
    padding: 46px 42px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(18, 107, 255, 0.04);
}

.roi-grid-wrap {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr;
    gap: 45px;
    align-items: center;
}

.roi-curve-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.roi-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.roi-title {
    font-family: var(--font-head);
    font-size: clamp(1.85rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.roi-desc {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 28px;
}

.roi-curve-visual {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 22px 20px;
    position: relative;
}

.roi-svg-chart {
    width: 100%;
    height: 120px;
    display: block;
}

.roi-curve-caption {
    font-size: 12px;
    color: #64748b;
    margin-top: 12px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 2x2 Bento Metric Grid */
.roi-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.roi-stat-card {
    background: #0b101a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.roi-stat-card:hover {
    border-color: rgba(45, 140, 255, 0.35);
    transform: translateY(-2px);
}

.roi-stat-card.accent-blue {
    background: linear-gradient(145deg, #126bff 0%, #0d52c7 100%);
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(18, 107, 255, 0.3);
}

.roi-stat-card.accent-blue .roi-card-stat,
.roi-stat-card.accent-blue .roi-card-tag,
.roi-stat-card.accent-blue .roi-card-icon {
    color: #ffffff !important;
}

.roi-card-icon {
    font-size: 1.7rem;
    color: #60a5fa;
    margin-bottom: 14px;
}

.roi-card-stat {
    font-family: var(--font-head);
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 16px;
}

.roi-card-tag {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.roi-stat-card.accent-blue .roi-card-tag {
    border-color: rgba(255, 255, 255, 0.2);
}

/* =============================================================
   3. COMP-3: 4-PITFALL ENTERPRISE DIAGNOSIS GRID (OPTICAL CV)
   ============================================================= */
.editorial-diagnosis-section {
    padding: 100px 0;
    background: #07090e;
    position: relative;
    overflow: hidden;
}

.diag-header {
    margin-bottom: 50px;
}

.diag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.diag-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.diag-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 680px;
    line-height: 1.6;
}

.diag-grid-wrap {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: stretch;
}

/* Computer Vision Optical Tracking Box */
.diag-cv-card {
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.08) 0%, transparent 70%), #0c1018;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.diag-cv-viewport {
    position: relative;
    border: 1px solid rgba(34, 197, 94, 0.3);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

/* Target Crosshair Corners */
.diag-cv-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: #22c55e;
    border-style: solid;
}
.diag-cv-corner.tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.diag-cv-corner.tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.diag-cv-corner.bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.diag-cv-corner.br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.diag-cv-laser {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    box-shadow: 0 0 10px #22c55e;
    animation: cvLaserScan 3s infinite linear;
}

@keyframes cvLaserScan {
    0% { top: 10%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: 90%; opacity: 0; }
}

.diag-cv-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid #22c55e;
    color: #4ade80;
    font-family: monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.diag-cv-telemetry {
    font-family: monospace;
    font-size: 11px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px 14px;
    line-height: 1.7;
}

/* Right 2x2 Pitfall Cards */
.diag-cards-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.diag-item-card {
    background: #0a0d15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.diag-item-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    background: #0d121c;
    transform: translateY(-2px);
}

.diag-item-num {
    font-family: monospace;
    font-size: 12px;
    font-weight: 700;
    color: #f87171;
    margin-bottom: 12px;
}

.diag-item-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 10px;
}

.diag-item-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
}

/* =============================================================
   4. COMP-4: HIGH-DENSITY TECH STATS & HEATMAP CARDS [01, 02, 03]
   ============================================================= */
.editorial-stats-heatmap-section {
    padding: 100px 0;
    background: #05070b;
    position: relative;
}

.hd-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding-bottom: 50px;
    margin-bottom: 55px;
}

.hd-stat-item {
    padding: 0 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    flex-direction: column;
}

.hd-stat-item:last-child {
    border-right: none;
}

.hd-stat-num {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 10px;
}

.hd-stat-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.45;
}

/* 3 Heatmap Cards */
.heatmap-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.heatmap-card {
    background: #090c13;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 30px 26px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.heatmap-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.16);
}

.heatmap-card.glow-amber {
    box-shadow: inset 0 -40px 60px -20px rgba(245, 158, 11, 0.22);
}

.heatmap-card.glow-cyan {
    box-shadow: inset 0 -40px 60px -20px rgba(14, 165, 233, 0.22);
}

.heatmap-card.glow-orange {
    box-shadow: inset 0 -40px 60px -20px rgba(249, 115, 22, 0.22);
}

.heatmap-pill {
    font-family: monospace;
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 18px;
}

.heatmap-card-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 12px;
}

.heatmap-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* =============================================================
   5. COMP-5: EMBEDDED APP INTERFACE & HARDWARE SECURITY BENTO
   ============================================================= */
.editorial-app-vault-section {
    padding: 100px 0;
    background: #06080d;
    position: relative;
}

.app-vault-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.vault-app-card {
    background: linear-gradient(145deg, #126bff 0%, #0a48b3 100%);
    border-radius: 22px;
    padding: 38px 34px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(18, 107, 255, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vault-app-meta {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.vault-app-title {
    font-family: var(--font-head);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 14px;
}

.vault-app-mockup {
    background: #0a0e17;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    margin-top: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.vault-side-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vault-glass-card {
    background: #0a0d15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.vault-glass-card:hover {
    border-color: rgba(45, 140, 255, 0.35);
    transform: translateY(-2px);
}

/* =============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================= */
@media (max-width: 991px) {
    .epb-grid {
        grid-template-columns: 1fr;
    }
    .roi-grid-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .diag-grid-wrap {
        grid-template-columns: 1fr;
    }
    .hd-stats-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hd-stat-item {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        padding-bottom: 24px;
    }
    .heatmap-cards-grid {
        grid-template-columns: 1fr;
    }
    .app-vault-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .roi-bento-grid {
        grid-template-columns: 1fr;
    }
    .diag-cards-2x2 {
        grid-template-columns: 1fr;
    }
}


/* =============================================================
   6. PROOF-OF-CONCEPT TO PRODUCTION BRIDGE SECTION
   ============================================================= */
.poc-bridge-section {
    position: relative;
    background-color: #ffffff;
    background-image: url('consulting_poc_bridge_bg_blue.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    color: #0f172a;
    padding: 70px 0 85px;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.poc-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.poc-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.poc-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #126bff;
}

.poc-top-breadcrumbs {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
}

.poc-top-breadcrumbs span {
    color: #cbd5e1;
    margin: 0 6px;
}

.poc-main-grid {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.poc-left-content {
    max-width: 440px;
    padding-top: 40px;
    position: relative;
    z-index: 5;
}

.poc-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}

.poc-accent-blue {
    color: #126bff;
}

.poc-hero-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 35px;
}

.poc-action-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #126bff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.poc-action-link:hover {
    transform: translateX(4px);
    color: #0d52c7;
}

.poc-link-arrow {
    display: inline-block;
    color: #126bff;
    font-weight: 800;
}

/* Stage Overlay Nodes */
.poc-overlay-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.poc-card-glass {
    position: absolute;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    pointer-events: auto;
}

.poc-card-pilot {
    left: 36%;
    top: 15%;
    width: 140px;
    border-color: rgba(18, 107, 255, 0.2);
}

.poc-card-pilot .poc-glass-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.poc-card-pilot .poc-glass-desc {
    font-size: 11px;
    color: #64748b;
    margin: 0;
}

.poc-card-production {
    left: 81%;
    top: 15%;
    width: 150px;
    background: rgba(239, 246, 255, 0.85);
    border: 1px solid rgba(18, 107, 255, 0.35);
    box-shadow: 0 12px 30px rgba(18, 107, 255, 0.12);
}

.poc-card-production .poc-glass-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: #126bff;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.poc-card-production .poc-glass-desc {
    font-size: 11px;
    color: #334155;
    margin: 0;
}

/* Step Badges along the bridge */
.poc-step-node {
    position: absolute;
    text-align: center;
    width: 110px;
    pointer-events: auto;
}

.poc-step-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #126bff;
    margin-bottom: 6px;
}

.poc-step-title {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.poc-step-desc {
    font-size: 10px;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}

/* Positions matching 1024x409 geometry */
.poc-step-data {
    left: 48%;
    top: 48%;
}

.poc-step-eval {
    left: 56%;
    top: 57%;
}

.poc-step-security {
    left: 64%;
    top: 58%;
}

.poc-step-cost {
    left: 72%;
    top: 49%;
}

.poc-bottom-execution {
    position: absolute;
    right: 3%;
    bottom: 6%;
    text-align: right;
    font-family: var(--font-head);
    font-size: 10.5px;
    letter-spacing: 1.5px;
    color: #64748b;
    text-transform: uppercase;
}

.poc-bottom-execution strong {
    color: #0f172a;
    font-size: 11.5px;
}

@media (max-width: 991px) {
    .poc-main-grid {
        background-position: center bottom;
        min-height: auto;
        padding-bottom: 380px;
    }
    .poc-card-pilot { left: 10%; top: auto; bottom: 260px; }
    .poc-card-production { left: auto; right: 5%; top: auto; bottom: 260px; }
    .poc-step-data { left: 15%; top: auto; bottom: 160px; }
    .poc-step-eval { left: 35%; top: auto; bottom: 120px; }
    .poc-step-security { left: 55%; top: auto; bottom: 120px; }
    .poc-step-cost { left: 75%; top: auto; bottom: 160px; }
}

@media (max-width: 767px) {
    .poc-main-grid {
        background: none;
        padding-bottom: 0;
    }
    .poc-overlay-wrap {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 30px;
    }
    .poc-card-glass, .poc-step-node {
        position: static;
        width: 100%;
        text-align: left;
    }
    .poc-bottom-execution {
        position: static;
        text-align: left;
        margin-top: 20px;
    }
}


/* =============================================================
   7. FIND THE WORK WORTH AUTOMATING SECTION (FWWA)
   ============================================================= */
.fwwa-section {
    position: relative;
    background: #04070d;
    color: #ffffff;
    padding: 95px 0 105px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fwwa-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 350px;
    background: radial-gradient(circle, rgba(18, 107, 255, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.fwwa-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: start;
}

/* Left Column */
.fwwa-left-col {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 110px;
}

.fwwa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 107, 255, 0.12);
    border: 1px solid rgba(45, 140, 255, 0.35);
    color: #38bdf8;
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    width: fit-content;
}

.fwwa-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 8px #38bdf8;
}

.fwwa-main-title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 4.2vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.fwwa-accent-blue {
    color: #38bdf8;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
}

.fwwa-main-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Decision Card */
.fwwa-decision-card {
    background: #080c14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 26px 28px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 32px;
}

.fwwa-decision-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.fwwa-dec-tag {
    font-family: monospace;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #64748b;
    text-transform: uppercase;
}

.fwwa-dec-arrow {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 13px;
}

.fwwa-decision-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.fwwa-comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

.fwwa-comp-box {
    display: flex;
    flex-direction: column;
}

.fwwa-comp-type {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.fwwa-comp-name {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.fwwa-comp-name.blue {
    color: #38bdf8;
}

.fwwa-comp-detail {
    font-size: 11.5px;
    color: #94a3b8;
    line-height: 1.45;
    margin: 0;
}

.fwwa-comp-divider {
    color: #38bdf8;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.fwwa-bottom-breadcrumb {
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: #64748b;
    text-transform: uppercase;
}

/* Middle / Right Timeline Column */
.fwwa-timeline-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.fwwa-timeline-line {
    position: absolute;
    left: 88px;
    top: 36px;
    bottom: 120px;
    width: 2px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.2) 0%, rgba(56, 189, 248, 0.8) 70%, #126bff 100%);
    z-index: 1;
}

.fwwa-step-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.fwwa-step-row:hover {
    background: rgba(18, 107, 255, 0.04);
    border-color: rgba(56, 189, 248, 0.25);
    transform: translateX(4px);
}

.fwwa-step-num {
    font-family: var(--font-head);
    font-size: 2.3rem;
    font-weight: 800;
    color: #334155;
    line-height: 1;
    width: 48px;
    flex-shrink: 0;
    text-align: right;
    letter-spacing: -1px;
}

.fwwa-step-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #090d15;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.6);
}

.fwwa-step-content {
    flex: 1;
}

.fwwa-step-title {
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fwwa-step-desc {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
}

/* Step 04 Highlight Card */
.fwwa-step-row.highlight {
    align-items: flex-start;
    background: transparent;
    border: none;
    padding: 0;
    transform: none;
}

.fwwa-step-row.highlight .fwwa-step-num {
    color: #38bdf8;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
    padding-top: 14px;
}

.fwwa-step-row.highlight .fwwa-step-icon {
    background: rgba(18, 107, 255, 0.15);
    border-color: #126bff;
    color: #38bdf8;
    box-shadow: 0 0 16px rgba(18, 107, 255, 0.4);
    margin-top: 12px;
}

.fwwa-highlight-card {
    background: radial-gradient(circle at top left, rgba(18, 107, 255, 0.18) 0%, transparent 70%), #080c14;
    border: 1px solid rgba(18, 107, 255, 0.45);
    border-radius: 18px;
    padding: 26px 30px;
    box-shadow: 0 0 35px rgba(18, 107, 255, 0.22);
    width: 100%;
}

.fwwa-hl-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-top: 18px;
}

.fwwa-hl-item {
    font-size: 11.5px;
    color: #94a3b8;
    line-height: 1.35;
}

.fwwa-hl-item span {
    display: block;
    color: #38bdf8;
    font-weight: 700;
    font-size: 12.5px;
    margin-bottom: 4px;
}

@media (max-width: 1080px) {
    .fwwa-layout-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .fwwa-left-col {
        position: static;
    }
}

@media (max-width: 767px) {
    .fwwa-hl-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .fwwa-step-row {
        gap: 14px;
        padding: 16px 18px;
    }
    .fwwa-timeline-line {
        left: 78px;
    }
}


/* =============================================================
   HERO H1 REFINED WEIGHT (ALL AI PAGES)
   ============================================================= */
.app-hero-title,
.hero-title {
    font-weight: 500 !important;
    letter-spacing: -0.015em !important;
}


/* =============================================================
   INSPO 1: BUILT ON TRUST. DRIVEN BY RESULTS. SECTION
   ============================================================= */
.inspo-trust-results-section {
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(18, 107, 255, 0.24) 0%, #04070d 75%);
    border-top: 1px solid rgba(45, 140, 255, 0.25);
    border-bottom: 1px solid rgba(45, 140, 255, 0.2);
    padding: 110px 0 120px;
    overflow: hidden;
}

.itr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 107, 255, 0.12);
    border: 1px solid rgba(45, 140, 255, 0.35);
    color: #38bdf8;
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.itr-title {
    font-family: var(--font-head);
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.itr-subtitle,
.itr-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 680px;
    margin: 0 auto 60px auto;
    line-height: 1.65;
}

.itr-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.itr-card {
    background: rgba(10, 15, 26, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 270px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.itr-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.45);
    background: rgba(14, 22, 38, 0.85);
    box-shadow: 0 16px 40px rgba(18, 107, 255, 0.22);
}

.itr-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.itr-number {
    font-family: var(--font-head);
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
}

.itr-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 14px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.itr-card:hover .itr-arrow-btn {
    background: #126bff;
    border-color: #126bff;
    color: #ffffff;
    transform: rotate(45deg);
}

.itr-card-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.itr-card-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}


/* =============================================================
   INSPO 2: HOW IT WORKS? ALTERNATING VERTICAL TIMELINE
   ============================================================= */
.inspo-timeline-section {
    position: relative;
    background: #04070d;
    padding: 110px 0 125px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.itw-header {
    text-align: center;
    margin-bottom: 60px;
}

.itw-tag,
.itw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 107, 255, 0.12);
    border: 1px solid rgba(45, 140, 255, 0.35);
    color: #38bdf8;
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.itw-title {
    font-family: var(--font-head);
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.itw-subtitle,
.itw-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 680px;
    margin: 0 auto 70px auto;
    line-height: 1.65;
}

.itw-timeline-wrapper {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 20px 0;
}

.itw-center-line {
    position: absolute;
    left: 50%;
    top: 30px;
    bottom: 30px;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.15) 0%, #38bdf8 50%, rgba(18, 107, 255, 0.2) 100%);
    z-index: 1;
}

.itw-step-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 32px;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
}

.itw-step-row:last-child {
    margin-bottom: 0;
}

.itw-node-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #38bdf8;
    border: 3px solid #04070d;
    box-shadow: 0 0 16px #38bdf8;
    margin: 0 auto;
    position: relative;
}

.itw-icon-box {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: #080d18;
    border: 1px solid rgba(56, 189, 248, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #38bdf8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.itw-step-row:hover .itw-icon-box {
    border-color: #38bdf8;
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.35);
}

.itw-card,
.itw-content-card {
    background: #080c14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.itw-step-row:hover .itw-card,
.itw-step-row:hover .itw-content-card {
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
}

.itw-step-badge,
.itw-step-tag {
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #38bdf8;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}

.itw-card-title,
.itw-step-name {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.itw-card-desc,
.itw-step-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}


/* =============================================================
   INSPO 3: AI-OPTIMIZED DESIGN FOR INNOVATIVE FUTURES (BENTO)
   ============================================================= */
.inspo-services-bento-section {
    position: relative;
    background: #06090e;
    padding: 110px 0 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.isb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 107, 255, 0.12);
    border: 1px solid rgba(45, 140, 255, 0.35);
    color: #38bdf8;
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.isb-title {
    font-family: var(--font-head);
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.isb-subtitle,
.isb-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.65;
}

.isb-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 24px;
}

.isb-card {
    background: #090e18;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.isb-card:hover {
    border-color: rgba(56, 189, 248, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
}

.isb-card-highlight {
    background: linear-gradient(145deg, #0b1426 0%, #060a12 100%);
    border-color: rgba(18, 107, 255, 0.4);
    box-shadow: 0 0 35px rgba(18, 107, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.isb-hl-preview-box {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 14px;
    background: radial-gradient(circle at center, rgba(18, 107, 255, 0.35) 0%, #040812 70%);
    border: 1px solid rgba(45, 140, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 24px;
}

.isb-hl-ring-text {
    position: absolute;
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: #38bdf8;
    text-transform: uppercase;
    font-weight: 700;
}

.isb-hl-icon-center {
    font-size: 42px;
    color: #ffffff;
    filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.8));
    animation: floatOrb 4s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.isb-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 20px;
    margin-bottom: 22px;
}

.isb-card-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.isb-card-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.isb-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #38bdf8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.isb-card:hover .isb-card-footer {
    color: #ffffff;
}


/* =============================================================
   INSPO 4: SERVICES THAT ARE TAILORED (HORIZONTAL 4-DECK)
   ============================================================= */
.inspo-tailored-deck-section {
    position: relative;
    background: #04070d;
    padding: 110px 0 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tailored-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.tailored-header {
    text-align: center;
    margin-bottom: 60px;
}

.tailored-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 107, 255, 0.12);
    border: 1px solid rgba(45, 140, 255, 0.35);
    color: #38bdf8;
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.tailored-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.tailored-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 680px;
    margin: 16px auto 0 auto;
    line-height: 1.65;
}

.tailored-italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #ffffff 20%, #93c5fd 60%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tailored-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.tailored-header-btn:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: translateY(-2px);
}

.tailored-btn-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #126bff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.tailored-cards-grid,
.tailored-deck-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tailored-card {
    background: linear-gradient(180deg, #090e17 0%, #0c121e 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    padding: 34px 26px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tailored-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: radial-gradient(ellipse at bottom, rgba(18, 107, 255, 0.28) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.35s ease;
}

.tailored-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.tailored-card:hover::after {
    opacity: 1;
}

.tailored-num {
    font-family: monospace;
    font-size: 12px;
    color: #38bdf8;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.tailored-card-head {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.tailored-card-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tailored-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.tailored-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
}

.tailored-bottom-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.tailored-action-label {
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #64748b;
}

.tailored-plus-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #126bff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    border: none;
    box-shadow: 0 0 18px rgba(18, 107, 255, 0.55);
    transition: transform 0.25s ease;
}

.tailored-card:hover .tailored-plus-circle {
    transform: scale(1.1) rotate(90deg);
}


/* =============================================================
   DARK TESTIMONIALS (REPLACING WHITE SECTION)
   ============================================================= */
.ai-testimonials-dark {
    position: relative;
    background: #06090e;
    padding: 110px 0 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.testi-card-dark {
    background: #090e18;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.3s ease;
}

.testi-card-dark:hover {
    border-color: rgba(56, 189, 248, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.testi-quote-dark {
    font-family: var(--font-body);
    font-size: 1.02rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: normal;
}

.testi-author-box-dark {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
}

.testi-avatar-dark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(56, 189, 248, 0.5);
}

.testi-name-dark {
    font-family: var(--font-head);
    font-weight: 700;
    color: #ffffff;
    font-size: 15px;
}

.testi-role-dark {
    font-size: 12.5px;
    color: #64748b;
}


/* =============================================================
   RESPONSIVE QUERIES FOR NEW COMPONENTS
   ============================================================= */
@media (max-width: 1199px) {
    .itr-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .isb-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tailored-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .itw-center-line {
        left: 36px;
    }
    .itw-step-row {
        grid-template-columns: 72px 1fr;
        gap: 20px;
    }
    .itw-step-row.reverse {
        grid-template-columns: 72px 1fr;
    }
    .itw-step-row .itw-col-text,
    .itw-step-row.reverse .itw-col-text {
        grid-column: 2;
        grid-row: 1;
        text-align: left !important;
    }
    .itw-step-row .itw-col-icon,
    .itw-step-row.reverse .itw-col-icon {
        grid-column: 1;
        grid-row: 1;
    }
    .itw-node-dot {
        display: none;
    }
    .tailored-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .itr-cards-grid {
        grid-template-columns: 1fr;
    }
    .isb-grid {
        grid-template-columns: 1fr;
    }
    .tailored-cards-grid {
        grid-template-columns: 1fr;
    }
}
