/* ================================================
   CASE STUDY — ULTRA PREMIUM DESIGN v4.0
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- Root Variables ---- */
:root {
    --cs-primary: #2563eb;
    --cs-primary-dark: #1d4ed8;
    --cs-primary-light: #3b82f6;
    --cs-accent: #f97316;
    --cs-accent-2: #f59e0b;
    --cs-success: #10b981;
    --cs-purple: #8b5cf6;
    --cs-bg: #f0f4ff;
    --cs-surface: #ffffff;
    --cs-border: rgba(37, 99, 235, 0.1);
    --cs-text-dark: #0f172a;
    --cs-text-body: #334155;
    --cs-text-muted: #64748b;
    --cs-radius: 24px;
    --cs-radius-sm: 14px;
    --cs-shadow-sm: 0 2px 12px rgba(15, 23, 42, 0.06);
    --cs-shadow-md: 0 8px 32px rgba(37, 99, 235, 0.12);
    --cs-shadow-lg: 0 24px 64px rgba(37, 99, 235, 0.18);
    --cs-shadow-xl: 0 40px 80px rgba(15, 23, 42, 0.2);
}

/* ================================================
   SCROLL PROGRESS BAR
   ================================================ */
.cs-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--cs-primary), var(--cs-accent), var(--cs-purple));
    z-index: 9999;
    transition: width 0.08s linear;
    border-radius: 0 3px 3px 0;
}

/* ================================================
   BASE
   ================================================ */
.cs-wrapper {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--cs-text-body);
    background: var(--cs-bg);
    line-height: 1.75;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ================================================
   HERO
   ================================================ */
.cs-hero {
    position: relative;
    overflow: hidden;
    padding: 160px 20px 100px;
    text-align: center;
    background: #050d1f;
    isolation: isolate;
}

/* Mesh gradient background */
.cs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 60%, rgba(37, 99, 235, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 60% 80%, rgba(249, 115, 22, 0.12) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Grid overlay */
.cs-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

/* Bottom wave */
.cs-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}

.cs-hero-wave svg {
    width: 100%;
    height: 80px;
}

.cs-hero-wave svg path {
    fill: #ffffff;
}

.cs-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Floating orbs */
.cs-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
    animation: orbFloat 8s ease-in-out infinite;
}

.cs-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.25);
    top: -60px;
    left: -80px;
    animation-delay: 0s;
}

.cs-orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.2);
    top: 40px;
    right: -40px;
    animation-delay: 3s;
}

.cs-orb-3 {
    width: 150px;
    height: 150px;
    background: rgba(249, 115, 22, 0.15);
    bottom: 40px;
    left: 30%;
    animation-delay: 6s;
}

@keyframes orbFloat {

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

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.cs-hero-tag,
.cs-hero .subserv-hero-badge,
.cs-hero .cr-cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #334155;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cs-hero-tag:hover,
.cs-hero .subserv-hero-badge:hover,
.cs-hero .cr-cs-badge:hover {
    border-color: var(--subserv-primary, #0284c7);
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.22);
}

.cs-hero-tag .dot,
.cs-hero .subserv-badge-dot,
.cs-hero .cr-cs-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0284c7;
    box-shadow: 0 0 8px #0284c7;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.cs-hero-tag .dot::after,
.cs-hero .subserv-badge-dot::after,
.cs-hero .cr-cs-badge-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background-color: rgba(2, 132, 199, 0.35);
    animation: csBadgePulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.cs-hero .subserv-badge-text,
.cs-hero .cr-cs-badge-text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #334155;
    text-transform: uppercase;
    line-height: 1;
}

@keyframes csBadgePulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.cs-hero h1 {
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 28px;
    letter-spacing: -0.025em;
}

.cs-hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.cs-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
}

/* ================================================
   HERO IMAGE BANNER
   ================================================ */
.cs-hero-image {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    margin-top: -30px;
}

.cs-hero-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--cs-radius);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
    display: block;
}

/* ================================================
   STATS BAR
   ================================================ */
.cs-stats-bar {
    max-width: 1020px;
    margin: 0 auto;
    padding: 100px 24px 0px 24px;
    position: relative;
    z-index: 10;
}

.cs-stats-bar-inner {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 24px;
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.03),
        0 14px 30px -4px rgba(15, 23, 42, 0.07),
        0 24px 50px -12px rgba(37, 99, 235, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    overflow: hidden;
    margin-top: -46px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

/* Subtle gradient accent bar at the top edge */
.cs-stats-bar-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #0284c7 35%, #fe4a23 70%, #f59e0b 100%);
    border-radius: 24px 24px 0 0;
    z-index: 2;
}

.cs-stat-item {
    padding: 30px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(226, 232, 240, 0.7);
    position: relative;
    background: transparent;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.cs-stat-item:last-child {
    border-right: none;
}

.cs-stat-item:hover {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 0.6) 100%);
}

/* Micro accent underline per card on hover */
.cs-stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--cs-primary), var(--cs-accent));
    border-radius: 3px 3px 0 0;
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.cs-stat-item:hover::before {
    width: 50%;
}

/* Specific theme hover underlines per column */
.cs-stat-item:nth-child(4n + 1)::before {
    background: #6366f1;
}

.cs-stat-item:nth-child(4n + 2)::before {
    background: #fe4a23;
}

.cs-stat-item:nth-child(4n + 3)::before {
    background: #0284c7;
}

.cs-stat-item:nth-child(4n + 4)::before {
    background: #10b981;
}

