/* ============================================
   BR Creators — Professional IT Agency
   Clean, Structured, Reference-Inspired
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Backgrounds — Professional dark, NOT pitch black */
    --bg-1: #0f1117;
    --bg-2: #161822;
    --bg-3: #1c1f2e;
    --bg-card: #1a1d2b;
    --bg-card-h: #20243a;

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-h: rgba(255, 255, 255, 0.12);

    /* Brand Accent — Electric Blue (WCAG AA on dark bg) */
    --accent: #6b85ff;
    --accent-btn: #4a5ee0;
    --accent-btn-h: #5a6ee8;
    --accent-h: #829bff;
    --accent2: #818cf8;
    --accent-soft: rgba(107, 133, 255, 0.1);
    --accent-glow: rgba(107, 133, 255, 0.2);

    /* Secondary accent — Cyan */
    --secondary: #22d3ee;
    --secondary-soft: rgba(34, 211, 238, 0.08);

    /* Text (WCAG AA compliant on #0f1117) */
    --t1: #f8fafc;
    --t2: #cbd5e1;
    --t3: #94a3b8;
    --t4: #94a3b8;

    /* Success/Warning */
    --green: #22c55e;
    --amber: #f59e0b;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-d: 'Plus Jakarta Sans', 'Inter', sans-serif;

    /* Spacing & Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* Layout */
    --container: 1180px;
    --nav-h: 88px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================
   RESET
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--t2);
    background: var(--bg-1);
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s
}

ul,
ol {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-d);
    font-weight: 700;
    line-height: 1.2;
    color: var(--t1);
    letter-spacing: -0.02em
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem)
}

h3 {
    font-size: 1.25rem
}

h4 {
    font-size: 1.0625rem
}

.text-accent {
    color: var(--accent)
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .625rem 1.5rem;
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all .25s var(--ease);
    white-space: nowrap;
    cursor: pointer;
    border: none
}

.btn-primary {
    background: var(--accent-btn);
    color: #fff;
    box-shadow: 0 2px 8px rgba(74, 94, 224, .25)
}

.btn-primary:hover {
    background: var(--accent-btn-h);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(74, 94, 224, .35);
    color: #fff
}

.btn-outline {
    border: 1px solid var(--border-h);
    color: var(--t2);
    background: transparent
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft)
}

.btn-lg {
    padding: .75rem 2rem;
    font-size: .9375rem;
    border-radius: var(--radius-lg)
}

.btn-sm {
    padding: .4375rem 1rem;
    font-size: .8125rem
}

.btn .arrow {
    transition: transform .2s var(--ease)
}

.btn:hover .arrow {
    transform: translateX(4px)
}

/* =============================================
   SECTION SYSTEM
   ============================================= */
.section {
    padding: 5rem 0
}

.section-alt {
    background: var(--bg-2)
}

.section-header {
    margin-bottom: 3rem
}

.section-header.centered {
    text-align: center
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .75rem
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px
}

.section-title {
    margin-bottom: .75rem
}

.section-desc {
    font-size: .9375rem;
    color: var(--t2);
    max-width: 520px;
    line-height: 1.7
}

.section-header.centered .section-desc {
    margin: 0 auto
}

.section-header.centered .section-label {
    justify-content: center
}

/* =============================================
   NAVBAR — Premium, Glassmorphism Header
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: all .3s var(--ease)
}

.navbar.scrolled {
    background: rgb(15 17 23 / 52%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .3)
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-family: var(--font-d);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--t1);
    flex-shrink: 0;
    white-space: nowrap
}

.navbar-brand:hover {
    color: var(--t1)
}

.brand-logo {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain
}

.footer-logo {
    height: 44px
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: .125rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 50px;
    padding: .1875rem
}

.nav-link {
    display: block;
    padding: .375rem .875rem;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--t3);
    border-radius: 50px;
    transition: all .25s var(--ease);
    white-space: nowrap
}

.nav-link:hover {
    color: var(--t1)
}

.nav-link.active {
    color: var(--t1);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
}

.navbar-cta {
    margin-left: 1.25rem;
    flex-shrink: 0
}

.navbar-cta .btn {
    padding: .4375rem 1.125rem;
    font-size: .8125rem;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(79, 110, 247, .3);
    transition: all .25s var(--ease)
}

.navbar-cta .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(79, 110, 247, .45);
    color: #fff
}

/* Mobile Nav */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .5rem;
    cursor: pointer
}

.navbar-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--t2);
    border-radius: 2px;
    transition: .2s
}

.navbar-close {
    display: none
}

@media(max-width:768px) {
    .navbar-toggle {
        display: flex
    }

    .navbar-nav {
        background: none;
        border: none;
        border-radius: 0;
        padding: 0
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: var(--bg-2);
        flex-direction: column;
        align-items: stretch;
        padding: 4.5rem 1.5rem 2rem;
        transition: right .3s var(--ease);
        z-index: 1001;
        border-left: 1px solid var(--border)
    }

    .navbar-menu.open {
        right: 0
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .nav-link {
        padding: .75rem .875rem;
        font-size: .9375rem;
        width: 100%;
        border-radius: var(--radius)
    }

    .navbar-cta {
        margin: 1.25rem 0 0;
        width: 100%
    }

    .navbar-cta .btn {
        width: 100%;
        justify-content: center;
        padding: .625rem;
        border-radius: var(--radius)
    }

    .navbar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .6);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 990;
    }

    .navbar-overlay.active {
        opacity: 1;
        visibility: visible
    }

    .navbar-close {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: var(--t3);
        cursor: pointer;
        border-radius: var(--radius-sm)
    }

    .navbar-close:hover {
        background: rgba(255, 255, 255, .06);
        color: var(--t1)
    }
}

/* =============================================
   HERO — Split Layout + Dashboard Visual
   ============================================= */
.hero {
    padding: calc(var(--nav-h) + 4rem) 0 5rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-1)
}

/* Hero background effects */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(79, 110, 247, .12), transparent),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(139, 92, 246, .08), transparent);
    pointer-events: none
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-text {
    position: relative
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent-soft);
    border: 1px solid rgba(79, 110, 247, .15);
    color: var(--accent);
    padding: .3125rem 1rem;
    border-radius: 50px;
    font-size: .6875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: .02em;
    text-transform: uppercase
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(34, 197, 94, .5);
    animation: pulse-d 2s ease infinite
}

@keyframes pulse-d {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.hero h1 {
    margin-bottom: 1.25rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-size: clamp(2.25rem, 5vw, 3.5rem)
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--t3);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 440px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .75rem;
    color: var(--t4)
}

.hero-trust-avatars {
    display: flex
}

.hero-trust-avatars span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .5rem;
    font-weight: 700;
    color: #fff;
    margin-left: -7px;
    border: 2px solid var(--bg-1)
}

.hero-trust-avatars span:first-child {
    margin-left: 0
}

.hero-trust-avatars .a1 {
    background: #6366f1
}

.hero-trust-avatars .a2 {
    background: #ec4899
}

.hero-trust-avatars .a3 {
    background: #f59e0b
}

.hero-trust-avatars .a4 {
    background: #22c55e
}

/* Hero visual — Dashboard showcase */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px
}

.hero-dashboard {
    position: relative;
    width: 100%
}

.dash-main {
    background: var(--bg-2);
    border: 1px solid var(--border-h);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(255, 255, 255, .04),
        0 0 80px rgba(79, 110, 247, .06);
    transform: rotateY(-2deg) rotateX(1deg);
    transition: transform .6s var(--ease-out)
}

.dash-main:hover {
    transform: rotateY(0) rotateX(0)
}

.dash-header {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .02)
}

.dash-dots {
    display: flex;
    gap: 5px
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block
}

.dash-title {
    font-size: .6875rem;
    font-weight: 600;
    color: var(--t4);
    letter-spacing: .02em
}

.dash-body {
    padding: 1.25rem
}

/* Mini service cards inside dashboard */
.dash-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .625rem;
    margin-bottom: 1rem
}

.dash-svc-card {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .625rem .75rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s var(--ease)
}

.dash-svc-card:hover {
    background: rgba(255, 255, 255, .05);
    border-color: var(--border-h);
    transform: translateY(-2px)
}

.dash-svc-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    flex-shrink: 0
}

.dash-svc-card strong {
    display: block;
    font-size: .6875rem;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 1px
}

.dash-svc-card p {
    font-size: .5625rem;
    color: var(--t4);
    margin: 0;
    white-space: nowrap
}

/* Code snippet */
.dash-code {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-1)
}

.dash-code-header {
    display: flex;
    align-items: center;
    padding: .5rem .75rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .02)
}

.dash-code-lang {
    font-size: .5625rem;
    font-weight: 700;
    color: var(--t4);
    text-transform: uppercase;
    letter-spacing: .06em
}

.dash-code-body {
    padding: .875rem 1rem;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    font-size: .6875rem;
    line-height: 1.8;
    color: var(--t3)
}

.dash-code-body code {
    font-family: inherit;
    font-size: inherit
}

/* Code syntax colors */
.c-key {
    color: #c084fc
}

