/* ==========================================================================
   UNIFIED IMAGE PAGES CORE LAYOUT (Synchronized with video_page_css.css)
   ========================================================================== */
:root{
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    --navy: #071233;
    --navy-deep: #050d1f;
    --blue: #06A3DA;
    --blue-light: #0dcaf0;
    --white: #ffffff;
    --text-primary: #071233;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --ais-border: rgba(6, 163, 218, 0.15);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: "Manrope", sans-serif;
    background:
    linear-gradient(
    135deg,
    #061C3F 0%,
    #0B2E63 40%,
    #091e3e 100%
    );
    background-size:300% 300%;
    color:#ffffff;
    opacity:0;
    animation:
        pageFadeIn .9s ease forwards,
        gradientShift 20s ease-in-out infinite .9s;
}

#pageLoader{
    position:fixed; inset:0; z-index:9999;
    background:#061C3F;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:20px;
}
.loader-logo{ font-size:28px; font-weight:800; color:#fff; letter-spacing:-1px; }
.loader-bar{ width:200px; height:3px; background:rgba(255,255,255,.1); border-radius:99px; overflow:hidden; }
.loader-fill{ width:0%; height:100%; background:#2563EB; }

/* -------------------- */
/* BACK BUTTON          */
/* -------------------- */
.back-btn {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #061C3F 0%, #0B2E63 60%, #091e3e 100%);
    color: #ffffff;
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}

.back-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.back-btn:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 10px 25px rgba(11,46,99,.5);
}

.back-btn:hover svg {
    transform: translateX(-3px);
}


/* ==========================================
   GLOBAL TRANSITIONS FOR NAV TOGGLE
   ========================================== */
.page-nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hamburger default state (Hidden on desktop) */
.hamburger-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    height: 12px;
    position: relative;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2563EB;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Open State Animation for Hamburger */
.page-nav.open .hamburger-icon span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}
.page-nav.open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}
.page-nav.open .hamburger-icon span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* -------------------- */
/* NAV TOGGLE & DROPDOWN*/
/* -------------------- */
.page-nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}



.page-nav.open .hamburger-icon span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}
.page-nav.open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}
.page-nav.open .hamburger-icon span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.page-nav{
    position:fixed;
    top:24px;
    right:24px;
    z-index:500;
}
.page-nav-toggle:hover{
    transform:translateY(-2px) scale(1.04);
    box-shadow:0 8px 20px rgba(37,99,235,.18);
}
.page-nav-toggle svg{
    width:14px;
    height:14px;
    transition:transform .3s ease;
}
.page-nav.open .page-nav-toggle svg{
    transform:rotate(180deg);
}
.page-nav-menu{
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    min-width:220px;
    background:#ffffff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(15,23,42,.18);
    padding:10px;
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    max-height:70vh;
    overflow-y:auto;
    transition:opacity .25s ease, transform .25s ease, visibility .25s;
}
.page-nav.open .page-nav-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.page-nav-menu a{
    display:block;
    padding:11px 16px;
    border-radius:12px;
    color:#334155;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:background .2s ease, color .2s ease, transform .2s ease;
}
.page-nav-menu a:hover{
    background:#EFF6FF;
    color:#2563EB;
    transform:translateX(3px);
}
.page-nav-menu a.current{
    background:#2563EB;
    color:#fff;
}

/* -------------------- */
/* BACKDROP ANIMATIONS  */
/* -------------------- */
@keyframes pageFadeIn{
    to{ opacity:1; }
}
@keyframes gradientShift{
    0%{ background-position:0% 50%; }
    50%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }
}

/* ==========================================================================
   INTRO HERO BANNER (sits above the showcase gallery)
   ========================================================================== */
.intro-hero{
    position:relative;
    overflow:hidden;
    background: linear-gradient(135deg, var(--dark) 0%, #0B2E63 55%, var(--navy-deep) 100%);
    padding: 145px 100px 0;
}
.intro-hero-inner{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap:60px;
    align-items:center;
    max-width:1400px;
    margin:0 auto;
}
.intro-tag{
    background: rgba(6,163,218,.12);
    color: var(--blue-light);
    border-color: rgba(6,163,218,.35);
}
.intro-hero-title{
    font-size:48px;
    font-weight:800;
    line-height:1.14;
    letter-spacing:-1px;
    color: var(--white);
    margin: 18px 0 22px;
    max-width:620px;
}
.intro-hero-text{
    font-size:16px;
    line-height:1.8;
    color: rgba(255,255,255,.75);
    max-width:560px;
    margin-bottom:34px;
        text-align: justify;

}
.intro-hero-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:16px 32px;
    background: var(--primary);
    color:#04182b;
    font-weight:800;
    font-size:14px;
    border-radius:6px;
    text-decoration:none;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s ease, box-shadow .3s ease;
}
.intro-hero-cta:hover{
    background: var(--secondary);
    color:#04180c;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(52,173,84,.3);
}

.intro-hero-visual{
    position:relative;
    height:360px;
    border-radius:24px;
    overflow:hidden;
}
.intro-visual-grid{
    position:absolute; inset:0;
}