/* Icon Box */
.cs-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.cs-stat-item:hover .cs-stat-icon {
    transform: translateY(-3px) scale(1.08);
}

.cs-stat-icon-indigo {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.18);
}

.cs-stat-item:hover .cs-stat-icon-indigo {
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.22);
}

.cs-stat-icon-orange {
    background: rgba(254, 74, 35, 0.08);
    color: #fe4a23;
    border: 1px solid rgba(254, 74, 35, 0.18);
}

.cs-stat-item:hover .cs-stat-icon-orange {
    box-shadow: 0 6px 18px rgba(254, 74, 35, 0.24);
}

.cs-stat-icon-blue {
    background: rgba(2, 132, 199, 0.08);
    color: #0284c7;
    border: 1px solid rgba(2, 132, 199, 0.18);
}

.cs-stat-item:hover .cs-stat-icon-blue {
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.22);
}

.cs-stat-icon-green {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.18);
}

.cs-stat-item:hover .cs-stat-icon-green {
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.22);
}

.cs-stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cs-stat-value {
    font-size: 2.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.025em;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: color 0.3s ease;
}

.cs-stat-item:hover .cs-stat-value {
    color: var(--cs-primary-dark);
}

.cs-stat-item:nth-child(4n + 1):hover .cs-stat-value {
    color: #4f46e5;
}

.cs-stat-item:nth-child(4n + 2):hover .cs-stat-value {
    color: #fe4a23;
}

.cs-stat-item:nth-child(4n + 3):hover .cs-stat-value {
    color: #0284c7;
}

.cs-stat-item:nth-child(4n + 4):hover .cs-stat-value {
    color: #059669;
}

.cs-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 6px;
    display: block;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.cs-stat-item:hover .cs-stat-label {
    color: #1e293b;
}

/* ================================================
   MAIN CONTAINER
   ================================================ */
.cs-container {
    max-width: 1150px;
    margin: 0 auto;
    /* padding: 64px 24px 80px; */
}

/* ================================================
   SECTION CARDS
   ================================================ */
.cs-section {
    /* background: var(--cs-surface);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--cs-radius);
    padding: 52px 56px; */
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    /* transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: var(--cs-shadow-sm); */
}

/* Shimmer gradient on hover */
/* .cs-section::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--cs-radius) + 2px);
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-accent), var(--cs-purple));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
} */

.cs-section::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--cs-surface);
    border-radius: calc(var(--cs-radius) - 1px);
    z-index: -1;
}

/* 
.cs-section:hover {
    transform: translateY(-8px);
    box-shadow: var(--cs-shadow-lg);
} */

.cs-section:hover::before {
    opacity: 1;
}

/* ================================================
   SECTION LABELS — hidden on live
   ================================================ */
.cs-section-label {
    display: none;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
.cs-section h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--cs-text-dark);
    margin: 0 0 20px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.cs-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cs-primary-dark);
    margin: 28px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-section h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cs-primary), var(--cs-accent));
    flex-shrink: 0;
}

.cs-section p {
    font-size: 1.0625rem;
    color: var(--cs-text-dark);
    margin-bottom: 18px;
    line-height: 1.85;
    text-align: justify;
}

.mb-80px {
    padding: 50px 0px 30px 0px;
}

.cs-cta-container p {
    text-align: center;
}

/* ================================================
   SECTION 01 — INTRODUCTION THEMED STYLES
   ================================================ */
.cs-section-num-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 16px;
}

.cs-section-num {
    font-size: 0.95rem;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: 0.5px;
}

.cs-section-tag-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cs-tech-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 24px;
    width: fit-content;
}

.cs-divider-line {
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
    border-radius: 3px;
}

.cs-divider-dot {
    width: 8px;
    height: 8px;
    background: #0284c7;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.6);
}

.cs-lead-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.75;
    margin-bottom: 28px;
}

.cs-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 26px;
}

.cs-intro-card {
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 24px 22px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-intro-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 14px 28px -6px rgba(15, 23, 42, 0.06), 0 4px 10px rgba(37, 99, 235, 0.04);
}

.cs-intro-card-primary:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.cs-intro-card-accent:hover {
    border-color: rgba(254, 74, 35, 0.3);
}

.cs-intro-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cs-intro-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cs-intro-card:hover .cs-intro-icon {
    transform: scale(1.08);
}

.cs-intro-card-primary .cs-intro-icon {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.cs-intro-card-accent .cs-intro-icon {
    background: rgba(254, 74, 35, 0.1);
    color: #fe4a23;
    border: 1px solid rgba(254, 74, 35, 0.2);
}

.cs-intro-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.cs-intro-card h3::before {
    display: none;
}

.cs-intro-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.cs-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.cs-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.cs-feature-pill:hover {
    border-color: rgba(37, 99, 235, 0.3);
    background: #f8fafc;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.cs-feature-pill svg {
    color: #2563eb;
}

.cs-client-quote-card {
    background: rgba(2, 132, 199, 0.04);
    border-left: 4px solid #0284c7;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0 16px 16px 0;
    padding: 24px 28px;
    margin: 28px 0 8px;
    position: relative;
    box-shadow: none;
    transition: background 0.3s ease;
}

.cs-client-quote-card:hover {
    background: rgba(2, 132, 199, 0.07);
    box-shadow: none;
    transform: none;
}

.cs-quote-decor {
    position: absolute;
    top: 18px;
    right: 24px;
    color: rgba(2, 132, 199, 0.14);
    pointer-events: none;
}

.cs-quote-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
}