.c-var {
    color: var(--t1)
}

.c-fn {
    color: #38bdf8
}

.c-str {
    color: #4ade80
}

.c-bool {
    color: #fb923c
}

.c-cmt {
    color: var(--t4);
    font-style: italic
}

/* Floating stat cards */
.hero-float {
    position: absolute;
    background: rgba(22, 24, 34, .85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-h);
    border-radius: var(--radius-lg);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .625rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
    z-index: 3;
    animation: float-y 4s ease-in-out infinite
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.hero-float h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--t1);
    margin-bottom: 0;
    line-height: 1
}

.hero-float p {
    font-size: .625rem;
    color: var(--t2);
    margin: 0;
    white-space: nowrap;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em
}

.hf-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.hf-blue {
    background: var(--accent-soft);
    color: var(--accent)
}

.hf-green {
    background: rgba(34, 197, 94, .1);
    color: var(--green)
}

.hf-purple {
    background: rgba(139, 92, 246, .12);
    color: #a78bfa
}

.hero-float-1 {
    bottom: 2rem;
    left: -2rem;
    animation-delay: 0s
}

.hero-float-2 {
    top: -1rem;
    right: -2.5rem;
    animation-delay: 1.3s
}

.hero-float-3 {
    bottom: 5.5rem;
    right: -1rem;
    animation-delay: 2.6s
}

@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-subtitle {
        margin: 0 auto 2rem
    }

    .hero-actions {
        justify-content: center
    }

    .hero-trust {
        justify-content: center
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto
    }

    .dash-services {
        grid-template-columns: 1fr
    }

    .hero-float-1 {
        left: 0;
        bottom: 1rem
    }

    .hero-float-2 {
        right: 0
    }

    .hero-float-3 {
        display: none
    }
}

/* =============================================
   STATS STRIP — Horizontal counters
   ============================================= */
.stats-strip {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center
}

.stat-item h3 {
    font-family: var(--font-d);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: .25rem
}

.stat-item p {
    font-size: .75rem;
    color: var(--t4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em
}

@media(max-width:640px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem
    }
}

/* =============================================
   LOGO STRIP — Client logos
   ============================================= */
.logo-strip {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border)
}

.logo-strip-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap
}

.logo-strip-label {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--t2);
    white-space: nowrap
}

.client-logo {
    font-family: var(--font-d);
    font-size: 1rem;
    font-weight: 700;
    color: var(--t2);
    opacity: .65;
    letter-spacing: -.01em;
    transition: opacity .3s
}

.client-logo:hover {
    opacity: 1
}

/* =============================================
   SERVICES — Premium Grid + Glow Background
   ============================================= */
.services-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-1)
}

/* Background orbs */
.svc-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: .35
}

.svc-bg-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 110, 247, .25), transparent 70%);
    top: -10%;
    right: -5%
}

.svc-bg-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, .2), transparent 70%);
    bottom: -10%;
    left: -5%
}

.svc-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none
}

/* Services grid — 5 columns */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1
}

/* Service card */
.svc-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px)
}

/* Top accent line */
.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease)
}

/* Bottom glow on hover */
.svc-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 80%;
    height: 40px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    filter: blur(20px);
    transition: opacity .4s var(--ease);
    pointer-events: none
}

.svc-card:hover {
    border-color: var(--border-h);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .25)
}

.svc-card:hover::before {
    transform: scaleX(1)
}

.svc-card:hover::after {
    opacity: .15
}

/* Icon */
.svc-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all .3s var(--ease);
    background: var(--accent-soft);
    border: 1px solid rgba(79, 110, 247, .12)
}

.svc-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    transition: stroke .3s
}

.svc-card:hover .svc-card-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(79, 110, 247, .2)
}

.svc-card h3 {
    font-size: .875rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--t1)
}

.svc-card p {
    font-size: .75rem;
    color: var(--t3);
    line-height: 1.6
}

/* ---- Per-card accent colors via data-accent ---- */
.svc-card[data-accent="pink"]::before,
.svc-card[data-accent="pink"]::after {
    background: #ec4899
}

.svc-card[data-accent="pink"] .svc-card-icon {
    background: rgba(236, 72, 153, .1);
    border-color: rgba(236, 72, 153, .15)
}

.svc-card[data-accent="pink"] .svc-card-icon svg {
    stroke: #ec4899
}

.svc-card[data-accent="cyan"]::before,
.svc-card[data-accent="cyan"]::after {
    background: #22d3ee
}

.svc-card[data-accent="cyan"] .svc-card-icon {
    background: rgba(34, 211, 238, .1);
    border-color: rgba(34, 211, 238, .15)
}

.svc-card[data-accent="cyan"] .svc-card-icon svg {
    stroke: #22d3ee
}

.svc-card[data-accent="blue"]::before,
.svc-card[data-accent="blue"]::after {
    background: #4f6ef7
}

.svc-card[data-accent="blue"] .svc-card-icon {
    background: rgba(79, 110, 247, .1);
    border-color: rgba(79, 110, 247, .15)
}

.svc-card[data-accent="blue"] .svc-card-icon svg {
    stroke: #4f6ef7
}

.svc-card[data-accent="purple"]::before,
.svc-card[data-accent="purple"]::after {
    background: #8b5cf6
}

.svc-card[data-accent="purple"] .svc-card-icon {
    background: rgba(139, 92, 246, .1);
    border-color: rgba(139, 92, 246, .15)
}

.svc-card[data-accent="purple"] .svc-card-icon svg {
    stroke: #8b5cf6
}

.svc-card[data-accent="green"]::before,
.svc-card[data-accent="green"]::after {
    background: #22c55e
}

.svc-card[data-accent="green"] .svc-card-icon {
    background: rgba(34, 197, 94, .1);
    border-color: rgba(34, 197, 94, .15)
}

.svc-card[data-accent="green"] .svc-card-icon svg {
    stroke: #22c55e
}

.svc-card[data-accent="amber"]::before,
.svc-card[data-accent="amber"]::after {
    background: #f59e0b
}

.svc-card[data-accent="amber"] .svc-card-icon {
    background: rgba(245, 158, 11, .1);
    border-color: rgba(245, 158, 11, .15)
}

.svc-card[data-accent="amber"] .svc-card-icon svg {
    stroke: #f59e0b
}

.svc-card[data-accent="rose"]::before,
.svc-card[data-accent="rose"]::after {
    background: #f43f5e
}

.svc-card[data-accent="rose"] .svc-card-icon {
    background: rgba(244, 63, 94, .1);
    border-color: rgba(244, 63, 94, .15)
}

.svc-card[data-accent="rose"] .svc-card-icon svg {
    stroke: #f43f5e
}

.svc-card[data-accent="teal"]::before,
.svc-card[data-accent="teal"]::after {
    background: #14b8a6
}

.svc-card[data-accent="teal"] .svc-card-icon {
    background: rgba(20, 184, 166, .1);
    border-color: rgba(20, 184, 166, .15)
}

.svc-card[data-accent="teal"] .svc-card-icon svg {
    stroke: #14b8a6
}

.svc-card[data-accent="sky"]::before,
.svc-card[data-accent="sky"]::after {
    background: #38bdf8
}

.svc-card[data-accent="sky"] .svc-card-icon {
    background: rgba(56, 189, 248, .1);
    border-color: rgba(56, 189, 248, .15)
}

.svc-card[data-accent="sky"] .svc-card-icon svg {
    stroke: #38bdf8
}

.svc-card[data-accent="violet"]::before,
.svc-card[data-accent="violet"]::after {
    background: #a78bfa
}

.svc-card[data-accent="violet"] .svc-card-icon {
    background: rgba(167, 139, 250, .1);
    border-color: rgba(167, 139, 250, .15)
}

.svc-card[data-accent="violet"] .svc-card-icon svg {
    stroke: #a78bfa
}

@media(max-width:1100px) {
    .services-grid-v2 {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .services-grid-v2 {
        grid-template-columns: 1fr
    }
}

/* =============================================
   PROCESS — Animated Steps + Gradient Bg
   ============================================= */
.process-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-1);
    /* Ensures consistent dark bg */
}

/* Background effects specific to Process */
.proc-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(79, 110, 247, .08), transparent 60%),
        radial-gradient(circle at 10% 90%, rgba(139, 92, 246, .05), transparent 50%);
    pointer-events: none
}

.proc-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none
}

/* Track Container */
.process-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 4rem;
    padding: 0 1rem
}

/* Connecting Line */
.proc-connector {
    position: absolute;
    top: 40px;
    /* Align with circle center */
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border);
    z-index: 0
}

.proc-connector-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #8b5cf6);
    box-shadow: 0 0 10px rgba(79, 110, 247, .5);
    animation: proc-line 4s ease-out forwards
}

@keyframes proc-line {
    0% {
        width: 0%
    }

    100% {
        width: 100%
    }
}

/* Step Item */
.proc-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    padding: 0 1rem
}

/* Step Circle */
.proc-step-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-1);
    border-radius: 50%;
    transition: transform .3s var(--ease)
}

