/* ══════════════════════════════════════════
   OUR APPROACH PAGE STYLES (sfv-theme-white)
══════════════════════════════════════════ */

#main {
    opacity: 1;
    animation: pageFadeIn 0.8s ease-out forwards;
    padding: 0;
    margin: 0;
}



@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ap-section {
    padding: 100px 6vw;
    position: relative;
}

.ap-bg-tint {
    background: #f1f5f9;
}

.ap-bg-dark {
    background: #070b14;
}

.ap-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ap-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.ap-title span {
    color: var(--blue-mid);
}

.ap-subtitle {
    font-size: 1.15rem;
    color: var(--text-mid);
    max-width: 700px;
    margin-bottom: 50px;
}

.ap-title.center,
.ap-subtitle.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── Scroll Progress Line ── */
.ap-scroll-progress {
    position: fixed;
    top: 72px;
    /* below navbar */
    left: 0;
    width: 3px;
    height: calc(100vh - 72px);
    background: rgba(37, 99, 235, 0.1);
    z-index: 100;
}

.ap-scroll-line {
    width: 100%;
    background: var(--blue-mid);
    height: 0%;
    border-radius: 0 0 2px 0;
}

/* ── HERO ── */
.ap-hero {
    min-height: 90vh;
    padding: 140px 6vw 80px;
    background: linear-gradient(135deg, var(--white) 0%, #eff6ff 100%);
    display: flex;
    align-items: center;
}

.ap-split-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.aph-left {
    width: 48%;
    text-align: center;
}

.aph-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
}

.aph-btns .btn-primary-s {
    border-radius: 32px;
}

.aph-btns .btn-ghost-s {
    border-radius: 32px;
    padding: 16px 36px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.aph-btns .btn-ghost-s:hover {
    border-color: var(--blue-mid);
    background: var(--blue-pale);
    color: var(--blue-mid);
}

.aph-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-green);
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.aph-right {
    width: 45%;
    position: relative;
}

.aph-left h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.aph-left h1 span {
    color: var(--blue-mid);
}

.aph-left p {
    font-size: 1.15rem;
    color: var(--text-mid);
    margin-bottom: 36px;
}



.ap-hero-ill {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.15));
}

.b-block {
    opacity: 0;
    transform: translateY(20px);
    animation: blockRise 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bb1 {
    animation-delay: 0.2s;
}

.bb2 {
    animation-delay: 0.4s;
}

.bb3 {
    animation-delay: 0.6s;
}

.bb4 {
    animation-delay: 0.8s;
}

@keyframes blockRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawPath 2s ease forwards 1s;
}

.b-dot {
    opacity: 0;
    animation: fadeInDot 0.5s ease forwards 2.5s;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInDot {
    to {
        opacity: 1;
    }
}

/* ── PHILOSOPHY ── */
.ap-phil-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.phil-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.phil-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-md);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0);
    transition: box-shadow 0.4s;
    pointer-events: none;
}

.phil-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--blue-light);
}

.phil-card:hover::after {
    box-shadow: inset 0 0 40px rgba(37, 99, 235, 0.05);
}

.pc-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: transform 0.4s;
    display: inline-block;
}

.phil-card:hover .pc-icon {
    transform: scale(1.1) rotate(-5deg);
}

.phil-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* ── PROBLEM VS APPROACH ── */
.ap-comp-wrap {
    display: flex;
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    margin-top: 40px;
}

.comp-col {
    width: 50%;
    padding: 60px;
}

.comp-bad {
    background: #fafafa;
}

.comp-good {
    background: var(--white);
}

.cc-header {
    font-family: 'Outfit';
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comp-bad .cc-header {
    color: #94a3b8;
}

.comp-good .cc-header {
    color: var(--blue-mid);
}

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

.cc-list li {
    margin-bottom: 24px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    transform: translateX(-10px);
}

.comp-good .cc-list li {
    transform: translateX(10px);
}

.cc-list li.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease-out;
}

.bad-x {
    color: #ef4444;
    font-weight: 900;
}

.good-chk {
    color: var(--slate-green);
    font-weight: 900;
}

.comp-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--border-dark), transparent);
}

.cd-badge {
    background: var(--text-dark);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 20px;
    z-index: 2;
}

/* ── INVESTMENT PROCESS (TIMELINE) ── */
.ap-timeline-wrap {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-bottom: 40px;
}

.ap-tl-svg {
    position: absolute;
    top: 0;
    left: 40px;
    width: 100px;
    height: 100%;
    z-index: 1;
}