.cs-quote-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.cs-quote-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0284c7;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.cs-quote-author-line {
    width: 22px;
    height: 2.5px;
    background: #0284c7;
    border-radius: 2px;
    display: inline-block;
}

.cs-quote-author-dot {
    width: 6px;
    height: 6px;
    background: #0284c7;
    border-radius: 50%;
    display: inline-block;
}

.cs-quote-badge {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #059669;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.22);
    padding: 5px 14px;
    border-radius: 50px;
}

/* ================================================
   SECTION 02 — CHALLENGES & SOLUTIONS STYLES
   ================================================ */
.cs-cs-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.cs-cs-item {
    border-radius: 0 16px 16px 0;
    padding: 24px 28px;
    position: relative;
    box-shadow: none;
    transition: background 0.3s ease;
}

.cs-cs-item.cs-cs-challenge {
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.035);
}

.cs-cs-item.cs-cs-challenge:hover {
    background: rgba(239, 68, 68, 0.06);
}

.cs-cs-item.cs-cs-solution {
    border-left: 4px solid #10b981;
    background: rgba(16, 185, 129, 0.035);
}

.cs-cs-item.cs-cs-solution:hover {
    background: rgba(16, 185, 129, 0.06);
}

.cs-cs-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.cs-cs-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.challenge-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.solution-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cs-cs-header h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
}

.cs-cs-item p {
    font-size: 0.98rem;
    color: var(--cs-text-dark);
    line-height: 1.75;
    margin: 0;
    text-align: left;
}

/* ================================================
   SECTION 03 — OBJECTIVES (CHEDDR DAPP)
   ================================================ */
.cs-objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.cs-objective-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 30px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cs-objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cs-objective-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -6px rgba(15, 23, 42, 0.06), 0 4px 10px rgba(37, 99, 235, 0.04);
}

.cs-objective-card:hover::before {
    opacity: 1;
}

.cs-obj-card-seamless::before {
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.cs-obj-card-seamless:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.cs-obj-card-engagement::before {
    background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.cs-obj-card-engagement:hover {
    border-color: rgba(2, 132, 199, 0.3);
}

.cs-obj-card-empowerment::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.cs-obj-card-empowerment:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.cs-objective-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cs-objective-card:hover .cs-objective-icon-wrap {
    transform: scale(1.08);
}

.cs-obj-icon-seamless {
    background: rgba(249, 115, 22, 0.09);
    border: 1px solid rgba(249, 115, 22, 0.22);
    color: #ea580c;
}

.cs-obj-icon-engagement {
    background: rgba(2, 132, 199, 0.09);
    border: 1px solid rgba(2, 132, 199, 0.22);
    color: #0284c7;
}

.cs-obj-icon-empowerment {
    background: rgba(16, 185, 129, 0.09);
    border: 1px solid rgba(16, 185, 129, 0.22);
    color: #059669;
}

.cs-objective-card h4 {
    font-size: 1.22rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.cs-objective-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.68;
    margin: 0;
    text-align: left;
}

/* ================================================
   SECTION 04 — CHALLENGES (CHEDDR DAPP)
   ================================================ */
.cs-challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.cs-challenge-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 30px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cs-challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cs-challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -6px rgba(15, 23, 42, 0.06), 0 4px 10px rgba(37, 99, 235, 0.04);
}

.cs-challenge-card:hover::before {
    opacity: 1;
}

.cs-ch-card-security::before {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.cs-ch-card-security:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.cs-ch-card-accessibility::before {
    background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.cs-ch-card-accessibility:hover {
    border-color: rgba(2, 132, 199, 0.3);
}

.cs-ch-card-onboarding::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.cs-ch-card-onboarding:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.cs-challenge-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cs-challenge-card:hover .cs-challenge-icon-wrap {
    transform: scale(1.08);
}

.cs-ch-icon-security {
    background: rgba(239, 68, 68, 0.09);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #dc2626;
}

.cs-ch-icon-accessibility {
    background: rgba(2, 132, 199, 0.09);
    border: 1px solid rgba(2, 132, 199, 0.22);
    color: #0284c7;
}

.cs-ch-icon-onboarding {
    background: rgba(245, 158, 11, 0.09);
    border: 1px solid rgba(245, 158, 11, 0.22);
    color: #d97706;
}

.cs-challenge-card h4 {
    font-size: 1.22rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.cs-challenge-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.68;
    margin: 0;
    text-align: left;
}

/* ================================================
   SECTION 05 — SOLUTION APPROACH HORIZONTAL TIMELINE
   ================================================ */
.cs-approch-timeline-wrapper,
.approch-timeline-wrapper {
    position: relative;
    margin-top: 36px;
    margin-bottom: 28px;
    width: 100%;
}

/* Continuous Horizontal Timeline Track Line */
.cs-approch-timeline-track,
.approch-timeline-track {
    position: absolute;
    top: 22px;
    left: calc(100% / 12 - 5px);
    right: calc(100% / 12 - 5px);
    height: 3px;
    z-index: 1;
    pointer-events: none;
    transition: left 0.35s ease, right 0.35s ease, width 0.35s ease;
}

.cs-approch-timeline-line,
.approch-timeline-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            #f97316 0%,
            #ea580c 50%,
            #0284c7 100%);
    border-radius: 3px;
}

.cs-approch-timeline-pulse,
.approch-timeline-pulse {
    position: absolute;
    top: -1.5px;
    left: 0;
    height: 6px;
    width: 60px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 40%, #f97316 80%, transparent 100%);
    border-radius: 6px;
    filter: drop-shadow(0 0 8px #f97316);
    animation: csApprochHorizontalPulse 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

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

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 60px);
        opacity: 0;
    }
}

/* Horizontal Stages Flow (Automatic dynamic equal columns) */
.cs-approch-stages-grid,
.approch-stages-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 12px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* Dynamic Step-Count Adaptive Track & Columns for Desktop */
@media (min-width: 1025px) {
    /* 3 Steps */
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(3):last-child) .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper[data-steps="3"] .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper.steps-3 .cs-approch-stages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(3):last-child) .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper[data-steps="3"] .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper.steps-3 .cs-approch-timeline-track {
        left: calc(100% / 6 - 4px);
        right: calc(100% / 6 - 4px);
    }

    /* 4 Steps */
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(4):last-child) .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper[data-steps="4"] .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper.steps-4 .cs-approch-stages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(4):last-child) .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper[data-steps="4"] .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper.steps-4 .cs-approch-timeline-track {
        left: calc(100% / 8 - 4.5px);
        right: calc(100% / 8 - 4.5px);
    }

    /* 5 Steps */
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(5):last-child) .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper[data-steps="5"] .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper.steps-5 .cs-approch-stages-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(5):last-child) .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper[data-steps="5"] .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper.steps-5 .cs-approch-timeline-track {
        left: calc(100% / 10 - 4.8px);
        right: calc(100% / 10 - 4.8px);
    }

    /* 6 Steps */
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(6):last-child) .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper[data-steps="6"] .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper.steps-6 .cs-approch-stages-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(6):last-child) .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper[data-steps="6"] .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper.steps-6 .cs-approch-timeline-track {
        left: calc(100% / 12 - 5px);
        right: calc(100% / 12 - 5px);
    }

    /* 7 Steps */
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(7):last-child) .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper[data-steps="7"] .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper.steps-7 .cs-approch-stages-grid {
        grid-template-columns: repeat(7, 1fr);
    }
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(7):last-child) .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper[data-steps="7"] .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper.steps-7 .cs-approch-timeline-track {
        left: calc(100% / 14 - 5.14px);
        right: calc(100% / 14 - 5.14px);
    }

    /* 8 Steps */
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(8):last-child) .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper[data-steps="8"] .cs-approch-stages-grid,
    .cs-approch-timeline-wrapper.steps-8 .cs-approch-stages-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    .cs-approch-timeline-wrapper:has(.cs-approch-stage-item:nth-child(8):last-child) .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper[data-steps="8"] .cs-approch-timeline-track,
    .cs-approch-timeline-wrapper.steps-8 .cs-approch-timeline-track {
        left: calc(100% / 16 - 5.25px);
        right: calc(100% / 16 - 5.25px);
    }
}