.proc-step-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    opacity: 0;
    transition: opacity .3s
}

.proc-step:hover .proc-step-glow {
    opacity: 1
}

/* SVG Ring */
.proc-step-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    transition: all .3s
}

.proc-step:hover .proc-step-ring {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(79, 110, 247, .3);
    transform: scale(1.1)
}

.proc-step-ring svg {
    width: 32px;
    height: 32px;
    stroke: var(--t2);
    transition: stroke .3s
}

.proc-step:hover .proc-step-ring svg {
    stroke: var(--accent)
}

/* Number Badge */
.proc-step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    color: var(--t2);
    font-size: .6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s
}

.proc-step:hover .proc-step-num {
    background: var(--accent-btn);
    color: #fff;
    border-color: var(--accent-btn)
}

/* Content */
.proc-step-content h4 {
    font-size: 1.125rem;
    color: var(--t1);
    margin-bottom: .75rem;
    font-weight: 700
}

.proc-step-content p {
    font-size: .8125rem;
    color: var(--t2);
    line-height: 1.6
}

/* Delays for steps appearance */
.proc-step:nth-child(2) {
    animation-delay: 0.1s;
}

.proc-step:nth-child(3) {
    animation-delay: 0.5s;
}

.proc-step:nth-child(4) {
    animation-delay: 1.0s;
}

.proc-step:nth-child(5) {
    animation-delay: 1.5s;
}

/* +1 because connector is child 1 */

/* Responsive Process */
@media(max-width: 768px) {
    .process-track {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        padding-left: 2rem;
        margin-top: 2rem
    }

    .proc-connector {
        top: 20px;
        left: 2rem;
        /* Align with circle center */
        right: auto;
        bottom: 20px;
        width: 2px;
        height: auto
    }

    .proc-connector-fill {
        width: 100%;
        height: 0%;
        animation: proc-line-v 4s ease-out forwards
    }

    @keyframes proc-line-v {
        0% {
            height: 0%
        }

        100% {
            height: 100%
        }
    }

    .proc-step {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        text-align: left;
        padding: 0;
        width: 100%
    }

    .proc-step-circle {
        margin: 0;
        width: 60px;
        height: 60px;
        flex-shrink: 0
    }

    .proc-step-ring svg {
        width: 24px;
        height: 24px
    }
}



/* =============================================
   PORTFOLIO — Image-first Cards
   ============================================= */
/* =============================================
   PORTFOLIO — CSS UI Mockups
   ============================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    display: block;
    background: var(--bg-card);
    position: relative
}

.portfolio-card:hover {
    border-color: var(--border-h);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .3)
}

.portfolio-image {
    aspect-ratio: 16/10;
    background: var(--bg-2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border)
}

/* --- Project Mockups (CSS Only) --- */
.project-mockup {
    width: 80%;
    height: 80%;
    position: relative;
    transition: transform .5s var(--ease)
}

.portfolio-card:hover .project-mockup {
    transform: scale(1.05) translateY(-5px)
}

/* Dashboard Mockup */
.pm-dashboard {
    background: #1e293b;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    overflow: hidden;
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: 20px 1fr
}

.pm-sidebar {
    grid-row: 1 / -1;
    background: rgba(255, 255, 255, .05);
    border-right: 1px solid rgba(255, 255, 255, .05)
}

.pm-header {
    background: rgba(255, 255, 255, .03);
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.pm-body {
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.pm-card-1 {
    grid-column: span 2;
    height: 30px;
    background: linear-gradient(90deg, #4f6ef7, #8b5cf6);
    border-radius: 4px;
    opacity: .8
}

.pm-card-2 {
    height: 40px;
    background: rgba(255, 255, 255, .05);
    border-radius: 4px
}

.pm-card-3 {
    height: 40px;
    background: rgba(255, 255, 255, .05);
    border-radius: 4px
}

/* Mobile Mockup */
.pm-mobile {
    width: 45%;
    background: #0f172a;
    border-radius: 12px;
    border: 2px solid #334155;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    overflow: hidden;
    position: relative
}

.pm-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 10px;
    background: #334155;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 2
}

.pm-screen {
    padding: 20px 10px 10px
}

.pm-hero {
    height: 50px;
    background: #ec4899;
    border-radius: 6px;
    margin-bottom: 10px;
    opacity: .8
}

.pm-row {
    display: flex;
    gap: 6px;
    margin-bottom: 6px
}

.pm-row span {
    height: 30px;
    flex: 1;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px
}

/* Analytics Mockup */
.pm-analytics {
    background: #111827;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 20px 20px
}

.pm-graph {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    position: relative
}

.pm-bar-1 {
    width: 100%;
    height: 40%;
    background: #22c55e;
    border-radius: 2px 2px 0 0;
    opacity: .7;
    animation: barGrow 2s infinite alternate
}

.pm-bar-2 {
    width: 100%;
    height: 70%;
    background: #22c55e;
    border-radius: 2px 2px 0 0;
    opacity: .8;
    animation: barGrow 2.5s infinite alternate-reverse
}

.pm-bar-3 {
    width: 100%;
    height: 55%;
    background: #22c55e;
    border-radius: 2px 2px 0 0;
    opacity: .6;
    animation: barGrow 2.2s infinite alternate
}

@keyframes barGrow {
    to {
        transform: scaleY(1.2);
        transform-origin: bottom
    }
}

/* --- Portfolio Content --- */
.portfolio-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: .25rem .75rem;
    border-radius: 50px;
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 1px solid rgba(255, 255, 255, .1)
}

.portfolio-body {
    padding: 1.5rem
}

.portfolio-client {
    font-size: .625rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .5rem
}

.portfolio-body h3 {
    font-size: 1.125rem;
    margin-bottom: .5rem;
    color: var(--t1)
}

.portfolio-body p {
    color: var(--t3);
    font-size: .8125rem;
    line-height: 1.6;
    margin-bottom: 1rem
}

.portfolio-techs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.tech-tag {
    font-size: .5625rem;
    font-weight: 600;
    color: var(--t3);
    padding: .25rem .5rem;
    background: rgba(255, 255, 255, .04);
    border-radius: 4px;
    border: 1px solid var(--border);
    text-transform: uppercase
}


/* =============================================
   TESTIMONIALS — Carousel (Trendy)
   ============================================= */
.tm-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-1)
}

/* Background Elements */
.tm-bg-map {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: .3;
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black, transparent);
    pointer-events: none
}

.tm-bg-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(79, 110, 247, .08), transparent 60%);
    pointer-events: none
}

.tm-quote-icon {
    position: absolute;
    top: -2rem;
    right: 5%;
    font-family: serif;
    font-size: 15rem;
    line-height: 1;
    color: var(--accent);
    opacity: .05;
    pointer-events: none
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 3rem
}

.testimonial-track-container {
    overflow: hidden;
    width: 100%
}

.testimonial-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    width: 100%
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 1rem .5rem
}

/* Card Style */
.tm-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2)
}

.tm-rating {
    color: var(--amber);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px
}

.tm-text {
    font-size: 1.125rem;
    color: var(--t1);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem
}

.tm-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.tm-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-btn);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(74, 94, 224, .4)
}

.tm-info {
    text-align: left
}

.tm-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--t1)
}

.tm-info p {
    font-size: .8125rem;
    color: var(--t2)
}

/* Navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    z-index: 10
}

.slider-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(79, 110, 247, .3)
}

.slider-btn.prev {
    left: -1rem
}

.slider-btn.next {
    right: -1rem
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-top: 2rem
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all .3s
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent-glow)
}

@media(max-width: 600px) {
    .testimonial-carousel {
        padding: 0
    }

    .slider-btn {
        display: none
    }

    /* Hide arrows on small screens, rely on swipe/dots */
    .tm-card {
        padding: 1.5rem
    }

    .tm-text {
        font-size: 1rem
    }
}

/* =============================================
   BLOG — Gradient Art Cards
   ============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .35s var(--ease);
    display: block;
    background: var(--bg-card);
    display: flex;
    flex-direction: column
}

.blog-card:hover {
    border-color: var(--border-h);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .25)
}

.blog-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative
}

.blog-art {
    width: 100%;
    height: 100%;
    transition: transform .6s var(--ease-out)
}

.blog-card:hover .blog-art {
    transform: scale(1.1)
}

.ba-1 {
    background: linear-gradient(135deg, #1e1b4b, #4338ca, #6366f1)
}

.ba-2 {
    background: linear-gradient(45deg, #3730a3, #c026d3, #f5d0fe)
}

.ba-3 {
    background: linear-gradient(to bottom, #0f172a, #0e7490, #22d3ee)
}

.blog-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .6875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .75rem
}

.blog-body h3 {
    font-size: 1.125rem;
    margin-bottom: .5rem;
    line-height: 1.4;
    color: var(--t1);
    transition: color .2s
}

.blog-card:hover h3 {
    color: var(--accent)
}

.blog-body p {
    color: var(--t3);
    font-size: .875rem;
    line-height: 1.6
}


@media(max-width:900px) {

    .portfolio-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {

    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr
    }
}

/* =============================================
   BACKGROUND ORBS (New)
   ============================================= */