.intro-visual-grid img{
    height: 100%;
    width: 100%;
    object-fit: fill;
}


.intro-visual-orb{
    position:absolute;
    border-radius:50%;
    filter: blur(30px);
}
.intro-visual-orb--a{ width:180px; height:180px; background: var(--primary); opacity:.55; top:10%;  left:15%;  animation: floatBlobA 13s ease-in-out infinite; }
.intro-visual-orb--b{ width:130px; height:130px; background: var(--secondary); opacity:.45; bottom:12%; right:18%; animation: floatBlobB 16s ease-in-out infinite; }
.intro-visual-orb--c{ width:90px;  height:90px;  background: var(--blue-light); opacity:.5;  top:45%;   right:35%; animation: floatBlobC 18s ease-in-out infinite; }

.breadcrumb-row{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin: 46px auto 0;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:600;
    color: rgba(255,255,255,.4);
    padding-bottom: 26px;
}
.breadcrumb-row a{ color: rgba(255,255,255,.75); text-decoration:none; transition:color .2s ease; }
.breadcrumb-row a:hover{ color: var(--blue-light); }
.breadcrumb-sep{ color: rgba(255,255,255,.3); }
.breadcrumb-current{ color: rgba(255,255,255,.4); }

/* ==========================================================================
   IMPACT / RESULTS STATS SECTION (sits above the showcase gallery)
   ========================================================================== */
.impact-section{
    position:relative;
    overflow:hidden;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--primary) 6%, var(--light)) 0%,
        var(--light) 45%,
        color-mix(in srgb, var(--secondary) 6%, var(--light)) 100%);
    color: var(--text-primary);
    padding: 90px 100px;
}
.impact-section::before,
.impact-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter: blur(50px);
    z-index:0;
    pointer-events:none;
}
.impact-section::before{
    width:260px; height:260px;
    background: var(--primary);
    opacity:.12;
    top:-60px; left:-60px;
}
.impact-section::after{
    width:220px; height:220px;
    background: var(--secondary);
    opacity:.12;
    bottom:-60px; right:-40px;
}
.impact-section > *{
    position:relative;
    z-index:1;
}
.impact-header{
    max-width:760px;
    margin:0 auto 56px;
    text-align:center;
}
.impact-header h2{
    font-size:34px;
    font-weight:800;
    color: var(--text-primary);
    line-height:1.25;
    margin-bottom:14px;
}
.impact-header p{
    font-size:15px;
    color: var(--text-secondary);
    line-height:1.7;
}
.impact-grid{
    display:none; /* legacy grid markup no longer used, kept hidden for safety */
}

.impact-grid{
    display:none; /* legacy grid markup no longer used, kept hidden for safety */
}
.impact-ticker{
    display:none; /* ticker markup superseded by dashboard design below */
}

/* -------------------------------------------------- */
/* IMPACT STAT STRIP — icons connected by a curved line */
/* -------------------------------------------------- */
.impact-stats-strip{
    position:relative;
    max-width:1280px;
    margin:0 auto 0;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}