/* Stage Item (Vertical Stack: Node on top, Card below) */
.cs-approch-stage-item,
.approch-stage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Node Wrapper & Numbered Dot */
.cs-approch-node-wrapper,
.approch-node-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
}

.cs-approch-node-dot,
.approch-node-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid #f97316;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.2), 0 0 0 4px #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.cs-approch-node-num,
.approch-node-num {
    font-size: 14px;
    font-weight: 800;
    color: #ea580c;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

/* Vertical Connector Line into Card */
.cs-approch-node-connector,
.approch-node-connector {
    width: 2px;
    height: 14px;
    background: linear-gradient(180deg, #f97316 0%, rgba(249, 115, 22, 0.25) 100%);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Stage Card (Compact, tight padding, equal height) */
.cs-approch-stage-card,
.approch-stage-card {
    width: 100%;
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 12px;
    padding: 10px 8px;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.cs-approch-stage-card::before,
.approch-stage-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Card Header & Title */
.cs-approch-card-header,
.approch-card-header {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cs-approch-stage-title,
.approch-stage-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0;
    text-align: center;
    transition: color 0.3s ease;
    word-break: break-word;
}

.cs-approch-stage-title::before,
.approch-stage-title::before {
    display: none !important;
}

/* Hover Interactions */
.cs-approch-stage-item:hover .cs-approch-node-dot,
.approch-stage-item:hover .approch-node-dot {
    transform: scale(1.15);
    border-color: #ea580c;
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.55), 0 0 0 4px rgba(249, 115, 22, 0.2);
}

.cs-approch-stage-item:hover .cs-approch-node-num,
.approch-stage-item:hover .approch-node-num {
    color: #ffffff;
}

.cs-approch-stage-item:hover .cs-approch-node-connector,
.approch-stage-item:hover .approch-node-connector {
    background: #f97316;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.7);
}

.cs-approch-stage-item:hover .cs-approch-stage-card,
.approch-stage-item:hover .approch-stage-card {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 10px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(249, 115, 22, 0.08);
}

.cs-approch-stage-item:hover .cs-approch-stage-card::before,
.approch-stage-item:hover .approch-stage-card::before {
    opacity: 1;
}

.cs-approch-stage-item:hover .cs-approch-stage-title,
.approch-stage-item:hover .approch-stage-title {
    color: #ea580c;
}

/* ================================================
   HIGHLIGHT / QUOTE BLOCK
   ================================================ */
.cs-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(139, 92, 246, 0.06));
    border-left: 4px solid var(--cs-primary);
    border-radius: 0 var(--cs-radius-sm) var(--cs-radius-sm) 0;
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 1rem;
    color: var(--cs-text-dark);
    font-style: italic;
    line-height: 1.7;
    font-weight: 500;
}

/* ================================================
   SECTION 06 — KEY FEATURES (DISTINCT CARD DESIGN)
   ================================================ */
.cs-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.cs-feature-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    padding: 26px 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
}