.sec-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .4;
    pointer-events: none;
    z-index: 1
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #4f6ef7;
    top: -10%;
    left: -5%
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: #ec4899;
    bottom: 10%;
    right: -5%
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    top: 20%;
    left: 30%;
    opacity: .2
}

.orb-4 {
    width: 200px;
    height: 200px;
    background: #06b6d4;
    bottom: -10%;
    left: 10%
}

/* =============================================
   FAQ SECTION (Grid Layout)
   ============================================= */
.faq-section {
    position: relative;
    background: var(--bg-1)
}

.faq-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s;
    height: fit-content
}

.faq-item.active {
    border-color: var(--accent);
    background: var(--bg-card-h)
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none
}

.faq-question h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--t1);
    transition: color .3s;
    line-height: 1.4
}

.faq-item.active .faq-question h4 {
    color: var(--accent)
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--t3);
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 1rem
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    transition: max-height .3s cubic-bezier(1, 0, 1, 0);
    max-height: 200px
}

.faq-answer p {
    color: var(--t3);
    font-size: .9375rem;
    line-height: 1.6;
    margin: 0
}

@media(max-width: 768px) {
    .faq-grid-v2 {
        grid-template-columns: 1fr
    }
}

/* =============================================
   COMPACT CTA
   ============================================= */
.cta-compact {
    padding: 2rem 0;
    position: relative;
    overflow: hidden
}

.cta-box {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    border-radius: var(--radius-lg);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2)
}

.cta-text {
    flex: 1;
    max-width: 600px;
    z-index: 2
}

.cta-text h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem
}

.cta-text p {
    color: rgba(255, 255, 255, 1);
    margin: 0;
    font-size: 1.125rem
}

.cta-actions-right {
    display: flex;
    gap: 1rem;
    z-index: 2;
    flex-shrink: 0
}

.cta-bg-glow-left {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(100px);
    opacity: 0.2;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
}

@media(max-width: 900px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 1.5rem
    }

    .cta-text {
        margin-bottom: 0;
        width: 100%
    }

    .cta-actions-right {
        justify-content: center;
        width: 100%
    }

    .cta-actions-right .btn {
        width: 100%;
        justify-content: center
    }
}

/* =============================================
   RESPONSIVE FIXES
   ============================================= */
@media(max-width: 768px) {
    .process-track {
        padding-left: 0 !important
    }

    .proc-connector {
        left: 29px !important
    }

    .cta-content h2 {
        font-size: 1.75rem
    }
}

/* =============================================
   PREMIUM FOOTER
   ============================================= */
.footer-premium {
    background: #0b0f19;
    /* Very dark blue/black */
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
    color: var(--t3);
    border-top: 1px solid var(--border)
}

.footer-orb {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 110, 247, .1), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    margin-bottom: 5rem
}

/* Brand Col */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.footer-logo {
    font-family: var(--font-d);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1
}

.footer-brand-col p {
    max-width: 300px;
    line-height: 1.6;
    font-size: 1rem;
    color: var(--t2)
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: .5rem
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all .3s
}

.social-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px)
}

.social-btn svg {
    width: 20px;
    height: 20px
}

/* Nav Cols */
.footer-nav-col h4,
.footer-newsletter-col h4 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600
}

.footer-nav-col ul {
    list-style: none;
    padding: 0
}

.footer-nav-col li {
    margin-bottom: .75rem
}

.footer-nav-col a {
    color: var(--t2);
    transition: all .2s;
    display: inline-block
}

.footer-nav-col a:hover {
    color: var(--accent);
    transform: translateX(5px)
}

/* Newsletter */
.footer-newsletter-col p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--t2)
}

.footer-form {
    display: flex;
    position: relative
}

.footer-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: .875rem 3rem .875rem 1rem;
    color: #fff;
    outline: none;
    transition: all .3s
}

.footer-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08)
}

.footer-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: var(--accent-btn);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s
}

.footer-form button:hover {
    background: var(--accent-h)
}

/* Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
    font-size: 0.875rem
}

.footer-bottom .heart {
    color: #ef4444;
    animation: pulse 2s infinite
}

.legal-links {
    display: flex;
    gap: 2rem
}

.legal-links a {
    color: var(--t2);
    transition: color .2s
}

.legal-links a:hover {
    color: var(--accent)
}

/* Watermark */
.footer-watermark {
    position: absolute;
    bottom: -2%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    font-family: var(--font-d);
    user-select: none
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

/* Responsive */
@media(max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem
    }
}

@media(max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }

    .footer-watermark {
        font-size: 18vw;
        bottom: 5%
    }
}

/* =============================================
   WHATSAPP
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999
}

.whatsapp-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
    transition: all .25s
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4)
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.fade-in-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0)
}

/* =============================================
   PAGE HEADER — subpages
   ============================================= */
.page-header {
    background: var(--bg-1);
    padding: calc(var(--nav-h) + 3rem) 0 2.5rem;
    border-bottom: 1px solid var(--border)
}

.page-header-content {
    max-width: 600px
}

.page-header h1 {
    margin-bottom: .75rem;
    font-size: clamp(1.75rem, 4vw, 2.75rem)
}

.page-header p {
    color: var(--t3);
    font-size: .9375rem;
    line-height: 1.7
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .6875rem;
    color: var(--t4);
    margin-bottom: 1.25rem
}

.breadcrumb a {
    color: var(--t3)
}

.breadcrumb a:hover {
    color: var(--accent)
}

/* =============================================
   GENERIC GRIDS & CARDS (for other pages)
   ============================================= */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 3rem;
    align-items: start
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all .3s var(--ease)
}

.card:hover {
    border-color: var(--border-h);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .2)
}

.card h3 {
    margin-bottom: .5rem;
    font-size: 1.0625rem
}

.card p {
    color: var(--t3);
    font-size: .8125rem;
    line-height: 1.6
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: .875rem
}

.card-link:hover {
    color: var(--accent-h)
}

@media(max-width:900px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

@media(max-width:500px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr
    }
}

/* Forms */
.form-group {
    margin-bottom: 1.125rem
}

.form-label {
    display: block;
    font-size: .6875rem;
    font-weight: 600;
    color: var(--t2);
    margin-bottom: .375rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.form-control {
    width: 100%;
    padding: .625rem .875rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--t1);
    font-size: .875rem;
    transition: all .2s;
    outline: none
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft)
}

textarea.form-control {
    min-height: 120px;
    resize: vertical
}

.form-error {
    color: #fb7185;
    font-size: .6875rem;
    margin-top: .25rem
}

.alert-success {
    background: rgba(34, 197, 94, .06);
    border: 1px solid rgba(34, 197, 94, .12);
    color: var(--green);
    padding: .875rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-size: .875rem
}

/* Careers */
.career-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all .3s
}

.career-card:hover {
    border-color: var(--border-h);
    background: var(--bg-card-h)
}

.career-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: .75rem
}

.career-header h3 {
    font-size: 1.0625rem
}

.career-tags {
    display: flex;
    gap: .3125rem;
    flex-wrap: wrap
}

.career-tag {
    font-size: .5625rem;
    font-weight: 600;
    color: var(--t3);
    padding: .1875rem .5rem;
    background: rgba(255, 255, 255, .04);
    border-radius: 50px;
    border: 1px solid var(--border)
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
}

.stat-card {
    text-align: center;
    padding: 1.5rem
}

.stat-number {
    font-family: var(--font-d);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: .375rem
}

.stat-label {
    font-size: .75rem;
    color: var(--t4);
    font-weight: 500
}

@media(max-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* Values */
.value-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all .3s
}

.value-card:hover {
    border-color: var(--border-h);
    background: var(--bg-card-h)
}

.value-icon {
    font-size: 1.5rem;
    margin-bottom: .75rem
}

.value-card h4 {
    margin-bottom: .375rem;
    font-size: .9375rem
}

.value-card p {
    color: var(--t3);
    font-size: .8125rem;
    line-height: 1.55
}

/* Contact */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s
}

.contact-info-card:hover {
    border-color: var(--border-h);
    background: var(--bg-card-h)
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    border: 1px solid rgba(79, 110, 247, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-info-icon svg {
    stroke: var(--accent);
    fill: none;
    stroke-width: 2
}

.contact-info-card h4 {
    font-size: .8125rem;
    margin-bottom: 2px
}

.contact-info-card p {
    font-size: .75rem;
    color: var(--t3)
}

/* Blog single */
.blog-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--t2)
}

.blog-content h2,
.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: .75rem
}

.blog-content p {
    margin-bottom: 1.25rem
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem
}

.blog-content li {
    list-style: disc;
    margin-bottom: .375rem
}

.blog-content a {
    color: var(--accent);
    text-decoration: underline
}

.blog-content a:hover {
    color: var(--accent-h)
}

.blog-content code {
    background: rgba(255, 255, 255, .05);
    padding: 2px 5px;
    border-radius: 4px;
    font-size: .9em;
    color: var(--accent)
}