.impact-connector-row{
    position:relative;
    max-width:1280px;
    margin:36px auto 40px;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
}
.impact-connector-row::before{
    content:"";
    position:absolute;
    left:6%; right:6%;
    top:50%;
    border-top:2px dashed #D8E3F0;
    transform:translateY(-50%);
    z-index:0;
}
.impact-connector-dot-wrap{
    position:relative;
    z-index:1;
    display:flex;
    justify-content:center;
}
.impact-connector-dot-el{
    width:12px; height:12px;
    border-radius:50%;
    background: var(--cat-color, var(--primary));
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--cat-color, var(--primary)) 16%, white);
}
.impact-stat-item{
    position:relative;
    z-index:1;
    display:flex;
    align-items:flex-start;
    gap:16px;
}
.impact-stat-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px; height:52px;
    min-width:52px;
    border-radius:50%;
    background: color-mix(in srgb, var(--cat-color, var(--primary)) 14%, white);
    color: var(--cat-color, var(--primary));
    font-size:20px;
}
.impact-stat-text{
    min-width:0;
}
.impact-stat-text h4{
    font-size:15px;
    font-weight:800;
    color: var(--text-primary);
    margin-bottom:12px;
}
.impact-stat-metrics{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.impact-stat-metric{
    padding-left:12px;
    border-left:2px solid color-mix(in srgb, var(--cat-color, var(--primary)) 30%, white);
}
.impact-stat-number{
    display:block;
    font-size:22px;
    font-weight:800;
    color: var(--cat-color, var(--primary));
    line-height:1;
    margin-bottom:5px;
}
.impact-stat-metric p{
    font-size:12.5px;
    line-height:1.5;
    color: var(--text-secondary);
    max-width:230px;
}


/* -------------------------------------------------- */
/* IMPACT DASHBOARD PANEL — 4 mini widgets              */
/* -------------------------------------------------- */
.impact-dashboard{
    max-width:1280px;
    margin:0 auto;
    background:#ffffff;
    border-radius:24px;
    box-shadow: 0 20px 50px rgba(15,23,42,.08);
    padding:36px 0;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
}
.impact-dash-col{
    display: flex;
    flex-direction: column;

    justify-content: space-between;
    padding: 0 32px;
    border-right: 1px solid #EEF2F7;
}
.impact-dash-col:last-child{
    border-right:none;
}
.impact-dash-head{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13.5px;
    font-weight:700;
    color: var(--text-primary);
    margin-bottom:14px;
}
.impact-dash-head i{
    font-size:12px;
    color: var(--text-muted);
}
.impact-dash-big-number{
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
    line-height:1;
}
.impact-dash-caption{
    font-size:12.5px;
    color: var(--text-muted);
    margin-top:14px;
}

/* Line chart */
.impact-line-chart{
    width:100%;
    height:auto;
    display:block;
}
.impact-chart-labels{
    display:flex;
    justify-content:space-between;
    font-size:11px;
    color: var(--text-muted);
    margin-top:6px;
    padding:0 2px;
}

/* Bar chart */
.impact-bar-chart{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:36px;
    height:130px;
    margin-top:6px;
}
.impact-bar-col{
    display:flex;
    flex-direction:column;
    align-items:center;
    height:100%;
    justify-content:flex-end;
    gap:8px;
}
.impact-bar-val{
    font-size:13px;
    font-weight:800;
    color: var(--text-primary);
}
.impact-bar{
    width:34px;
    border-radius:6px 6px 0 0;
}
.impact-bar-label{
    font-size:11.5px;
    color: var(--text-muted);
    margin-top:4px;
}

/* Format badges */
.impact-format-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:4px;
}
.format-badge{
    display:inline-flex;
    align-items:center;
    padding:8px 16px;
    border-radius:10px;
    font-size:13px;
    font-weight:800;
    background: color-mix(in srgb, var(--fb-color, var(--text-muted)) 12%, white);
    color: var(--fb-color, var(--text-secondary));
}
.format-badge-more{
    background:#F1F5F9;
    color: var(--text-muted);
}

/* Donut chart */
.impact-donut-wrap{
    position:relative;
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:4px;
}
.impact-donut{
    width:104px;
    height:104px;
    flex-shrink:0;
}
.impact-donut-group{
    position:relative;
    width:104px;
    height:104px;
}
.impact-donut-label{
    position:absolute;
    top:50%; left:52px;
    transform:translate(-50%,-50%);
    font-size:20px;
    font-weight:800;
    color: var(--text-primary);
}
.impact-donut-legend{
    display:flex;
    flex-direction:column;
    gap:10px;
    font-size:12.5px;
    color: var(--text-secondary);
}
.impact-donut-legend span{
    display:flex;
    align-items:center;
    gap:8px;
}
.impact-donut-legend i{
    width:9px; height:9px;
    border-radius:50%;
    display:inline-block;
}

/* -------------------------------------------------- */
/* IMPACT BOTTOM BAR — dark strip with 4 highlights     */
/* -------------------------------------------------- */
.impact-bottom-bar{
    max-width:1280px;
    margin:32px auto 0;
    background: linear-gradient(135deg, var(--dark) 0%, #0B2E63 60%, var(--navy-deep) 100%);
    border-radius:20px;
    padding:28px 40px;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
    box-shadow: 0 20px 40px rgba(6,28,63,.25);
}
.impact-bottom-item{
    display:flex;
    align-items:center;
    gap:14px;
}
.impact-bottom-item i{
    font-size:20px;
    flex-shrink:0;
}
.impact-bottom-item h5{
    font-size:14px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:2px;
}
.impact-bottom-item p{
    font-size:12px;
    color: rgba(255,255,255,.6);
}

.showcase{
    display:grid;
    grid-template-columns:48% 52%;
    min-height:100vh;
}

/* -------------------- */
/* LEFT PANEL CONTAINER */
/* -------------------- */
.left-panel{
    position:sticky;
    top:0;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px;
    background:#F8FAFC;
    border-right:1px solid #E5E7EB;
    overflow:hidden;
}

.left-panel::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(37,99,235,.18), transparent 70%);
    top:-150px;
    left:-120px;
    filter:blur(40px);
    animation: floatBlobA 13s ease-in-out infinite;
    will-change: transform;
}

.left-panel::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(59,130,246,.15), transparent 70%);
    bottom:-100px;
    right:-80px;
    filter:blur(30px);
    animation: floatBlobB 16s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatBlobA{
    0%,100%{ transform:translate(0,0) scale(1); }
    50%{ transform:translate(35px,25px) scale(1.12); }
}
@keyframes floatBlobB{
    0%,100%{ transform:translate(0,0) scale(1); }
    50%{ transform:translate(-30px,-20px) scale(1.18); }
}

.left-content{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:38px;
    width:100%;
    perspective:1000px;
}

/* -------------------- */
/* PREVIEW MEDIA GROUP  */
/* -------------------- */
.preview-media-group{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 38px;
    width:100%;
}