.cs-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cs-feature-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.cs-feature-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cs-feature-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.cs-feature-card:hover {
    transform: translateY(-7px);
}

.cs-feature-card:hover::before {
    opacity: 1;
}

.cs-feature-card:hover .cs-feature-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

/* Color Schemes for 6 Features */
/* 01: Wallet */
.cs-ft-card-wallet::before {
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.cs-ft-icon-wallet {
    background: rgba(249, 115, 22, 0.1);
    border: 1.5px solid rgba(249, 115, 22, 0.25);
    color: #ea580c;
}

.cs-ft-card-wallet .cs-feature-badge {
    background: rgba(249, 115, 22, 0.08);
    color: #ea580c;
}

.cs-ft-card-wallet:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 18px 36px -8px rgba(249, 115, 22, 0.18), 0 4px 12px rgba(249, 115, 22, 0.08);
}

.cs-ft-card-wallet:hover .cs-ft-icon-wallet {
    box-shadow: 0 0 16px rgba(249, 115, 22, 0.35);
}

/* 02: Ordering */
.cs-ft-card-ordering::before {
    background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.cs-ft-icon-ordering {
    background: rgba(2, 132, 199, 0.1);
    border: 1.5px solid rgba(2, 132, 199, 0.25);
    color: #0284c7;
}

.cs-ft-card-ordering .cs-feature-badge {
    background: rgba(2, 132, 199, 0.08);
    color: #0284c7;
}

.cs-ft-card-ordering:hover {
    border-color: rgba(2, 132, 199, 0.4);
    box-shadow: 0 18px 36px -8px rgba(2, 132, 199, 0.18), 0 4px 12px rgba(249, 115, 22, 0.08);
}

.cs-ft-card-ordering:hover .cs-ft-icon-ordering {
    box-shadow: 0 0 16px rgba(2, 132, 199, 0.35);
}

/* 03: Discount */
.cs-ft-card-discount::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.cs-ft-icon-discount {
    background: rgba(16, 185, 129, 0.1);
    border: 1.5px solid rgba(16, 185, 129, 0.25);
    color: #059669;
}

.cs-ft-card-discount .cs-feature-badge {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
}

.cs-ft-card-discount:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 18px 36px -8px rgba(16, 185, 129, 0.18), 0 4px 12px rgba(16, 185, 129, 0.08);
}

.cs-ft-card-discount:hover .cs-ft-icon-discount {
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.35);
}

/* 04: Game Zone */
.cs-ft-card-game::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.cs-ft-icon-game {
    background: rgba(139, 92, 246, 0.1);
    border: 1.5px solid rgba(139, 92, 246, 0.25);
    color: #7c3aed;
}

.cs-ft-card-game .cs-feature-badge {
    background: rgba(139, 92, 246, 0.08);
    color: #7c3aed;
}

.cs-ft-card-game:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 18px 36px -8px rgba(139, 92, 246, 0.18), 0 4px 12px rgba(139, 92, 246, 0.08);
}

.cs-ft-card-game:hover .cs-ft-icon-game {
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.35);
}

/* 05: NFT */
.cs-ft-card-nft::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.cs-ft-icon-nft {
    background: rgba(245, 158, 11, 0.1);
    border: 1.5px solid rgba(245, 158, 11, 0.25);
    color: #d97706;
}

.cs-ft-card-nft .cs-feature-badge {
    background: rgba(245, 158, 11, 0.08);
    color: #d97706;
}

.cs-ft-card-nft:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 18px 36px -8px rgba(245, 158, 11, 0.18), 0 4px 12px rgba(245, 158, 11, 0.08);
}

.cs-ft-card-nft:hover .cs-ft-icon-nft {
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.35);
}

/* 06: Dashboards */
.cs-ft-card-dashboard::before {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.cs-ft-icon-dashboard {
    background: rgba(6, 182, 212, 0.1);
    border: 1.5px solid rgba(6, 182, 212, 0.25);
    color: #0891b2;
}

.cs-ft-card-dashboard .cs-feature-badge {
    background: rgba(6, 182, 212, 0.08);
    color: #0891b2;
}

.cs-ft-card-dashboard:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 18px 36px -8px rgba(6, 182, 212, 0.18), 0 4px 12px rgba(6, 182, 212, 0.08);
}

.cs-ft-card-dashboard:hover .cs-ft-icon-dashboard {
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.35);
}

.cs-feature-card h4 {
    font-size: 1.18rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    letter-spacing: -0.015em;
    line-height: 1.35;
}

.cs-feature-card p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.62;
    margin: 0 0 18px;
    text-align: left;
    flex-grow: 1;
}

.cs-feature-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(241, 245, 249, 0.9);
    margin-top: auto;
}

.cs-feature-status {
    font-size: 0.76rem;
    font-weight: 700;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-feature-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.cs-feature-arrow {
    color: #94a3b8;
    transition: all 0.3s ease;
}

.cs-feature-card:hover .cs-feature-arrow {
    transform: translateX(4px);
    color: #f97316;
}

/* ================================================
   SECTION 07 — TECH STACK (NEW SHOWCASE CLASS)
   ================================================ */
.cs-tech-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.cs-tech-tile {
    width: 96px;
    height: 96px;
    background: #ffffff;
    border: 1.5px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    box-sizing: border-box;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: default;
}

.cs-tech-tile-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
}