.blog-content pre {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    overflow-x: auto;
    margin-bottom: 1.25rem
}

.blog-content pre code {
    background: none;
    padding: 0;
    font-size: .8125rem
}

.blog-content img {
    border-radius: var(--radius);
    margin: 1.5rem 0
}

.blog-content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    color: var(--t3);
    font-style: italic
}

.service-detail-content {
    color: var(--t2);
    line-height: 1.8
}

/* Pagination */
nav[role="navigation"] {
    text-align: center;
    margin-top: 2rem
}

nav[role="navigation"] span,
nav[role="navigation"] a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 .625rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .8125rem;
    color: var(--t3);
    transition: all .2s;
    margin: 0 2px
}

nav[role="navigation"] a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft)
}

/* Separator */
.section-divider {
    height: 1px;
    background: var(--border);
    margin: 0
}

/* =============================================
   FOOTER LOGO OVER RIDE
   ============================================= */
.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    margin-bottom: 0
}

.footer-brand-link {
    display: inline-block;
    width: fit-content;
    text-decoration: none
}

/* =============================================
   ABOUT PAGE REDESIGN
   ============================================= */

/* HERO */
.about-hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.1), transparent 40%);
}

.about-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--t2);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, var(--accent), var(--accent-h));
    opacity: 0.1;
    filter: blur(40px);
    z-index: 0;
    animation: float 10s ease-in-out infinite;
}

.fs-1 {
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    animation-delay: 0s;
}

.fs-2 {
    bottom: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    animation-delay: -5s;
    background: var(--secondary);
}

@keyframes float {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0);
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: translate(-20px, 20px);
    }
}

/* TIMELINE / STORY */
.story-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--border);
}

.story-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.story-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    background: var(--bg);
    border: 3px solid var(--accent);
    border-radius: 50%;
    z-index: 2;
    transition: all .3s;
}

.story-item:hover::before {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.story-year {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

/* INFOGRAPHIC GRID (Why Choose Us) */
.info-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-dim);
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform .4s;
}

.info-card:hover::after {
    transform: scaleX(1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* STATS RINGS */
.stat-ring-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--accent);
    border-right-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.2);
    position: relative;
}

.stat-ring::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

/* DISCOVERY MAP (Brand Section) */
/* DISCOVERY MAP (Professional Process) */
.roadmap-container {
    padding: 3rem 0;
    position: relative;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    position: relative;
}

.process-step {
    position: relative;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    z-index: 1;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 50%;
    color: var(--accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step:hover .process-icon {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.process-step p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--t3);
    margin: 0;
}

/* Arrow connectors between steps */
.process-step::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--t4);
    opacity: 0.5;
    z-index: 2;
}

.process-step:last-child::after {
    display: none;
}

/* GUIDING PRINCIPLES (Professional Grid) */
.values-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card-pro {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.value-card-pro:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.value-number-large {
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    transition: all 0.3s;
    pointer-events: none;
}

.value-card-pro:hover .value-number-large {
    -webkit-text-stroke: 1px rgba(79, 70, 229, 0.15);
    transform: scale(1.1);
}

.value-card-pro h4 {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #fff;
}

.value-card-pro p {
    position: relative;
    z-index: 2;
    color: var(--t2);
    margin: 0;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }

    .process-step::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -1.5rem;
        transform: translateX(50%);
        font-size: 1.25rem;
    }

    .values-grid-pro {
        grid-template-columns: 1fr;
    }
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .values-alt-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .values-alt-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }

    .hero-sub {
        margin: 0 auto 2rem;
    }

    .story-timeline {
        border-left: none;
        padding-left: 0;
    }

    .story-item {
        padding-left: 0;
        border-left: 2px solid var(--border);
        padding-left: 1.5rem;
        margin-left: 0.5rem;
    }

    .story-item::before {
        left: -0.65rem;
        width: 0.8rem;
        height: 0.8rem;
    }
}

/* ============================================================
   FINANCIAL SERVICES — PREMIUM UI
   ============================================================ */

/* ---------- HERO ---------- */
.fin-hero,
.fin-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 10rem 0 5rem;
}

.fin-detail-hero {
    padding: 9rem 0 4rem;
}

.fin-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fin-hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
}

.fin-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.fin-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: finOrbFloat 8s ease-in-out infinite;
}

.fin-hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 70%);
    top: -100px;
    right: -100px;
}

.fin-hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -4s;
}

@keyframes finOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.fin-hero-content,
.fin-detail-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.fin-hero-badge,
.fin-detail-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.fin-hero-content h1,
.fin-detail-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.fin-hero-desc {
    font-size: 1.15rem;
    color: var(--t2);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.fin-detail-hero-content p {
    font-size: 1.1rem;
    color: var(--t2);
    line-height: 1.7;
    max-width: 90%;
    margin: 0 auto;
}

.fin-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- HERO STATS ---------- */
.fin-hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.fin-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.fin-stat-card:hover {
    border-color: rgba(56, 189, 248, 0.2);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.fin-stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.08);
    border-radius: 50%;
    color: var(--accent);
}

.fin-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.fin-stat-label {
    font-size: 0.82rem;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- SERVICES GRID ---------- */
.fin-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.fin-service-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

.fin-service-card:hover {
    border-color: rgba(56, 189, 248, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.fin-service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fin-service-card:hover .fin-service-card-glow {
    opacity: 1;
}

.fin-service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fin-service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(168, 85, 247, 0.05));
    border-radius: 14px;
    color: var(--accent);
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.fin-service-card:hover .fin-service-card-icon {
    transform: scale(1.08);
}

.fin-service-card-tag {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fin-service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.fin-service-card p {
    font-size: 0.9rem;
    color: var(--t3);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.fin-service-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.fin-feature-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--t2);
}

.fin-service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.fin-card-arrow {
    transition: transform 0.3s ease;
}

.fin-service-card:hover .fin-card-arrow {
    transform: translateX(4px);
}

/* ---------- PROCESS TIMELINE ---------- */
.fin-process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.fin-process-line {
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(168, 85, 247, 0.5), var(--accent));
    opacity: 0.3;
}

.fin-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.fin-process-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    background: var(--bg);
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.fin-process-step:hover .fin-process-num {
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--accent);
    transform: scale(1.1);
}

.fin-process-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.fin-process-info p {
    font-size: 0.88rem;
    color: var(--t3);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ---------- ADVANTAGE GRID ---------- */
.fin-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.fin-advantage-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.fin-advantage-card:hover {
    border-color: rgba(56, 189, 248, 0.15);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-3px);
}

.fin-advantage-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.06);
    border-radius: 12px;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.fin-advantage-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.fin-advantage-card p {
    font-size: 0.88rem;
    color: var(--t3);
    line-height: 1.6;
}

/* ---------- FAQ ACCORDION ---------- */
.fin-faq-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
}

.fin-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease;
}

.fin-faq-item:hover,
.fin-faq-item.open {
    border-color: rgba(56, 189, 248, 0.15);
}

.fin-faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s ease;
}

.fin-faq-toggle:hover {
    color: var(--accent);
}

.fin-faq-toggle svg {
    flex-shrink: 0;
    color: var(--t3);
    transition: transform 0.3s ease;
}

.fin-faq-item.open .fin-faq-toggle svg {
    transform: rotate(180deg);
}

.fin-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.fin-faq-item.open .fin-faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}