.preview-card{
    width:100%;
    max-width:650px;
    height: auto;
    border-radius:30px;
    overflow:hidden;
    transition:transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
    position:relative;
    transform-style:preserve-3d;
    cursor: zoom-in;

}
.preview-card:hover{
    box-shadow: 0 25px 70px rgba(15,23,42,.12);
}

.preview-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
    background:linear-gradient(115deg, transparent 25%, rgba(255,255,255,.28) 48%, transparent 70%);
    transform:translateX(-120%);
}
.preview-card:hover::before{
    animation:shineSweep 1.1s ease;
}
@keyframes shineSweep{
    to{ transform:translateX(120%); }
}

.preview-card video,
.preview-card img{
    width:40rem;
    height:40rem;
    object-fit:contain;
}

/* -------------------- */
/* RIGHT PANEL BASICS   */
/* -------------------- */
.right-panel{
    padding: 85px 100px 20vh;
    position:relative;
    overflow:hidden;
}

.right-panel::before{
    content:"";
    position:fixed;
    width:600px; height:600px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(59,130,235,.16), transparent 70%);
    top:8%;
    right:-220px;
    filter:blur(60px);
    animation: floatBlobC 18s ease-in-out infinite;
    pointer-events:none;
    z-index:0;
}
.right-panel::after{
    content:"";
    position:fixed;
    width:450px; height:450px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(139,180,255,.13), transparent 70%);
    bottom:12%;
    left:52%;
    filter:blur(50px);
    animation: floatBlobD 22s ease-in-out infinite;
    pointer-events:none;
    z-index:0;
}
@keyframes floatBlobC{
    0%,100%{ transform:translate(0,0) scale(1); }
    50%{ transform:translate(-40px,30px) scale(1.15); }
}
@keyframes floatBlobD{
    0%,100%{ transform:translate(30px,-25px) scale(1.1); }
}

/* BACKGROUND PARTICLES */
.ambient-particles{
    position:fixed;
    top:0;
    left:48%;
    right:0;
    bottom:0;
    z-index:0;
    pointer-events:none;
    overflow:hidden;
}
.particle{
    position:absolute;
    width:6px; height:6px;
    border-radius:50%;
    background:rgba(147,197,253,.55);
    box-shadow:0 0 12px rgba(147,197,253,.6);
    bottom:0;
    animation: particleFloat 18s linear infinite;
}
.p1{ left:8%;  animation-duration:16s; animation-delay:0s;   }
.p2{ left:22%; animation-duration:20s; animation-delay:-4s;  }
.p3{ left:45%; animation-duration:15s; animation-delay:-8s;  }
.p4{ left:63%; animation-duration:22s; animation-delay:-2s;  }
.p5{ left:78%; animation-duration:18s; animation-delay:-10s; }
.p6{ left:90%; animation-duration:17s; animation-delay:-6s;  }

@keyframes particleFloat{
    0%{ transform:translateY(110vh) scale(.6); opacity:0; }
    10%{ opacity:.8; }
    90%{ opacity:.6; }
    100%{ transform:translateY(-120vh) scale(1); opacity:0; }
}

.hero, .product{
    position:relative;
    z-index:1;
}

.hero{
    margin-bottom:60px;
}