.cs-tech-tile:hover {
    transform: translateY(-6px) scale(1.05);
    background: #ffffff;
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 16px 32px -6px rgba(249, 115, 22, 0.18), 0 0 0 2px rgba(249, 115, 22, 0.15);
}

.cs-tech-tile:hover .cs-tech-tile-img {
    transform: scale(1.12);
}

/* ================================================
   SECTION 08 — RESULTS & OUTCOME (CREATIVE DESIGN)
   ================================================ */
.cs-results-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 36px 0 32px;
}

.cs-results-metric-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    padding: 26px 24px 22px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.035);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-results-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    opacity: 0.9;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.cs-results-metric-card.cs-metric-card-downloads::before {
    background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.cs-results-metric-card.cs-metric-card-engagement::before {
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.cs-results-metric-card.cs-metric-card-games::before {
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

.cs-results-metric-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -8px rgba(15, 23, 42, 0.08), 0 4px 14px rgba(249, 115, 22, 0.06);
    border-color: rgba(249, 115, 22, 0.35);
}

.cs-results-metric-card:hover::before {
    height: 4.5px;
}

.cs-results-metric-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cs-results-metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.cs-metric-card-downloads .cs-results-metric-icon {
    background: rgba(2, 132, 199, 0.1);
    border: 1px solid rgba(2, 132, 199, 0.25);
    color: #0284c7;
}

.cs-metric-card-engagement .cs-results-metric-icon {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: #ea580c;
}

.cs-metric-card-games .cs-results-metric-icon {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #8b5cf6;
}

.cs-results-metric-card:hover .cs-results-metric-icon {
    transform: scale(1.08) rotate(-4deg);
}

.cs-results-metric-pill {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.cs-metric-card-downloads .cs-results-metric-pill {
    background: rgba(2, 132, 199, 0.08);
    color: #0284c7;
}

.cs-metric-card-engagement .cs-results-metric-pill {
    background: rgba(249, 115, 22, 0.08);
    color: #ea580c;
}

.cs-metric-card-games .cs-results-metric-pill {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

.cs-results-metric-value-wrap {
    margin-bottom: 8px;
}

.cs-results-metric-val {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0284c7;
    display: inline-block;
}

.cs-results-metric-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ea580c;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-top: 4px;
}

.cs-results-metric-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #64748b;
    border-top: 1px dashed rgba(226, 232, 240, 0.9);
    padding-top: 12px;
    margin-top: 16px;
}

.cs-results-metric-footer svg {
    color: #10b981;
    flex-shrink: 0;
}

/* Dual Showcase Split (Feedback + Phone App) */
.cs-results-showcase-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
    margin-top: 12px;
}

/* Feedback Card */
.cs-results-feedback-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.cs-results-feedback-card:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border-color: rgba(2, 132, 199, 0.3);
}

.cs-results-quote-watermark {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 130px;
    height: 130px;
    color: rgba(249, 115, 22, 0.04);
    pointer-events: none;
}

.cs-results-feedback-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.cs-results-feedback-bubble-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(2, 132, 199, 0.08);
    border: 1.5px solid rgba(2, 132, 199, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
}

.cs-results-stars-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs-results-star {
    color: #f59e0b;
    fill: #f59e0b;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.cs-results-feedback-text {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #1e293b;
    font-weight: 500;
    margin: 0 0 28px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.cs-results-feedback-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.cs-results-author-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cs-results-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.cs-results-author-name {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.cs-results-author-role {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.cs-results-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

/* Smartphone Mockup */
.cs-phone-showcase-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* .cs-phone-frame {
    width: 100%;
    max-width: 320px;
    background: #0f172a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 24px 50px -12px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-phone-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -12px rgba(249, 115, 22, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
} */

/* .cs-phone-screen {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
} */

.cs-phone-app-img {
    width: 350px;
    height: 500px;
    display: block;
    border-radius: 28px;
    object-fit: contain;
}

.cs-phone-island {
    width: 82px;
    height: 18px;
    background: #0f172a;
    border-radius: 10px;
    margin: 6px auto 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
}

.cs-phone-camera-dot {
    width: 6px;
    height: 6px;
    background: #1e293b;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(56, 189, 248, 0.4);
}

/* Phone App Header */
.cs-phone-app-header {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 10px 14px 12px;
    color: #ffffff;
}

.cs-phone-app-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cs-phone-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: -0.01em;
}

.cs-phone-brand-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-phone-header-chip {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
}

.cs-phone-subnav {
    background: rgba(0, 0, 0, 0.08);
    margin: 4px -14px -12px;
    padding: 6px 14px;
    font-size: 0.76rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #ffffff;
}

/* Phone App Body */
.cs-phone-app-body {
    padding: 14px 12px 16px;
    background: #fdfdfd;
}

.cs-phone-balance-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    padding: 0 4px;
}

.cs-phone-balance-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-phone-balance-amount {
    font-size: 1.18rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

/* Phone Chart */
.cs-phone-chart-box {
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 14px;
    padding: 8px 10px 6px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.cs-phone-chart-svg {
    width: 100%;
    height: 78px;
    display: block;
}

.cs-phone-chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.55rem;
    color: #94a3b8;
    font-weight: 600;
    padding: 4px 2px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.7);
}

/* Quick Action Buttons */
.cs-phone-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}