.fin-faq-answer p {
    color: var(--t3);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ---------- DETAIL PAGE ---------- */
.fin-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.fin-detail-desc {
    color: var(--t2);
    line-height: 1.85;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.fin-detail-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.fin-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.fin-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.fin-feature-item:hover {
    border-color: rgba(56, 189, 248, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.fin-feature-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.08);
    border-radius: 50%;
    color: var(--accent);
    flex-shrink: 0;
}

.fin-feature-item span {
    font-size: 0.9rem;
    color: var(--t2);
}

/* ---------- SIDEBAR ---------- */
.fin-sidebar-cta {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.fin-sidebar-cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(168, 85, 247, 0.6));
}

.fin-sidebar-cta h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.fin-sidebar-cta p {
    color: var(--t3);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fin-sidebar-services {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.fin-sidebar-services h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.fin-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--t2);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.fin-sidebar-link:last-child {
    border-bottom: none;
}

.fin-sidebar-link:hover {
    color: var(--accent);
}

.fin-sidebar-link-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.fin-sidebar-link:hover .fin-sidebar-link-icon {
    background: rgba(56, 189, 248, 0.08);
}

.fin-sidebar-link-arrow {
    margin-left: auto;
    color: var(--t4);
    transition: transform 0.2s ease, color 0.2s ease;
}

.fin-sidebar-link:hover .fin-sidebar-link-arrow {
    transform: translateX(3px);
    color: var(--accent);
}

/* ---------- BENEFIT CARDS ---------- */
.fin-benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.fin-benefit-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fin-benefit-card:hover {
    border-color: rgba(56, 189, 248, 0.2);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
}

.fin-benefit-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.fin-benefit-card:hover .fin-benefit-num {
    color: rgba(56, 189, 248, 0.08);
}

.fin-benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.fin-benefit-card p {
    font-size: 0.88rem;
    color: var(--t3);
    line-height: 1.65;
}

/* ---------- FINANCIAL RESPONSIVE ---------- */
@media (max-width: 992px) {

    .fin-hero,
    .fin-detail-hero {
        padding: 8rem 0 3rem;
    }

    .fin-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .fin-services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .fin-process-track {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .fin-process-line {
        display: none;
    }

    .fin-advantage-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fin-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fin-features-grid {
        grid-template-columns: 1fr;
    }

    .fin-benefits-row {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {

    .fin-hero,
    .fin-detail-hero {
        padding: 7rem 0 2.5rem;
    }

    .fin-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .fin-stat-card {
        padding: 1.25rem 0.75rem;
    }

    .fin-stat-value {
        font-size: 1.5rem;
    }

    .fin-advantage-grid {
        grid-template-columns: 1fr;
    }

    .fin-hero-content h1,
    .fin-detail-hero-content h1 {
        font-size: 1.75rem;
    }

    .fin-hero-desc {
        font-size: 1rem;
    }
}

/* ============================================================
   IT SERVICES — SUPPLEMENTAL
   ============================================================ */
.svc-hero {
    position: relative;
    overflow: hidden;
    padding: 10rem 0 5rem;
}

.svc-process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.svc-long-desc {
    color: var(--t2);
    line-height: 1.85;
    font-size: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .svc-hero {
        padding: 8rem 0 3rem;
    }

    .svc-process-track {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .svc-hero {
        padding: 7rem 0 2.5rem;
    }

    .svc-process-track {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ============================================================
   SERVICE DETAIL PAGE — RICH SECTIONS
   ============================================================ */

/* ---------- HIGHLIGHTS STRIP ---------- */
.svc-highlights-strip {
    position: relative;
    padding: 2.5rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.svc-highlights-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.svc-highlight-item {
    position: relative;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.svc-highlight-item:hover {
    border-color: rgba(56, 189, 248, 0.15);
    transform: translateY(-2px);
}

.svc-highlight-value {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.svc-highlight-label {
    font-size: 0.82rem;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ---------- PROCESS VISUAL ---------- */
.svc-process-visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.svc-pv-step {
    position: relative;
    text-align: center;
    padding: 0 1rem;
}

.svc-pv-connector {
    position: absolute;
    top: 28px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.3), rgba(168, 85, 247, 0.2));
}

.svc-pv-step:last-child .svc-pv-connector {
    display: none;
}

.svc-pv-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    background: var(--bg);
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.svc-pv-step:hover .svc-pv-num {
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.svc-pv-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.svc-pv-step:hover .svc-pv-card {
    border-color: rgba(56, 189, 248, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.svc-pv-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.svc-pv-card p {
    font-size: 0.85rem;
    color: var(--t3);
    line-height: 1.55;
}

/* ---------- CASE STUDY ---------- */
.svc-case-study {
    max-width: 900px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.svc-cs-header {
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.svc-cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

.svc-cs-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
}

.svc-cs-client {
    color: #fff;
    font-weight: 600;
}

.svc-cs-dot {
    color: var(--t4);
}

.svc-cs-industry {
    color: var(--t3);
}

.svc-cs-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.svc-cs-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
}

.svc-cs-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-cs-section p {
    font-size: 0.9rem;
    color: var(--t2);
    line-height: 1.65;
}

.svc-cs-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.svc-cs-result-card {
    padding: 1.75rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.svc-cs-result-card:last-child {
    border-right: none;
}

.svc-cs-result-card:hover {
    background: rgba(56, 189, 248, 0.03);
}

.svc-cs-result-metric {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.svc-cs-result-label {
    font-size: 0.8rem;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ---------- FINAL CTA (CONVERSION) ---------- */
.svc-final-cta {
    position: relative;
    text-align: center;
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.svc-final-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.05) 0%, rgba(168, 85, 247, 0.03) 50%, rgba(56, 189, 248, 0.05) 100%);
    z-index: 0;
}

.svc-final-cta-content {
    position: relative;
    z-index: 1;
}

.svc-final-cta h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.svc-final-cta p {
    font-size: 1.05rem;
    color: var(--t2);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ---------- DETAIL RESPONSIVE ---------- */
@media (max-width: 992px) {
    .svc-highlights-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .svc-process-visual {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .svc-pv-connector {
        display: none;
    }

    .svc-cs-body {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .svc-cs-results {
        grid-template-columns: 1fr;
    }

    .svc-cs-result-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .svc-cs-result-card:last-child {
        border-bottom: none;
    }

    .svc-final-cta {
        padding: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    .svc-highlights-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .svc-highlight-value {
        font-size: 1.75rem;
    }

    .svc-process-visual {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .svc-cs-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .svc-final-cta {
        padding: 2.5rem 1.5rem;
    }
}

/* ============================================================
   PORTFOLIO — CASE STUDY REDESIGN
   ============================================================ */

/* ---------- FILTER BAR ---------- */
.cs-filter-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.cs-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: var(--t3);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs-filter-btn:hover {
    border-color: rgba(56, 189, 248, 0.2);
    color: #fff;
}

.cs-filter-btn.active {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
    color: var(--accent);
    font-weight: 600;
}

/* ---------- CARD GRID ---------- */
.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ---------- CARD ---------- */
.cs-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit !important;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s ease;
}

.cs-card:hover {
    border-color: rgba(56, 189, 248, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Card Visual */
.cs-card-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.05), rgba(168, 85, 247, 0.05));
}

.cs-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cs-card:hover .cs-card-visual img {
    transform: scale(1.05);
}

.cs-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(168, 85, 247, 0.08));
    color: rgba(255, 255, 255, 0.12);
}

.cs-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cs-card:hover .cs-card-overlay {
    opacity: 1;
}

.cs-card-view {
    padding: 0.6rem 1.5rem;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 100px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.cs-card:hover .cs-card-view {
    transform: translateY(0);
}

.cs-card-cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Card Body */
.cs-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cs-card-meta {
    margin-bottom: 0.75rem;
}

.cs-card-client {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--t3);
    font-weight: 500;
}

.cs-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.cs-card-excerpt {
    font-size: 0.85rem;
    color: var(--t3);
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.cs-card-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.cs-tech-pill {
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--t3);
    font-weight: 500;
}

.cs-tech-more {
    color: var(--accent);
    border-color: rgba(56, 189, 248, 0.15);
}

.cs-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cs-card-read {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
}

.cs-card-arrow {
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.cs-card:hover .cs-card-arrow {
    transform: translateX(4px);
}

/* ---------- DETAIL PAGE ---------- */
.cs-detail-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-detail-hero-img img {
    width: 100%;
    display: block;
}

.cs-detail-story {
    color: var(--t2);
    line-height: 1.85;
    font-size: 1rem;
    margin-top: 1.25rem;
}

.cs-detail-tech-section {
    margin-top: 2.5rem;
}

.cs-detail-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.cs-detail-tech-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--t2);
    transition: all 0.3s ease;
}

.cs-detail-tech-item:hover {
    border-color: rgba(56, 189, 248, 0.15);
    background: rgba(56, 189, 248, 0.03);
}

/* Sidebar live link card */
.cs-sidebar-link-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.cs-sidebar-link-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cs-live-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: var(--radius);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-all;
}

.cs-live-link:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.25);
}

/* ---------- IMPACT GRID ---------- */
.cs-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cs-impact-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.cs-impact-card:hover {
    border-color: rgba(56, 189, 248, 0.12);
    transform: translateY(-4px);
}

.cs-impact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.08);
    border-radius: 50%;
    color: var(--accent);
}

.cs-impact-metric {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.cs-impact-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-impact-card p {
    font-size: 0.82rem;
    color: var(--t3);
    line-height: 1.5;
}

/* ---------- PORTFOLIO RESPONSIVE ---------- */
@media (max-width: 992px) {
    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cs-impact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .cs-detail-tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .cs-grid {
        grid-template-columns: 1fr;
    }

    .cs-filter-bar {
        gap: 0.35rem;
    }

    .cs-filter-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.78rem;
    }

    .cs-impact-metric {
        font-size: 2rem;
    }
}

/* ============================================================
   PORTFOLIO DETAIL — ENRICHED SECTIONS
   ============================================================ */

/* ---------- TECH SHOWCASE ---------- */
.cs-tech-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.cs-tech-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.cs-tech-block:hover {
    border-color: rgba(56, 189, 248, 0.2);
    background: rgba(56, 189, 248, 0.04);
    transform: translateY(-3px);
}

.cs-tech-block-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.08);
    border-radius: var(--radius);
    color: var(--accent);
    flex-shrink: 0;
}

/* ---------- METHODOLOGY ---------- */
.cs-methodology {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cs-method-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.cs-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cs-method-card:hover::before {
    opacity: 1;
}

.cs-method-card:hover {
    border-color: rgba(56, 189, 248, 0.12);
    transform: translateY(-4px);
}

.cs-method-card-accent {
    border-color: rgba(56, 189, 248, 0.12);
}

.cs-method-card-accent::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--accent), #a78bfa);
}

.cs-method-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.06);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.cs-method-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.65rem;
}

.cs-method-card p {
    font-size: 0.85rem;
    color: var(--t3);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cs-method-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- TEAM EFFORT ---------- */
.cs-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.cs-team-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.cs-team-card:hover {
    border-color: rgba(56, 189, 248, 0.12);
    transform: translateY(-4px);
}

.cs-team-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.08);
    border: 2px solid rgba(56, 189, 248, 0.15);
    border-radius: 50%;
    color: var(--accent);
}

.cs-team-avatar-dev {
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.15);
    color: #a78bfa;
}

.cs-team-avatar-pm {
    background: rgba(52, 211, 153, 0.08);
    border-color: rgba(52, 211, 153, 0.15);
    color: #34d399;
}

.cs-team-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.cs-team-role {
    font-size: 0.8rem;
    color: var(--t3);
    margin-bottom: 1.5rem;
}

.cs-team-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

.cs-team-stat {
    flex: 1;
    text-align: center;
}

.cs-team-stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.cs-team-stat-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.1rem;
}

.cs-team-stat-label {
    font-size: 0.68rem;
    color: var(--t4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- PROJECT TIMELINE ---------- */
.cs-timeline {
    position: relative;
    max-width: 700px;
    margin: 3rem auto 0;
    padding-left: 3rem;
}

.cs-timeline-line {
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(168, 85, 247, 0.3), rgba(255, 255, 255, 0.05));
}

.cs-timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.cs-timeline-item:last-child {
    margin-bottom: 0;
}

.cs-timeline-dot {
    position: absolute;
    left: -3rem;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background: var(--bg);
    border: 3px solid var(--accent);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.cs-timeline-item:hover .cs-timeline-dot {
    background: var(--accent);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.cs-timeline-dot-final {
    border-color: #34d399;
}

.cs-timeline-item:last-child:hover .cs-timeline-dot {
    background: #34d399;
    border-color: #34d399;
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.3);
}

.cs-timeline-week {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.cs-timeline-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.cs-timeline-item:hover .cs-timeline-card {
    border-color: rgba(56, 189, 248, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.cs-timeline-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cs-timeline-card p {
    font-size: 0.85rem;
    color: var(--t3);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.cs-timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.cs-timeline-tags span {
    padding: 0.15rem 0.55rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    font-size: 0.68rem;
    color: var(--t3);
    font-weight: 500;
}

/* ---------- TESTIMONIAL ---------- */
.cs-testimonial-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    position: relative;
}

.cs-testimonial-quote {
    margin-bottom: 1.5rem;
}

.cs-testimonial-text {
    font-size: 1.1rem;
    color: var(--t2);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.cs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.cs-testimonial-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.08);
    border: 2px solid rgba(56, 189, 248, 0.15);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent);
}

.cs-testimonial-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.cs-testimonial-role {
    font-size: 0.78rem;
    color: var(--t3);
}

/* ---------- ENRICHED PORTFOLIO RESPONSIVE ---------- */
@media (max-width: 992px) {
    .cs-methodology {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .cs-team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .cs-testimonial-block {
        padding: 2rem 1.5rem;
    }

    .cs-testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cs-methodology {
        grid-template-columns: 1fr;
    }

    .cs-timeline {
        padding-left: 2.25rem;
    }

    .cs-timeline-dot {
        left: -2.25rem;
    }

    .cs-timeline-card {
        padding: 1.25rem;
    }

    .cs-testimonial-text {
        font-size: 0.95rem;
    }
}

/* ============================================================
   CASE STUDY — CHALLENGE · SOLUTION · RESULT SECTIONS
   ============================================================ */

/* ---------- CHALLENGE: Pain-Point Cards ---------- */
.cs-challenge-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--t2);
    line-height: 1.85;
    font-size: 1rem;
}

.cs-challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 950px;
    margin: 0 auto;
}

.cs-challenge-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid rgba(248, 113, 113, 0.4);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.cs-challenge-card:hover {
    border-left-color: rgba(248, 113, 113, 0.7);
    background: rgba(248, 113, 113, 0.03);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cs-challenge-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 113, 113, 0.08);
    border-radius: var(--radius-sm);
    color: #f87171;
    margin-top: 0.1rem;
}

.cs-challenge-card p {
    font-size: 0.88rem;
    color: var(--t2);
    line-height: 1.6;
    margin: 0;
}

.cs-challenge-summary {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(248, 113, 113, 0.04);
    border: 1px solid rgba(248, 113, 113, 0.1);
    border-radius: var(--radius-lg);
    color: var(--t2);
    line-height: 1.7;
    font-size: 0.92rem;
}

/* ---------- SOLUTION: Feature Cards ---------- */
.cs-solution-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--t2);
    line-height: 1.85;
    font-size: 1rem;
}