.ap-tl-progress {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.tl-nodes {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.tl-node {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    opacity: 0.3;
    transition: all 0.5s;
    transform: translateY(20px);
}

.tl-node.active {
    opacity: 1;
    transform: translateY(0);
}

.tl-dot {
    width: 50px;
    height: 50px;
    background: #1e293b;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s;
    margin-left: 15px;
    /* Alignment with line */
    flex-shrink: 0;
}

.tl-node.active .tl-dot {
    background: var(--slate-green);
    border-color: var(--slate-green);
    color: #fff;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.tl-content {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.135);
    padding: 30px;
    border-radius: var(--r-md);
    flex-grow: 1;
    backdrop-filter: blur(10px);
}

.tl-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.tl-content p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}

/* ── RESEARCH FRAMEWORK ── */
.ap-split {
    display: flex;
    align-items: center;
    gap: 120px;
}

.aps-visual {
    width: 35%;
}

.aps-content {
    width: 65%;
}

.dash-mockup {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.dm-header {
    background: #f8fafc;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dm-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    margin-right: 4px;
}

.dm-dots span:nth-child(1) {
    background: #ef4444;
}

.dm-dots span:nth-child(2) {
    background: #f59e0b;
}

.dm-dots span:nth-child(3) {
    background: #10b981;
}

.dm-title {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #64748b;
    font-weight: bold;
}

.dm-body {
    padding: 30px;
}

.dm-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.dm-box {
    flex: 1;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

.dm-chart {
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}

.dmc-bar {
    flex: 1;
    background: #e2e8f0;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
}

.dmc-bar.dm-highlight {
    background: var(--blue-mid);
    box-shadow: 0 -5px 15px rgba(37, 99, 235, 0.3);
}

.res-list {
    margin-top: 30px;
    ;
}

.rl-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
}

.rl-item span {
    font-size: 1.4rem;
}

/* ── RISK MANAGEMENT (Layered Cards) ── */
.risk-layers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* Overlap effect */
    margin-top: 50px;
    perspective: 1000px;
}

.rlayer {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 22px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: transform 0.4s;
}

.rlayer.r1:hover,
.rlayer.r2:hover {
    transform: translateZ(30px) translateY(-10px);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    transition: all 0.125s ease-in-out;
}

.rlayer.r3:hover,
.rlayer.r4:hover {
    transform: translateZ(30px) translateY(10px);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    transition: all 0.125s ease-in-out;
}

.rl-icon {
    font-size: 1.8rem;
    width: 66px;
    height: 66px;
    min-width: 66px;
    background: #dfeaf5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rlayer>div:last-child {
    text-align: left;
}

.rlayer h5 {
    font-size: 1.2rem;
    /* margin-bottom: 8px; */
    text-align: left;
}

.rlayer p {
    font-size: 0.95rem;
    margin: 0;
    text-align: left;
    color: gray;
}

/* ── LIFECYCLE ── */
.lc-strip {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.lc-track {
    position: absolute;
    top: 45px;
    left: 60px;
    right: 60px;
    border-top: 3px dotted var(--blue-mid);
    z-index: 1;
    animation: pulseDots 2s infinite alternate ease-in-out;
}

@keyframes pulseDots {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.8;
    }
}

.lc-travel-dot {
    position: absolute;
    top: 45px;
    width: 8px;
    height: 8px;
    background: var(--blue-mid);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px 2px rgba(37, 99, 235, 0.8), 0 0 20px 4px rgba(37, 99, 235, 0.4);
    z-index: 1;
    opacity: 0;
}

.lc-travel-left {
    animation: travelToCenterLeft 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.lc-travel-right {
    animation: travelToCenterRight 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes travelToCenterLeft {
    0% {
        left: 60px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    40% {
        left: 50%;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }

    100% {
        left: 50%;
        opacity: 0;
    }
}

@keyframes travelToCenterRight {
    0% {
        left: calc(100% - 60px);
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    40% {
        left: 50%;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }

    100% {
        left: 50%;
        opacity: 0;
    }
}

.lc-highlight-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    /* animated via JS */
    height: 4px;
    background: #0f172a00;
    transform: translateY(-50%);
    border-radius: 2px;
    transition: width 0.1s;
}

.lc-nodes {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.lc-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
}

.lc-node.active {
    opacity: 1;
    transform: scale(1.1);
}

.lcn-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: border-color 0.3s;
}

.lc-node.active .lcn-icon {
    border-color: var(--blue-mid);
    background: var(--blue-pale);
}

.lc-node span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.lc-special.active .lcn-icon {
    border-color: #f59e0b;
    background: #fef3c7;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

/* ── PERSONALIZATION ── */
.person-wrap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
}

.pw-center {
    position: relative;
    z-index: 2;
}

.mock-ui {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    width: 220px;
    text-align: left;
    z-index: 1;
    transition: transform 0.4s;
}

.mock-ui:hover {
    transform: translateY(-5px) scale(1.05);
}

.mu-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 12px;
}

.mu-track {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    position: relative;
}

.mu-thumb {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--blue-mid);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.m-inc {
    top: 0;
    left: -200px;
}

.m-risk {
    top: 45%;
    right: -250px;
}

.m-horz {
    bottom: -20px;
    left: 10%;
}

/* ── TECH + HUMAN ── */
.ap-techuman {
    background: #fff;
}

.ap-techuman .ap-container {
    background: #fff;
    border-radius: 24px;
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.06);
}

.ap-person {
    background: #fff;
}

.th-bridge {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.th-side {
    width: 40%;
    background: var(--white);
    padding: 50px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    z-index: 2;
}

.th-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.th-side h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.th-side ul {
    list-style: none;
}

.th-side li {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1.05rem;
}

.th-side li::before {
    content: '→';
    color: var(--blue-mid);
    margin-right: 10px;
}

.th-center-gradient {
    position: absolute;
    top: 50%;
    left: 40%;
    width: 20%;
    height: 4px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #cbd5e1, var(--blue-mid));
    z-index: 1;
}

.synth-flow {
    width: 20px;
    height: 12px;
    background: var(--slate-green);
    border-radius: 6px;
    position: absolute;
    top: -4px;
    left: 0;
    box-shadow: 0 0 15px var(--slate-green);
    animation: bridgeFlow 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes bridgeFlow {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* ── FINAL CTA (Innovative) ── */
.ap-final-innovative {
    position: relative;
    padding: 120px 5%;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-fi-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ap-fi-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2);
    transform-origin: top;
    opacity: 0.4;
    animation: gridMove 20s linear infinite;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%);
    mask-image: linear-gradient(to bottom, transparent, black 5%);
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) scale(2);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(40px) scale(2);
    }
}