.cs-phone-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 6px 2px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.cs-phone-action-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(249, 115, 22, 0.1);
    color: #ea580c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-phone-action-text {
    font-size: 0.6rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.1;
}

/* Activity Row */
.cs-phone-activity-box {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 12px;
    padding: 8px 10px;
}

.cs-phone-activity-head {
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.cs-phone-activity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cs-phone-activity-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-phone-activity-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-phone-activity-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.cs-phone-activity-time {
    font-size: 0.6rem;
    color: #94a3b8;
}

.cs-phone-activity-amount {
    font-size: 0.74rem;
    font-weight: 800;
    color: #16a34a;
    text-align: right;
}

.cs-phone-activity-sub {
    font-size: 0.58rem;
    color: #94a3b8;
    text-align: right;
}

/* ================================================
   CHALLENGE / SOLUTION SPLIT
   ================================================ */
.cs-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.cs-split-card {
    border-radius: var(--cs-radius-sm);
    padding: 24px;
    border: 1px solid transparent;
}

.cs-split-card.challenge {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
    border-color: rgba(239, 68, 68, 0.15);
}

.cs-split-card.solution {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.02));
    border-color: rgba(16, 185, 129, 0.15);
}

.cs-split-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cs-split-card.challenge .cs-split-card-head {
    color: #dc2626;
}

.cs-split-card.solution .cs-split-card-head {
    color: #059669;
}

.cs-split-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-split-card ul li {
    font-size: 0.9rem;
    color: var(--cs-text-body);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
    background: none;
    border: none;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
}

.cs-split-card.challenge ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 900;
    font-size: 0.8rem;
}

.cs-split-card.solution ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 900;
    font-size: 0.8rem;
}

/* ================================================
   TIMELINE
   ================================================ */
.cs-timeline {
    position: relative;
    padding-left: 32px;
    margin: 24px 0;
}

.cs-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--cs-primary) 0%, var(--cs-accent) 100%);
    border-radius: 2px;
}

.cs-timeline-item {
    position: relative;
    margin-bottom: 28px;
    padding-bottom: 4px;
}

.cs-timeline-item:last-child {
    margin-bottom: 0;
}

.cs-timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cs-primary);
    border: 3px solid var(--cs-bg);
    box-shadow: 0 0 0 2px var(--cs-primary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cs-timeline-item:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 3px var(--cs-accent);
}

.cs-timeline-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cs-text-dark);
    margin: 0 0 6px;
}

.cs-timeline-item p {
    font-size: 0.9rem;
    color: var(--cs-text-muted);
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

/* ================================================
   LISTS (premium styled)
   ================================================ */
.cs-section ul:not(.cs-split-card ul),
.cs-section ol {
    padding-left: 0;
    margin: 16px 0;
    list-style: none;
    counter-reset: cs-ol;
}

.cs-section ul:not(.cs-split-card ul) li,
.cs-section ol li {
    font-size: 0.975rem;
    color: var(--cs-text-body);
    margin-bottom: 10px;
    padding: 14px 18px 14px 54px;
    background: #f8faff;
    border: 1px solid rgba(37, 99, 235, 0.07);
    border-radius: 12px;
    position: relative;
    line-height: 1.6;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.cs-section ul:not(.cs-split-card ul) li:hover,
.cs-section ol li:hover {
    background: #eef2ff;
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateX(4px);
}

.cs-section ul:not(.cs-split-card ul) li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--cs-primary), #6366f1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cs-section ol li {
    counter-increment: cs-ol;
}

.cs-section ol li::before {
    content: counter(cs-ol);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--cs-accent), var(--cs-accent-2));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ================================================
   OUTCOME CARDS
   ================================================ */
.cs-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 24px 0;
}

.cs-outcome-card {
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: var(--cs-radius-sm);
    padding: 24px;
    box-shadow: var(--cs-shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs-outcome-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--cs-shadow-md);
    border-color: rgba(37, 99, 235, 0.2);
}

.cs-outcome-icon {
    font-size: 2rem;
    line-height: 1;
}

.cs-outcome-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cs-text-dark);
    margin: 0;
}

.cs-outcome-card p {
    font-size: 0.875rem;
    color: var(--cs-text-muted);
    margin: 0;
    text-align: left;
    line-height: 1.6;
}

/* ================================================
   TECH STACK PILLS
   ================================================ */
.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.tech-stack-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8faff;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    padding: 10px 22px;
    transition: all 0.3s;
    cursor: default;
}

.tech-stack-pill:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(99, 102, 241, 0.08));
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--cs-shadow-sm);
}

.tech-stack-pill img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.tech-stack-pill span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cs-text-dark);
}

/* ================================================
   TEXT HIGHLIGHT
   ================================================ */
.cs-text-orange {
    background: linear-gradient(90deg, #f97316 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================
   CALL TO ACTION
   ================================================ */
.cs-cta-container {
    text-align: center;
    margin-top: 40px;
    padding: 72px 48px;
    background: #050d1f;
    border-radius: var(--cs-radius);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cs-cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 10% 50%, rgba(37, 99, 235, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 90% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 60% 90%, rgba(249, 115, 22, 0.15) 0%, transparent 55%);
    z-index: 0;
}

.cs-cta-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.cs-cta-container>* {
    position: relative;
    z-index: 1;
}

.cs-cta-container h2 {
    color: #fff !important;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
    -webkit-text-fill-color: #fff !important;
}

.cs-cta-container p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    margin: 0 auto 36px;
    max-width: 540px;
    line-height: 1.75;
}

.cs-cta-container a:not(.cs-cta-btn) {
    color: #93c5fd;
    text-decoration: underline;
}

.cs-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--cs-accent) 0%, var(--cs-accent-2) 100%);
    color: #fff;
    padding: 17px 44px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.45);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.cs-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s;
}