.cs-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cs-solution-card {
    position: relative;
    padding: 1.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.35s ease;
    overflow: hidden;
}

.cs-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cs-solution-card:hover::before {
    opacity: 1;
}

.cs-solution-card:hover {
    border-color: rgba(56, 189, 248, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.cs-solution-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 8px rgba(56, 189, 248, 0.15));
}

.cs-solution-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cs-solution-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-solution-items li {
    position: relative;
    padding-left: 1.15rem;
    padding-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--t3);
    line-height: 1.55;
}

.cs-solution-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

/* ---------- RESULT: Impact Metric Cards ---------- */
.cs-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 3rem auto 0;
}

.cs-result-card {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.35s ease;
}

.cs-result-card:hover {
    border-color: rgba(52, 211, 153, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    background: rgba(52, 211, 153, 0.02);
}

.cs-result-emoji {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.15rem;
    filter: drop-shadow(0 2px 8px rgba(52, 211, 153, 0.15));
}

.cs-result-content {
    flex: 1;
    min-width: 0;
}

.cs-result-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.cs-result-title .cs-result-metric {
    background: linear-gradient(135deg, #34d399, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cs-result-desc {
    font-size: 0.85rem;
    color: var(--t3);
    line-height: 1.6;
    margin: 0;
}

/* ---------- CASE STUDY SECTIONS RESPONSIVE ---------- */
@media (max-width: 992px) {
    .cs-challenge-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .cs-solution-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

    .cs-result-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
    }
}

@media (max-width: 576px) {
    .cs-challenge-card {
        padding: 1rem 1.25rem;
    }

    .cs-solution-card {
        padding: 1.25rem;
    }

    .cs-result-card {
        padding: 1.25rem;
    }

    .cs-challenge-intro,
    .cs-solution-intro {
        font-size: 0.92rem;
    }
}

/* ============================================================
   PORTFOLIO DETAIL — SECTION BACKGROUND VARIETY
   ============================================================ */

/* -- Glow: floating gradient orbs behind content -- */
.cs-section-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.95), rgba(5, 10, 20, 0.98));
}

.cs-section-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.cs-section-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1), transparent 70%);
    top: -80px;
    right: -60px;
}

.cs-section-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 70%);
    bottom: -60px;
    left: -40px;
}

.cs-section-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.06), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cs-section-glow .container {
    position: relative;
    z-index: 1;
}

/* -- Accent: subtle grid pattern overlay -- */
.cs-section-accent {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
            rgba(56, 189, 248, 0.02) 0%,
            rgba(56, 189, 248, 0.04) 50%,
            rgba(56, 189, 248, 0.02) 100%);
    border-top: 1px solid rgba(56, 189, 248, 0.06);
    border-bottom: 1px solid rgba(56, 189, 248, 0.06);
}

.cs-section-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.cs-section-accent .container {
    position: relative;
    z-index: 1;
}

/* -- Gradient: diagonal gradient bg -- */
.cs-section-gradient {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(15, 20, 40, 1) 0%,
            rgba(25, 15, 45, 0.95) 50%,
            rgba(15, 20, 40, 1) 100%);
    border-top: 1px solid rgba(168, 85, 247, 0.06);
    border-bottom: 1px solid rgba(168, 85, 247, 0.06);
}

.cs-section-gradient .container {
    position: relative;
    z-index: 1;
}

/* -- Results section extra emphasis -- */
.cs-section-results .cs-impact-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(56, 189, 248, 0.08);
}

.cs-section-results .cs-impact-card:hover {
    border-color: rgba(56, 189, 248, 0.2);
    background: rgba(56, 189, 248, 0.04);
}

/* ============================================================
   BLOG — PREMIUM REDESIGN
   ============================================================ */

/* ---------- FEATURED POST ---------- */
.bl-featured {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    margin-bottom: 2rem;
}

.bl-featured-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bl-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bl-featured:hover .bl-featured-img img {
    transform: scale(1.03);
}

.bl-featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.05), rgba(168, 85, 247, 0.05));
}