.tag{
    display:inline-flex;
    padding:10px 20px;
    border-radius:999px;
    background:#EFF6FF;
    color:#2563EB;
    border:1px solid #BFDBFE;
    font-size:14px;
    font-weight:700;
    margin-bottom:28px;
    transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.tag:hover{
    transform:translateY(-2px) scale(1.04);
    box-shadow:0 8px 20px rgba(37,99,235,.18);
}
.hero h2{
    font-size:50px;
    line-height:1.05;
    padding-bottom:8px;
    letter-spacing:-2px;
    font-weight:800;
    margin-bottom:15px;
    max-width:750px;
    background:linear-gradient(120deg,#ffffff 40%,#8fb4ff 55%,#ffffff 70%);
    background-size:220% auto;
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:heroShine 6s linear infinite 1.4s;
}

@keyframes heroShine{
    0%{ background-position:0% 50%; }
    100%{ background-position:-220% 50%; }
}
.hero p{
    font-size:16px;
    color:#fff;
    line-height:1.9;
    max-width:700px;
    display: none;
}

/* -------------------- */
/* PRODUCT CONTENT CARD */
/* -------------------- */
.preview-heading{
    display:flex; align-items:center; gap:14px;
    width:100%; max-width:650px;
}
.preview-heading-num{
    font-size:16px; font-weight:800; color:#2563EB;
    background:#EFF6FF; border:1px solid #BFDBFE;
    padding:4px 10px; border-radius:999px;
}
.preview-heading h3{
    font-size:32px; font-weight:800; color:#0B2E63;
}

.product{
     background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    padding:60px;
    margin-bottom:80px;
    border-radius:30px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.20);

    --scale: 0.90;
    transform: scale(var(--scale));
    opacity: .45;
    filter: saturate(.7);
    transition:
        transform .5s cubic-bezier(.22,1,.36,1),
        opacity .5s ease,
        filter .5s ease,
        box-shadow .5s ease,
        border-color .3s ease;
}
.product:hover{
    border-color:#CBD5E1;
    box-shadow: 0 25px 60px rgba(15,23,42,.10);
    transform: translateY(-6px) scale(var(--scale));
}
.product.active{
    border:1px solid #ffffff;
    animation:activeGlow 3.2s ease-in-out infinite;
    --scale: 1;
    opacity: 1;
    filter: saturate(1);
}

@keyframes activeGlow{
    0%,100%{ box-shadow:0 30px 80px rgba(37,99,235,.12); }
    50%{ box-shadow:0 30px 95px rgba(37,99,235,.30); }
}

.index{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#EFF6FF;
    color:#2563EB;
    border:1px solid #BFDBFE;
    font-size:18px;
    font-weight:800;
    margin-bottom:30px;
    transition:transform .45s cubic-bezier(.34,1.56,.64,1), background .3s ease, color .3s ease;
}
.product:hover .index{
    transform:rotate(-8deg) scale(1.1);
    background:#2563EB;
    color:#fff;
}

.category-label{
    display:none;
}

.product h3{
    font-size:42px;
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:22px;
}
.product p{
    font-size:16px;
    color:#ffffffb3;
    line-height:1.9;
    margin-bottom:38px;
}

.features{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}
.features span{
    padding:12px 20px;
    background:#F8FAFC;
    border:1px solid #E2E8F0;
    border-radius:999px;
    color:#334155;
    font-weight:600;
    transition:transform .3s cubic-bezier(.34,1.56,.64,1), background .3s ease, color .3s ease, border-color .3s ease;
}
.features span:hover{
    background:#2563EB;
    color:white;
    border-color:#2563EB;
    transform:translateY(-4px) scale(1.06);
}

.product-header{
    display:flex;
    align-items:center;
    gap:24px;
    margin-bottom:30px;
}
.product-header .index{
    margin-bottom:0;
    flex-shrink:0;
}
.product-header h3{
    margin-bottom:0;
    font-size:40px;
    line-height:1.15;
}



.workflow-footer{
    display:flex; justify-content:space-between; align-items:center;
    width:100%; max-width:650px; padding:0 10px;
}
.workflow-label{
    font-size:13px; font-weight:700; color:#64748B;
}
.scroll-hint{
    font-size:12px; font-weight:600; color:#2563EB;
    display:flex; align-items:center; gap:6px;
    animation: hintBounce 1.6s ease-in-out infinite;
}
@keyframes hintBounce{
    0%,100%{ transform:translateY(0); opacity:.7; }
    50%{ transform:translateY(4px); opacity:1; }
}

/* IMAGE LIGHTBOX SYSTEM */
#imageLightbox, #videoLightbox{
    position:fixed; inset:0; z-index:10000;
    background:rgba(6,28,63,.92);
    display:none;
    align-items:center; justify-content:center;
    padding:40px;
    opacity:0;
}
#imageLightbox.open, #videoLightbox.open{
    display:flex;
}
#imageLightbox img, #videoLightbox video{
    max-width:90vw;
    max-height:85vh;
    border-radius:20px;
    box-shadow:0 30px 90px rgba(0,0,0,.5);
    object-fit:contain !important;
}
#imageLightboxClose, #videoLightboxClose{
    position:absolute;
    top:30px; right:40px;
    width:46px; height:46px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    font-size:20px;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    transition:background .25s ease, transform .25s ease;
}
#imageLightboxClose:hover, #videoLightboxClose:hover{
    background:rgba(255,255,255,.2);
    transform:scale(1.08);
}



/* ==========================================================================
   SYNCHRONIZED MEDIA BREAKPOINTS (100% Identical Viewports)
   ========================================================================== */

@media(max-width: 1440px){
    /*.intro-hero{*/
    /*    padding: 80px 60px 0;*/
    /*}*/
    .impact-section{
        padding: 70px 60px;
    }
    .impact-stats-strip{
        grid-template-columns:repeat(2, 1fr);
        gap:32px 24px;
    }
    .impact-connector-row{
        display:none;
    }
    .impact-dashboard{
        grid-template-columns:repeat(2, 1fr);
    }
    .impact-dash-col{
        border-right:none;
        border-bottom:1px solid #EEF2F7;
        padding-bottom:28px;
        margin-bottom:28px;
    }
    .impact-dash-col:nth-last-child(-n+2){
        border-bottom:none;
        margin-bottom:0;
        padding-bottom:0;
    }
    .impact-bottom-bar{
        grid-template-columns:repeat(2, 1fr);
    }
    .intro-hero-title{
        font-size: 40px;
    }
    .left-panel{
        padding: 85px 60px 50px 60px;
    }
    .left-content{
        gap: 40px;
    }
    .preview-media-group {
        gap: 20px;
    }
    .hero {
        margin-bottom: 45px;
    }
    .product{
        padding: 48px;
    }
    .product-header h3 {
        font-size: 35px;
    }
}