.cs-cta-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.6);
    color: #fff;
}

.cs-cta-btn:hover::before {
    opacity: 1;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

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

.cs-animate-up {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.25s;
}

.delay-3 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.55s;
}

.delay-5 {
    animation-delay: 0.7s;
}

.delay-6 {
    animation-delay: 0.85s;
}

/* scroll-reveal (added via JS) */
.cs-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    .cs-hero {
        padding: 130px 20px 80px;
    }

    .cs-hero h1 {
        font-size: 1.8rem;
    }

    .cs-hero-image img {
        height: 260px;
    }

    .cs-stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 20px;
    }

    .cs-stat-item:nth-child(1),
    .cs-stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    }

    .cs-stat-item:nth-child(2),
    .cs-stat-item:nth-child(4) {
        border-right: none;
    }

    @media (max-width: 540px) {
        .cs-stats-bar {
            padding: 0 16px;
        }

        .cs-stats-bar-inner {
            margin-top: -36px;
            border-radius: 18px;
        }

        .cs-stat-item {
            padding: 20px 10px 18px;
        }

        .cs-stat-icon {
            width: 40px;
            height: 40px;
            border-radius: 11px;
            margin-bottom: 10px;
        }

        .cs-stat-icon svg {
            width: 19px;
            height: 19px;
        }

        .cs-stat-value {
            font-size: 1.65rem;
        }

        .cs-stat-label {
            font-size: 0.7rem;
            letter-spacing: 0.5px;
        }
    }

    .cs-section {
        padding: 32px 24px;
    }

    .cs-split {
        grid-template-columns: 1fr;
    }

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

    .cs-client-quote-card {
        padding: 22px 20px;
    }

    .cs-quote-text {
        font-size: 1.05rem;
    }

    .cs-outcomes-grid {
        grid-template-columns: 1fr;
    }

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

    .cs-objective-card {
        padding: 24px 20px;
    }

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

    .cs-challenge-card {
        padding: 24px 20px;
    }

    /* Section 05 Approach Timeline Responsive */
    .cs-approch-timeline-wrapper,
    .approch-timeline-wrapper {
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .cs-approch-timeline-track,
    .approch-timeline-track {
        display: none;
    }

    .cs-approch-stages-grid,
    .approch-stages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }

    .cs-approch-stage-card,
    .approch-stage-card {
        padding: 10px 6px;
        min-height: 48px;
    }

    .cs-approch-stage-title,
    .approch-stage-title {
        font-size: 0.82rem;
    }

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

    /* Section 08 Results & Outcome Responsive */
    .cs-results-metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 28px 0;
    }

    .cs-results-metric-card {
        padding: 22px 20px 18px;
    }

    .cs-results-metric-val {
        font-size: 2.2rem;
    }

    .cs-results-metric-name {
        font-size: 1.15rem;
    }

    .cs-results-showcase-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cs-results-feedback-card {
        padding: 26px 20px;
    }

    .cs-results-feedback-text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .cs-phone-frame {
        max-width: 290px;
    }

    .cs-cta-container {
        padding: 48px 24px;
    }

    .cs-cta-container h2 {
        font-size: 1.6rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .cs-approch-timeline-track,
    .approch-timeline-track {
        display: none;
    }

    .cs-approch-stages-grid,
    .approch-stages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 12px;
    }

    .cs-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cs-results-metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .cs-results-metric-val {
        font-size: 2.2rem;
    }

    .cs-results-showcase-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.cs-results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 35px;
}

.cs-result-card {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr 50px;
    align-items: center;
    gap: 25px;
    padding: 25px 28px;
    border: 1px solid rgba(0, 141, 204, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
    transition: all 0.3s ease;
}

.cs-result-card:hover {
    border-color: #008dcc;
    box-shadow: 0 12px 30px rgba(0, 141, 204, 0.1);
}

.cs-result-number {
    font-size: 32px;
    font-weight: 800;
    color: #008dcc;
}

.cs-result-label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #e9932f;
}

.cs-result-content h3 {
    margin: 0 0 7px;
    font-size: 21px;
    font-weight: 700;
    color: #173f52;
}

.cs-result-content p {
    margin: 0;
    max-width: 720px;
    font-size: 15px;
    line-height: 1.6;
    color: #66747d;
}

.cs-result-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #008dcc;
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cs-result-card:hover .cs-result-icon {
    transform: rotate(45deg);
}

@media (max-width: 767px) {
    .cs-result-card {
        grid-template-columns: 48px 1fr;
        gap: 15px;
        padding: 20px;
    }

    .cs-result-number {
        font-size: 24px;
    }

    .cs-result-content h3 {
        font-size: 18px;
    }

    .cs-result-content p {
        font-size: 14px;
    }

    .cs-result-icon {
        display: none;
    }
}

.cs-results-screen-showcase {
    /* width: 100%; */
    margin: 40px 0px;
    /* display: flex; */
    /* overflow: hidden; */
    /* border-radius: 30px; */
}

.cs-results-desktop-image {
    display: block;
    width: 100%;
    max-width: 800px;
    height: 500px;
    object-fit: cover;
    border-radius: 18px;
}