.bl-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.bl-featured-badge {
    padding: 0.35rem 1rem;
    background: rgba(168, 85, 247, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bl-featured-body h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.bl-featured-body h2 a {
    color: inherit;
    text-decoration: none;
    background: linear-gradient(90deg, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
}

.bl-featured-body h2 a:hover {
    opacity: 0.8;
}

.bl-featured-body p {
    font-size: 1.05rem;
    color: var(--t3);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

/* ---------- BLOG CARD GRID ---------- */
.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* ---------- BLOG CARD ---------- */
.bl-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit !important;
    background: rgba(25, 30, 50, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.bl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}

.bl-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background: rgba(25, 30, 50, 0.6);
}

.bl-card:hover::before {
    opacity: 1;
}

.bl-card-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.bl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bl-card:hover .bl-card-img img {
    transform: scale(1.08);
}

.bl-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 1), rgba(30, 41, 59, 1));
}

.bl-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.85rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bl-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 2;
    position: relative;
}

.bl-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--t4);
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.bl-card-dot {
    width: 3px;
    height: 3px;
    background: var(--t4);
    border-radius: 50%;
    opacity: 0.5;
}

.bl-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s;
}

.bl-card:hover .bl-card-body h3 {
    color: var(--accent);
}

.bl-card-body p {
    font-size: 0.9rem;
    color: var(--t3);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bl-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bl-card-read {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bl-card-arrow {
    font-size: 1.1rem;
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bl-card:hover .bl-card-arrow {
    transform: translateX(6px);
}

/* ---------- DETAIL — HERO & META ---------- */
.bl-detail-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--t3);
    margin-top: 1.5rem;
}

.bl-detail-author-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.3rem 0.8rem 0.3rem 0.3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: #fff;
    font-weight: 500;
}

.bl-author-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- COVER SECTION ---------- */
.bl-cover-section {
    padding: 0 0 4rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.bl-article-cover {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111;
}

.bl-article-cover img {
    width: 100%;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

/* ---------- ARTICLE LAYOUT ---------- */
.bl-article-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: start;
}

/* ---------- ARTICLE BODY TYPOGRAPHY ---------- */
.bl-article-body {
    color: var(--t2);
    font-size: 1.125rem;
    line-height: 1.8;
}

.bl-article-body h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 3rem 0 1.25rem;
    letter-spacing: -0.01em;
}

.bl-article-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 2.5rem 0 1rem;
}

.bl-article-body h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 2rem 0 0.75rem;
}

.bl-article-body p {
    margin-bottom: 1.5rem;
}

.bl-article-body img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bl-article-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--accent);
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.05), transparent);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
}

.bl-article-body pre {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.6;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bl-article-body code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.9em;
    padding: 0.2rem 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--accent);
}

.bl-article-body pre code {
    padding: 0;
    background: none;
    color: #e2e8f0;
}

.bl-article-body ul,
.bl-article-body ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.bl-article-body li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.bl-article-body a {
    color: var(--accent);
    text-decoration: none;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s;
}

.bl-article-body a:hover {
    background-size: 100% 1px;
}

/* ---------- ARTICLE SHARE ---------- */
.bl-article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bl-share {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bl-share-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bl-share-links {
    display: flex;
    gap: 0.75rem;
}

.bl-share-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--t3);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bl-share-btn:hover {
    border-color: var(--accent);
    color: #fff;
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

/* ---------- BLOG SIDEBAR ---------- */
.bl-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bl-sidebar-author-card {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

.bl-sidebar-author-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bl-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

.bl-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.bl-author-role {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
}

.bl-sidebar-author-bio {
    font-size: 0.9rem;
    color: var(--t3);
    line-height: 1.6;
}

.bl-sidebar-related {
    padding: 0;
    border: none;
    background: transparent;
}

.bl-sidebar-related h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--t4);
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.bl-sidebar-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.bl-sidebar-post:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(56, 189, 248, 0.2);
    transform: translateX(4px);
}

.bl-sidebar-post-icon {
    margin-top: 0.2rem;
    color: var(--accent);
    opacity: 0.6;
}

.bl-sidebar-post:hover .bl-sidebar-post-icon {
    opacity: 1;
}

.bl-sidebar-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin-bottom: 0.25rem;
}

.bl-sidebar-post:hover .bl-sidebar-post-title {
    color: var(--accent);
}

.bl-sidebar-post-meta {
    font-size: 0.75rem;
    color: var(--t4);
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 992px) {
    .bl-featured {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .bl-featured-body h2 {
        font-size: 1.75rem;
    }

    .bl-featured-body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .bl-article-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bl-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .bl-sidebar-author-card,
    .fin-sidebar-cta {
        height: 100%;
    }
}

@media (max-width: 576px) {
    .bl-grid {
        grid-template-columns: 1fr;
    }

    .bl-featured-body h2 {
        font-size: 1.5rem;
    }

    .bl-sidebar {
        grid-template-columns: 1fr;
    }

    .bl-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .bl-article-body {
        font-size: 1rem;
    }

    .bl-article-cover {
        margin-top: 1rem;
    }
}

/* ============================================================
   CONTACT PAGE — PREMIUM REDESIGN
   ============================================================ */

/* ---------- CONTACT LAYOUT ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* ---------- INFO SIDE ---------- */
.contact-info-side {
    position: relative;
    padding-right: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.contact-desc {
    font-size: 0.95rem;
    color: var(--t3);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.2);
    transform: translateX(4px);
}

.contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--t4);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.15rem;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.contact-social {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-social h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--t3);
    letter-spacing: 1px;
    margin-bottom: 0.85rem;
}

.social-links {
    display: flex;
    gap: 0.65rem;
}

.contact-social .social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--t3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-social .social-links a svg {
    width: 16px;
    height: 16px;
}

.contact-social .social-links a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* ---------- MAP VISUAL ---------- */
.contact-map-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1h2v2H1V1zm4 0h2v2H5V1zm4 0h2v2H9V1z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    z-index: 2;
}

.map-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(5);
        opacity: 0;
    }
}

/* ---------- FORM SIDE ---------- */
.contact-form-side {
    position: relative;
    z-index: 2;
}

.form-wrapper {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--t3);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(56, 189, 248, 0.05);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ---------- FAQ SECTION ---------- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(56, 189, 248, 0.15);
    transform: translateY(-3px);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--t3);
    line-height: 1.6;
}

/* ---------- RESPONSIVE CONTACT ---------- */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .input-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================== WHY CHOOSE US ======================== */
.why-choose-us-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.wcu-bg-gradient {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.05), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.wcu-content {
    flex: 1;
    min-width: 300px;
}

.wcu-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wcu-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--t2);
    font-size: 1.05rem;
}

.wcu-list li span {
    color: var(--accent);
    font-weight: bold;
}

.wcu-cards {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wcu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.wcu-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

/* ======================== CONTRAST FIX OVERRIDES ======================== */
/* Ensure high contrast for all critical text on dark backgrounds */

/* General Text */
body,
p,
li,
.section-desc,
.hero-subtitle {
    color: var(--t2) !important;
    /* Slate 300 - High Contrast */
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.section-label {
    color: var(--t1) !important;
    /* Slate 50 - High Contrast */
}

/* Specific Components */
.hero-badge {
    color: var(--secondary) !important;
    /* Cyan - Check contrast against bg */
    background: rgba(34, 211, 238, 0.1) !important;
    border: 1px solid rgba(34, 211, 238, 0.2) !important;
}

.card-text,
.service-desc,
.feature-desc {
    color: var(--t2) !important;
}

.copyright,
.legal-links a {
    color: var(--t2) !important;
}

/* Dash cards */
.dash-svc-card strong {
    color: #fff !important;
}

.dash-svc-card p {
    color: var(--t2) !important;
}

/* Why Choose Us text */
.wcu-list li {
    color: var(--t2) !important;
}

.wcu-card p {
    color: var(--t2) !important;
}

/* ============================================================
   PUBLIC PAGINATION
   ============================================================ */
.site-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.site-pagination nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Hide Laravel's default "Showing X to Y of Z results" text */
.site-pagination nav>div:first-child {
    display: none !important;
}

/* Target the actual pagination list wrapper */
.site-pagination nav>div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Hide the "Showing X to Y" text in the second wrapper too */
.site-pagination nav>div:last-child>div:first-child {
    display: none !important;
}

.site-pagination nav>div:last-child>div:last-child span[aria-current="page"]>span,
.site-pagination nav>div:last-child>div:last-child a,
.site-pagination nav>div:last-child>div:last-child span:not([aria-current]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--t2);
}

/* Active page */
.site-pagination nav span[aria-current="page"]>span {
    background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
    color: #fff !important;
    border-color: transparent !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Hover state for links */
.site-pagination nav a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--t1) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px);
}

/* Disabled Previous/Next */
.site-pagination nav span[aria-disabled="true"] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Override any default SVG icon sizes in pagination */
.site-pagination nav svg {
    width: 16px;
    height: 16px;
}

/* Target the wrapping flex container from Tailwind pagination */
.site-pagination nav>div:last-child>div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {

    .site-pagination nav>div:last-child>div:last-child span[aria-current="page"]>span,
    .site-pagination nav>div:last-child>div:last-child a,
    .site-pagination nav>div:last-child>div:last-child span:not([aria-current]) {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
}