@media(max-width:1024px) {
    /*.intro-hero{*/
    /*    padding: 70px 38px 0;*/
    /*}*/
    .intro-hero-inner{
        grid-template-columns: 1fr;
    }
    .intro-hero-visual{
        display: none;
    }
    .intro-hero-title{
        max-width: 100%;
    }
    .impact-section{
        padding: 60px 38px;
    }
    .right-panel {
        padding: 70px 38px 20vh;
    }
    .left-panel {
        padding: 70px 38px;
    }

    .preview-card {
    width: 26rem;
    max-width: 26rem;
}

    .preview-card video,
    .preview-card img{
    width:26rem;
    height:26rem;
    object-fit:contain;
}

    .left-content{
        gap: 85px;
    }

}



@media(max-width:768px) {

    .intro-hero{
        padding: 130px 20px 0;
    }
    .intro-hero-title{
        font-size: 28px;
        letter-spacing: 0;
    }
    .intro-hero-text{
        font-size: 14px;
    }
    .intro-hero-cta{
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    .breadcrumb-row{
        margin-top: 30px;
        padding-bottom: 18px;
        font-size: 12px;
    }
    .impact-section{
        padding: 50px 20px;
    }
    .impact-header h2{
        font-size: 24px;
    }
    .impact-header p{
        font-size: 13px;
    }
    .impact-stats-strip{
        gap:24px;
        padding-bottom:32px;
    }
    .impact-dashboard{
        padding:24px 20px;
    }
    .impact-dash-col{
        padding:0 0 24px;
        margin-bottom:24px;
    }
    .impact-dash-col:last-child{
        padding-bottom:0;
        margin-bottom:0;
    }
    .impact-bottom-bar{
        padding:24px;
        gap:18px;
    }

    .showcase {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }
    .left-panel {
        position: sticky;
        top: 0;
        height: auto;
        min-height: auto;
        width: 100%;
        padding: 24px 16px;
        z-index: 10;
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }
    .left-content {
        gap: 28px;
    }
    .right-panel {
        width: 100%;
        position: relative;
        z-index: 1;
        padding: 30px 20px 20vh;
    }
    .product {
        width: 70%;
        margin-bottom: 22px;
        height: auto;
        padding: 22px 18px;
        --scale: 0.90;
        transform: scale(var(--scale));
        opacity: .45;
        filter: saturate(.7);
        transition:
            transform .5s cubic-bezier(.22,1,.36,1),
            opacity .5s ease,
            filter .5s ease,
            box-shadow .5s ease,
            border-color .3s ease;
    }
      .back-btn{
        display: none;
    }

    .preview-media-group {
        display: flex;
        flex-direction: row;
        gap: 85px;
        width: 100%;
    }

    .hero {
        margin-bottom: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .product p {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 18px !important;
    }

    /*.hero h1 {*/
    /*    font-size: 24px;*/
    /*    margin-bottom: 8px;*/
    /*    max-width: 100%;*/
    /*    letter-spacing: 0px !important;*/
    /*    background: linear-gradient(120deg, #ffffff 30%, #8fb4ff 50%, #ffffff 70%);*/
    /*    background-size: 220% auto;*/
    /*    -webkit-background-clip: text;*/
    /*    background-clip: text;*/
    /*    margin-left: auto;*/
    /*    margin-right: auto;*/
    /*}*/


    .hero p {
        font-size: 12px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .tag {
        padding: 4px 8px;
        margin-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
    }
    .index {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .features span {
        padding: 4px 8px;
        font-size: 10px;
    }
    .products-wrapper{
        display: block;
        align-items: center;
        justify-items: center;
    }
    .right-content {
        display: block;
        justify-items: center;
    }
    .back-btn{
        display: none;
    }

    .preview-heading {
        max-width: 710px;
    }
    .workflow-footer {
        max-width: 710px;
    }
    .product-header h3 {
        font-size: 18px;
    }

    .preview-card {
    width: 20rem;
    max-width: 20rem;
}

    .preview-card video,
    .preview-card img{
    width:20rem;
    height:19rem;
    object-fit:contain;
}
}

@media(max-width: 576px) {

     .loader-logo {
        font-size: 18px;
    }
    .loader-bar {
        width: 150px;
    }

    .preview-media-group {
        flex-direction: column;
        gap: 20px;
    }


    .scroll-hint {
        font-size: 10px;
    }

    .workflow-label {
        font-size: 10px;
    }

    .left-content {
        gap: 10px;
    }

    .preview-heading h3 {
        font-size: 20px !important;
    }

    .preview-heading-num {
        font-size: 14px;
        padding: 4px 6px;
    }

    .preview-heading {
        gap: 6px;
    }

    .left-panel {
        padding: 24px 12px;
    }

    .page-nav-toggle {
        padding: 0 !important;
        width: 35px !important;
        height: 32px !important;
        min-width: 31px !important;
        min-height: 23px !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .back-btn {
        top: 12px;
        left: 12px;
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .nav-toggle-text {
        display: none !important;
    }

    .page-nav-toggle .arrow-svg {
        display: none !important; /* Mobile par arrow icon ko poori tarah se hide karein */
    }

    .hamburger-icon {
        display: flex !important; /* 576px aur usse choti screen par hamesha dikhega */
        flex-direction: column;
        justify-content: space-between;
        width: 16px;
        height: 12px;
    }

    .product {
        width: 100% !important;
        padding: 22px 18px !important;
        margin-bottom: 20px !important;
        height: auto !important;
        min-height: auto !important;
    }
}

@media(max-width: 500px){

    .impact-dashboard{
        display: none;
    }
    .impact-stats-strip {
        grid-template-columns: repeat(1, 1fr);
    }
    .impact-stat-metrics{
        flex-direction: row;

    }
    .impact-stats-strip{
        gap: 30px;
    }
    .impact-stat-icon{
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

}


@media(max-width: 375px){

    .preview-heading h3 {
        font-size: 17px !important;
    }
    .impact-stat-item {
        flex-direction: column;
    }
        .impact-bottom-bar {
        grid-template-columns: repeat(1, 1fr);
    }

}
/* ============================================================
   WHITE CONTAINER WORKFLOW SECTION (FULL BG STYLE)
   ============================================================ */

/* Main outer wrapper spacing */
.python-workflow-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Dedicated Solid White Container */
.python-workflow-container {
    background: #ffffff !important;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Header Text (Dark colors for high readability on white) */
.python-workflow-container .workflow-header {
    text-align: center;
    margin-bottom: 30px;
}

.python-workflow-container .workflow-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #06A3DA;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.python-workflow-container .workflow-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #091E3E !important; /* Dark heading for white background */
    margin-bottom: 8px;
}

.python-workflow-container .workflow-header p {
    color: #475569 !important; /* Muted dark text */
    font-size: 14px;
    max-width: 620px;
    margin: 0 auto;
}

/* Grid Layout */
.python-workflow-container .workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Inner Step Cards (Light greyish/blue background inside white container) */
.python-workflow-container .workflow-step-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.python-workflow-container .workflow-step-card:hover {
    border-color: #06A3DA;
    box-shadow: 0 6px 20px rgba(6, 163, 218, 0.15);
}
/* Vertical lift on hover is handled by GSAP (services_image_pages.js)
   so no CSS transform here — avoids fighting with the JS tween. */

.python-workflow-container .step-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.python-workflow-container .step-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(6, 163, 218, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #06A3DA;
}

.python-workflow-container .step-badge {
    font-size: 12px;
    font-weight: 800;
    color: #06A3DA;
    background: #EEF9FF;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(6, 163, 218, 0.2);
}

.python-workflow-container .workflow-step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #091E3E !important;
    margin-bottom: 6px;
}

.python-workflow-container .workflow-step-card p {
    font-size: 13px;
    color: #64748B !important;
    line-height: 1.5;
}

/* Responsive View for Mobile */
@media (max-width: 768px) {
    .python-workflow-container {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .python-workflow-container .workflow-steps-grid {
        gap: 12px;
    }

    .python-workflow-container .workflow-header h2 {
        font-size: 22px;
    }
}


/* FAQ Section Styling */
    .faq-section {
        padding: 80px 20px;
        max-width: 1100px;
        margin: 0 auto;
    }
    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .faq-header h2 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 12px;
    }
    .faq-header p {
        color: #888;
        font-size: 1.05rem;
    }
    .faq-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .faq-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        overflow: hidden;
        transition: border-color 0.3s ease;
    }
    .faq-item:hover {
        border-color: var(--ais-accent);
    }
    .faq-question {
        width: 100%;
        padding: 22px 28px;
        background: none;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        cursor: pointer;
        outline: none;
    }
    .faq-icon {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
        color: var(--primary, #00d2ff);
    }
    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }
    .faq-answer {
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transition: grid-template-rows 0.35s ease;
        padding: 0 28px;
        background: rgba(0, 0, 0, 0.15);
    }
    .faq-answer > p {
        overflow: hidden;
        min-height: 0;
    }
    .faq-item.active .faq-answer {
        grid-template-rows: 1fr;
        padding: 20px 28px;
    }
    .faq-answer p {
        color: #b0b0b0;
        line-height: 1.6;
        font-size: 0.98rem;
        margin: 0;
    }

    /* ============================================================
   WHO WE HELP / TARGET INDUSTRIES SECTION
   ============================================================ */
.target-industries-section {
    position: relative;
    padding: 90px 100px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.target-industries-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.target-tag {
    background: rgba(6, 163, 218, 0.12);
    color: var(--blue-light);
    border-color: rgba(6, 163, 218, 0.35);
    margin-bottom: 16px;
}

.target-industries-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 14px;
}

.target-industries-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Grid Layout */
.target-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Industry Cards with Glassmorphism */
.industry-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--ind-accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(var(--ind-accent), 0.15);
}

.industry-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--ind-accent);
    margin-bottom: 22px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.industry-card:hover .industry-icon-wrapper {
    background: var(--ind-accent);
    color: #050d1f;
    transform: scale(1.05);
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.industry-list li {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.industry-list li i {
    font-size: 11px;
    color: var(--ind-accent);
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1200px) {
    .target-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .target-industries-section {
        padding: 60px 20px;
    }

    .target-industries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .target-industries-header h2 {
        font-size: 26px;
    }
}
/* ============================================================
   USE-CASE EXAMPLES SECTION STYLING
   (navy section background retained; cards restyled to white
   image-header cards to match the reference gallery design)
   ============================================================ */
.usecases-section {
    position: relative;
    padding: 90px 100px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.usecases-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.usecases-tag {
    background: rgba(6, 163, 218, 0.12);
    color: var(--blue-light);
    border-color: rgba(6, 163, 218, 0.35);
    margin-bottom: 16px;
}

.usecases-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 14px;
}

.usecases-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Grid Layout */
.usecases-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Decorative connector row between the image banners (desktop only) */
.usecases-connector {
    position: absolute;
    top: 172px;
    left: 0;
    right: 0;
    height: 1px;
    border-top: 2px dashed rgba(255, 255, 255, 0.18);
    z-index: 0;
    pointer-events: none;
}

.usecases-connector .uc-dot {
    position: absolute;
    top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.usecases-connector .uc-dot:nth-child(1) { left: calc(33.333% - 5px); }
.usecases-connector .uc-dot:nth-child(2) { left: calc(66.666% - 5px); }

/* White Card */
.usecase-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(3, 10, 30, 0.35);
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Hover lift + 3D tilt is handled by GSAP (see services_image_pages.js)
   so no CSS :hover transform here — avoids fighting with the JS tween. */

/* Theme accent colors per card */
.uc-theme-invoice { --uc-accent: #1E9E5A; --uc-accent-soft: rgba(30, 158, 90, 0.14); }
.uc-theme-medical { --uc-accent: #7C5CFC; --uc-accent-soft: rgba(124, 92, 252, 0.14); }
.uc-theme-legal   { --uc-accent: #E8933A; --uc-accent-soft: rgba(232, 147, 58, 0.16); }

/* Image-style banner */
.usecase-banner {
    position: relative;
    height: 170px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: color-mix(in srgb, var(--uc-accent) 40%, var(--navy));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform-origin: center;
    will-change: transform, clip-path;
}

/* Color-tinted overlay so the photo matches each card's theme and
   text/badge stay readable. If no image loads, this gradient alone
   still looks like a themed banner (safe fallback). */
.usecase-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
                color-mix(in srgb, var(--uc-accent) 55%, var(--dark)) 0%,
                color-mix(in srgb, var(--uc-accent) 15%, transparent) 60%,
                rgba(0, 0, 0, 0.35) 100%);
    opacity: 0.72;
}

.usecase-banner-icon {
    position: absolute;
    right: -18px;
    bottom: -22px;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.14);
    transform: rotate(-8deg);
    z-index: 1;
}

.usecase-banner .usecase-icon-badge {
    z-index: 2;
}

.usecase-icon-badge {
    position: relative;
    width: 64px;
    height: 64px;
    min-width: 64px;
    margin: 0 0 0px 24px;
    border-radius: 50%;
    background: var(--uc-accent-soft);
    border: 4px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--uc-accent);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Content area below the banner */
.usecase-card-content {
    padding: 44px 26px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.usecase-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 6px;
}

.usecase-subtitle {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 22px;
}

/* Body Content */
.usecase-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.usecase-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid #EDF1F7;
}

.usecase-block:first-child {
    border-top: none;
    padding-top: 0;
}

.block-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: 1.5px solid currentColor;
}

.problem-icon {
    color: #F2545B;
    background: rgba(242, 84, 91, 0.08);
}

.solution-icon,
.result-icon {
    color: #1E9E5A;
    background: rgba(30, 158, 90, 0.08);
}

.block-content {
    flex: 1;
}

.block-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.problem-block .block-label {
    color: #F2545B;
}

.solution-block .block-label,
.result-block .block-label {
    color: #1E9E5A;
}

.usecase-block p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Result row */
.result-text {
    font-size: 13.5px;
    color: #1E9E5A;
    font-weight: 700;
    line-height: 1.55;
    margin: 0;
}

.result-text strong {
    font-weight: 800;
}

/* Responsive Viewports */
@media (max-width: 1200px) {
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usecases-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .usecases-section {
        padding: 60px 20px;
    }

    .usecases-grid {
        gap: 24px;
    }

    .usecases-header h2 {
        font-size: 26px;
    }

    .usecase-banner-icon {
        font-size: 110px;
    }
}

@media (max-width: 425px) {
    .usecase-card-content {
        padding: 40px 20px 24px;
    }

    .usecase-icon-badge {
        margin-left: 18px;
    }
        .usecases-grid {
            grid-template-columns: 1fr;
    }
            .python-workflow-container .workflow-steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}