.ap-fi-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
}

.ap-fi-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 32px;
    padding: 80px 60px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.ap-fi-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.ap-fi-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.ap-fi-title span {
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ap-fi-desc {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.ap-fi-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-ap-fi-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0f172a;
    color: #fff;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    z-index: 1;
}

.btn-ap-fi-primary::before {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    width: 0;
    height: 0;
    background: #2563eb;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.btn-ap-fi-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.btn-ap-fi-primary:hover::before {
    width: 600px;
    height: 600px;
}

.btn-ap-fi-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    color: #0f172a;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.btn-ap-fi-primary:hover .btn-ap-fi-icon {
    transform: translateX(4px);
}

.ap-fi-micro {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 900px) {

    .ap-split-hero {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .aph-left {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .aph-left p {
        margin-inline: auto;
    }

    .aph-btns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .aph-stats {
        justify-content: center;
    }

    .aph-right {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .ap-comp-wrap,
    .ap-split,
    .th-bridge {
        flex-direction: column;
    }

    .aph-left,
    .aph-right,
    .comp-col,
    .th-side {
        width: 100%;
    }

    .ap-split {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .aps-visual,
    .aps-content {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .res-list {
        display: inline-block;
        text-align: left;
    }

    .ap-phil-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .risk-layers {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .th-center-gradient {
        width: 4px;
        height: 60px;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, #cbd5e1, var(--blue-mid));
    }

    .synth-flow {
        top: 0;
        left: -4px;
        width: 12px;
        height: 20px;
        animation: bridgeFlowVert 3s infinite;
    }

    @keyframes bridgeFlowVert {
        0% {
            top: 0;
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            top: 100%;
            opacity: 0;
        }
    }

    .lc-strip {
        margin-top: 40px;
        padding: 0;
    }

    .lc-track,
    .lc-highlight-bar,
    .lc-travel-dot {
        display: none;
    }

    .lc-nodes {
        flex-direction: column;
        gap: 30px;
    }

    .lc-node {
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .lcn-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .lc-node span {
        font-size: 1rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE OVERHAUL — Approach Page
   Cozy, Contained, Native Feel. Desktop unaffected.
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Global section padding ── */
    .ap-section {
        padding: 60px 5vw;
    }

    /* ── Hide scroll progress line on mobile ── */
    .ap-scroll-progress {
        display: none;
    }

    /* ── Hero ── */
    .ap-hero {
        min-height: auto;
        padding: 120px 5vw 60px;
        text-align: center;
    }

    .ap-split-hero {
        flex-direction: column;
        gap: 40px;
    }

    .aph-left {
        width: 100%;
    }

    .aph-left h1 {
        font-size: clamp(2.2rem, 9vw, 3rem);
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }

    .aph-left p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .aph-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .aph-btns a {
        width: 100%;
        justify-content: center;
        border-radius: 36px !important;
    }

    .aph-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 24px;
    }

    .aph-right {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* ── Core Philosophy (Grid to Tiles) ── */
    .ap-phil-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .phil-card {
        display: grid !important;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon title"
            "icon desc";
        align-items: start !important;
        text-align: left !important;
        gap: 2px 20px;
        padding: 24px 20px !important;
    }

    .pc-icon {
        grid-area: icon;
        font-size: 1.8rem;
        margin: 0 !important;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .phil-card h4 {
        grid-area: title;
        font-size: 1.15rem;
        margin-bottom: 2px !important;
        color: var(--blue-dark);
    }

    .phil-card p {
        grid-area: desc;
        font-size: 0.92rem;
        margin: 0;
        color: var(--text-mid);
        line-height: 1.4;
    }

    /* ── Problem vs Approach ── */
    .ap-comp-wrap {
        flex-direction: column;
        border-radius: 20px;
        margin-top: 30px;
    }

    .comp-col {
        width: 100%;
        padding: 40px 24px;
    }

    .comp-divider {
        display: none;
    }

    .cc-header {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }

    .cc-list li {
        font-size: 0.95rem;
        margin-bottom: 18px;
        gap: 12px;
    }

    /* ── Investment Process ── */
    .ap-timeline-wrap {
        margin-top: 40px;
        padding-left: 0;
    }

    .ap-tl-svg {
        left: 20px;
    }

    .tl-nodes {
        gap: 32px;
    }

    .tl-node {
        gap: 16px;
    }

    .tl-dot {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        margin-left: 0;
    }

    .tl-content {
        padding: 20px;
    }

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

    .tl-content p {
        font-size: 0.92rem;
    }

    /* ── Research Framework ── */
    .ap-split {
        flex-direction: column;
        gap: 40px;
    }

    .aps-visual,
    .aps-content {
        width: 100%;
    }

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

    .res-list {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 24px;
    }

    .rl-item {
        font-size: 0.98rem;
        padding: 14px 0;
        justify-content: center;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* ── Risk Management (Layers to Tiles) ── */
    .risk-layers {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rlayer {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        padding: 24px 20px !important;
        gap: 20px;
    }

    .rl-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 1.5rem;
        margin: 0 !important;
    }

    .rlayer h5 {
        font-size: 1.15rem;
        margin-bottom: 4px;
    }

    .rlayer p {
        font-size: 0.92rem;
    }

    /* ── Lifecycle Support (Horizontal to Vertical Tiles) ── */
    .lc-strip {
        padding: 0;
    }

    .lc-track,
    .lc-highlight-bar,
    .lc-travel-dot {
        display: none;
    }

    .lc-nodes {
        flex-direction: column;
        gap: 12px;
    }

    .lc-node {
        width: 100%;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 20px;
        opacity: 1;
        padding: 16px 20px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
    }

    .lc-node.active {
        transform: none;
        border-color: var(--blue-mid);
        background: var(--blue-pale);
    }

    .lc-node.lc-special.active {
        border-color: #f59e0b;
        background: #fef3c7;
    }

    .lcn-icon {
        margin-bottom: 0;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .lc-node span {
        font-size: 1rem;
    }

    /* ── Personalization ── */
    .person-wrap {
        padding: 40px 0;
    }

    .mock-ui {
        display: none;
    }

    /* ── Tech + Human Bridge ── */
    .th-bridge {
        flex-direction: column;
        gap: 20px;
    }

    .th-center-gradient {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        height: 60px;
        width: 2px;
        margin: 10px auto;
        background: linear-gradient(180deg, var(--blue-mid), var(--slate-green));
    }

    .th-side {
        padding: 40px 24px;
        border-radius: 20px;
        text-align: center;
    }

    .th-side ul {
        text-align: left;
        display: inline-block;
        margin: 0 auto;
    }

    /* ── Final CTA ── */
    .ap-fi-card {
        padding: 60px 24px;
    }

    .ap-fi-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .btn-ap-fi-primary {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        border-radius: 36px !important;
    }

    .btn-ap-fi-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .ap-title {
        font-size: 1.8rem;
    }

    .tl-dot {
        width: 36px;
        height: 36px;
    }

    .ap-tl-svg {
        left: 17px;
    }
}

/* ══════════════════════════════════════════
   LOCALIZED ICON SYSTEM (sfv-icon-box)
══════════════════════════════════════════ */
.sfv-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 12px;
    color: var(--blue-mid, #2563eb);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border, #e5e7eb);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.sfv-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sfv-icon-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-light, #dbeafe);
}

.sfv-icon-box:hover::before {
    opacity: 1;
}

.sfv-icon-box i,
.sfv-icon-box svg {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
    position: relative;
    z-index: 1;
}

.sfv-icon-box--sm {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.sfv-icon-box--sm i,
.sfv-icon-box--sm svg {
    width: 20px;
    height: 20px;
}

.sfv-icon-box--lg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
}

.sfv-icon-box--lg i,
.sfv-icon-box--lg svg {
    width: 28px;
    height: 28px;
}

.icon-inline {
    display: inline-flex;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;

}

.sfv-icon-box--blue {
    color: var(--blue-mid, #2563eb);
}

.sfv-icon-box--green {
    color: var(--slate-green, #22c55e);
}

.sfv-icon-box--amber {
    color: #f59e0b;
}

.sfv-icon-box--indigo {
    color: #4f46e5;
}

.sfv-icon-box--red {
    color: #ef4444;
}


/* ══════════════════════════════════════════
   APPROACH PAGE — PREMIUM VISUAL ENHANCEMENTS
   Layer 2: Depth, glassmorphism, gradients & micro-animations
   Applied on top of existing layout rules
══════════════════════════════════════════ */

/* ── HERO SECTION — Layered mesh gradient ── */
.ap-hero {
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(34, 197, 94, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f0f7ff 40%, #e8f4fd 100%);
}

.ap-hero-ill {
    filter: drop-shadow(0 24px 48px rgba(37, 99, 235, 0.18)) drop-shadow(0 8px 16px rgba(15, 23, 42, 0.06));
}

/* Subtle animated glow behind hero SVG */
.aph-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Hero stats bar — glass effect */
.aph-stats {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 16px;
    padding: 20px 32px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

/* Hero buttons — enhanced depth */
.aph-btns .btn-primary-s {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25), 0 2px 6px rgba(37, 99, 235, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aph-btns .btn-primary-s:hover {
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35), 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-3px);
}

/* ── PHILOSOPHY SECTION — Glassmorphism cards ── */
.ap-phil {
    background:
        radial-gradient(ellipse 50% 30% at 0% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 100% 50%, rgba(34, 197, 94, 0.03) 0%, transparent 60%),
        #f1f5f9;
}

.phil-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.phil-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow:
        0 16px 48px rgba(37, 99, 235, 0.1),
        0 4px 16px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Accent top border on philosophy cards */
.phil-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--blue-mid), var(--slate-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.phil-card:hover::before {
    opacity: 1;
}

/* ── COMPARE SECTION — Differentiated columns ── */
.ap-compare {
    background:
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
        #ffffff;
}

.ap-comp-wrap {
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.08),
        0 4px 16px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.comp-bad {
    background: linear-gradient(180deg, #fafafa 0%, #fef2f2 100%);
}

.comp-bad .cc-header {
    color: #dc2626;
    opacity: 0.7;
}

.comp-good {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.comp-good .cc-header {
    color: var(--slate-green);
}

.cd-badge {
    background: linear-gradient(135deg, #1e293b, #334155);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.3);
}

/* ── TIMELINE SECTION — Glowing dark theme ── */
.ap-process {
    background:
        radial-gradient(ellipse 50% 50% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(34, 197, 94, 0.06) 0%, transparent 60%),
        #070b14;
}

.tl-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.tl-node.active .tl-content {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(34, 197, 94, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tl-dot {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.tl-node.active .tl-dot {
    box-shadow:
        0 0 24px rgba(34, 197, 94, 0.5),
        0 0 48px rgba(34, 197, 94, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ── RESEARCH SECTION — Enhanced depth ── */
.ap-research {
    background:
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.dash-mockup {
    box-shadow:
        0 24px 64px rgba(15, 23, 42, 0.1),
        0 8px 24px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.dash-mockup:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow:
        0 32px 80px rgba(37, 99, 235, 0.12),
        0 12px 32px rgba(15, 23, 42, 0.08),
        0 4px 12px rgba(15, 23, 42, 0.04);
}

/* Research list items — hover enhancement */
.rl-item {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 16px 12px;
    margin: 0 -12px;
}

.rl-item:hover {
    background: rgba(37, 99, 235, 0.03);
    transform: translateX(4px);
}

/* ── RISK MANAGEMENT — Accent-bordered glass cards ── */
.ap-risk {
    background:
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 60%),
        #f1f5f9;
}

.rlayer {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Colored left accent borders per card */
.rlayer.r1 {
    border-left: 4px solid var(--blue-mid);
}

.rlayer.r2 {
    border-left: 4px solid #f59e0b;
}

.rlayer.r3 {
    border-left: 4px solid #6366f1;
}

.rlayer.r4 {
    border-left: 4px solid var(--slate-green);
}

.rlayer:hover {
    box-shadow:
        0 16px 48px rgba(15, 23, 42, 0.1),
        0 4px 16px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(37, 99, 235, 0.15);
}

/* ── LIFECYCLE SECTION — Subtle background ── */
.ap-lifecycle {
    background:
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.lcn-icon {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.lc-node.active .lcn-icon {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
}

.lc-special.active .lcn-icon {
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.3);
}

/* ── PERSONALIZATION SECTION — Rich gradient bg ── */
.ap-person {
    background:
        radial-gradient(ellipse 50% 50% at 30% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 70% 50%, rgba(34, 197, 94, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.mock-ui {
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.08),
        0 4px 12px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mock-ui:hover {
    box-shadow:
        0 16px 48px rgba(37, 99, 235, 0.12),
        0 6px 16px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.mu-thumb {
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* ── TECH + HUMAN — Glass containers ── */
.ap-techuman {
    background:
        radial-gradient(ellipse 50% 50% at 50% 0%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ap-techuman .ap-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
        0 40px 80px rgba(15, 23, 42, 0.06),
        0 8px 24px rgba(15, 23, 42, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.th-side {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.th-left {
    border-top: 3px solid var(--blue-mid);
}

.th-right {
    border-top: 3px solid var(--slate-green);
}

.th-side:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 48px rgba(15, 23, 42, 0.1),
        0 4px 16px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Synth flow dot — enhanced glow */
.synth-flow {
    box-shadow:
        0 0 15px var(--slate-green),
        0 0 30px rgba(34, 197, 94, 0.3);
}

/* ── FINAL CTA — Elevated glass card ── */
.ap-final-innovative {
    background:
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.ap-fi-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
        0 40px 80px rgba(15, 23, 42, 0.08),
        0 16px 40px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-ap-fi-primary {
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.2),
        0 4px 12px rgba(15, 23, 42, 0.1);
}

.btn-ap-fi-primary:hover {
    box-shadow:
        0 20px 48px rgba(15, 23, 42, 0.25),
        0 8px 20px rgba(15, 23, 42, 0.12);
}

/* ── SECTION TRANSITIONS — Smooth separators ── */
.ap-bg-tint+.ap-section:not(.ap-bg-tint):not(.ap-bg-dark) {
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

/* ── GLOBAL SECTION POLISH ── */
.ap-title {
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.section-label {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ── RESPONSIVE: PREMIUM ENHANCEMENTS ── */
@media (max-width: 900px) {
    .aph-right::before {
        width: 100%;
        height: 100%;
    }

    .aph-stats {
        flex-direction: column;
        gap: 12px;
        padding: 16px 24px;
    }

    .rlayer.r1,
    .rlayer.r2,
    .rlayer.r3,
    .rlayer.r4 {
        border-left-width: 3px;
    }

    .th-left,
    .th-right {
        border-top-width: 3px;
    }
}

@media (max-width: 768px) {
    .phil-card::before {
        left: 16px;
        right: 16px;
    }

    .aph-stats {
        border-radius: 12px;
    }

    .rlayer.r1:hover,
    .rlayer.r2:hover,
    .rlayer.r3:hover,
    .rlayer.r4:hover {
        transform: translateY(-4px);
    }

    .th-side:hover {
        transform: translateY(-4px);
    }

    .mock-ui {
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    }
}

@media (max-width: 480px) {
    .aph-right::before {
        display: none;
    }

    .phil-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #ffffff;
    }

    .rlayer {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #ffffff;
    }
}