/* ================================================
   single-service.css — Service Detail Page
   AI Development Company Australia
   Fresh layouts: asymmetric hero, zigzag, timeline,
   horizontal chips, pill cloud, benefit rows, mega-CTA
   ================================================ */


/* ========================================
   SERVICE HERO — Asymmetric with Orbital SVG
========================================= */

.svc-hero {
    position: relative;
    padding: 200px 0 100px;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

/* Background grid pattern */
.svc-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196,239,23,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196,239,23,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
    z-index: -1;
}

.svc-hero .container { position: relative; z-index: 1; }

.svc-hero-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 80px;
}

/* LEFT — Content */
.svc-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(196,239,23,.25);
    background: rgba(196,239,23,.06);
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #C4EF17;
    margin-bottom: 28px;
}
.eb-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #C4EF17;
    box-shadow: 0 0 0 4px rgba(196,239,23,.2);
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(196,239,23,.2); }
    50%       { box-shadow: 0 0 0 6px rgba(196,239,23,.05); }
}

.svc-hero h1 { margin-bottom: 28px; }

.svc-hero-desc {
    font-size: clamp(15px, 1.2vw, 17px);
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 32px;
    font-weight: 300;
}

.svc-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 3px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,.75);
    transition: border-color .25s, color .25s, background .25s;
}
.chip:hover {
    border-color: rgba(196,239,23,.4);
    color: #C4EF17;
    background: rgba(196,239,23,.04);
}

.svc-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Lime button */
.btn-lime {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #C4EF17;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background .2s, gap .2s, transform .2s;
    text-decoration: none;
}
.btn-lime:hover {
    background: #fff;
    gap: 16px;
    transform: translateY(-2px);
}
.btn-lime svg { transition: transform .2s; }
.btn-lime:hover svg { transform: translate(3px, -3px); }

/* Ghost white button */
.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: border-color .2s, color .2s, background .2s;
    text-decoration: none;
}
.btn-ghost-white:hover {
    border-color: #C4EF17;
    color: #C4EF17;
    background: rgba(196,239,23,.04);
}

/* RIGHT — Orbital Visual */
.svc-hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    width: 100%;
    justify-self: center;
}

.orbit-wrap {
    position: relative;
    width: 100%; height: 100%;
}

/* Rings */
.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    border: 1px solid rgba(196,239,23,.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.orbit-ring--1 {
    width: 100%; height: 100%;
    animation: spinSlow 32s linear infinite;
}
.orbit-ring--2 {
    width: 72%; height: 72%;
    border-color: rgba(196,239,23,.2);
    animation: spinSlow 22s linear infinite reverse;
}
.orbit-ring--3 {
    width: 48%; height: 48%;
    border-color: rgba(196,239,23,.3);
    animation: spinSlow 14s linear infinite;
}
@keyframes spinSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Nodes on rings — positioned to sit exactly on ring edge */
.orbit-node {
    position: absolute;
    width: 14px; height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Top of ring */
.orbit-node {
    top: -7px;
    left: 50%;
    margin-left: -7px;
}

/* Bottom of ring */
.orbit-node--alt {
    top: auto;
    bottom: -7px;
    left: 50%;
    margin-left: -7px;
}

/* Left of ring */
.orbit-node--alt2 {
    top: 50%;
    left: -7px;
    margin-left: 0;
    margin-top: -7px;
}

/* Right of ring */
.orbit-node--alt3 {
    top: 50%;
    right: -7px;
    left: auto;
    margin-left: 0;
    margin-top: -7px;
}

.orbit-dot {
    width: 14px; height: 14px; border-radius: 50%;
    background: #C4EF17;
    box-shadow:
        0 0 0 5px rgba(196,239,23,.15),
        0 0 20px rgba(196,239,23,.5);
}
.orbit-dot--sm {
    width: 10px; height: 10px;
    box-shadow:
        0 0 0 4px rgba(196,239,23,.18),
        0 0 14px rgba(196,239,23,.4);
}

/* Override the inner SVG dot on ring-1 to match size */
.orbit-ring--1 .orbit-node {
    width: 18px; height: 18px;
    top: -9px;
    margin-left: -9px;
}

/* Central core */
.orbit-core {
    position: absolute;
    top: 50%; left: 50%;
    width: 160px; height: 160px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.orbit-core-inner {
    position: relative;
    z-index: 2;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1a1a1a 0%, #000 80%);
    border: 1px solid rgba(196,239,23,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 60px rgba(196,239,23,.2),
        inset 0 0 20px rgba(196,239,23,.05);
}
.orbit-core-inner svg {
    animation: coreFloat 4s ease-in-out infinite;
}
@keyframes coreFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-4px); }
}

.orbit-core-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid #C4EF17;
    animation: corePulse 2.5s ease-out infinite;
    opacity: 0;
}
@keyframes corePulse {
    0%   { transform: scale(.8);  opacity: .8; }
    100% { transform: scale(1.5); opacity: 0;  }
}

/* Floating tags around orbit */
.orbit-tag {
    position: absolute;
    padding: 6px 12px;
    background: rgba(20,20,20,.9);
    border: 1px solid rgba(196,239,23,.25);
    border-radius: 3px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #C4EF17;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    animation: tagFloat 5s ease-in-out infinite;
    white-space: nowrap;
}
.orbit-tag--1 { top: 6%;  left: -4%; animation-delay: 0s; }
.orbit-tag--2 { top: 18%; right: -8%; animation-delay: 1.2s; }
.orbit-tag--3 { bottom: 12%; left: -8%; animation-delay: 2.4s; }
.orbit-tag--4 { bottom: 4%; right: 4%; animation-delay: 3.6s; }

@keyframes tagFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ================================================
   HERO VISUAL — Shared base wrapper
================================================ */
.neural-wrap,
.viz-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.viz-bg {
    position: absolute;
    inset: 8%;
    border-radius: 6px;
    background-image:
        linear-gradient(rgba(196,239,23,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196,239,23,.04) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.viz-svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
}

/* Reusable glow filter for nodes */
.viz-node-glow {
    filter: drop-shadow(0 0 8px rgba(196,239,23,.55));
}

/* Trust strip */
.svc-hero-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0 20px;
    align-items: center;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.strip-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.strip-item strong {
    font-family: 'Marcellus', serif;
    font-size: clamp(24px, 2.5vw, 34px);
    color: #C4EF17;
    line-height: 1;
}
.strip-item span {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    letter-spacing: .5px;
    text-transform: uppercase;
}
.strip-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.1);
}

/* ── Fit hero above the fold ── */
.svc-hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.svc-hero .container { width: 100%; }

.svc-hero-grid-layout {
    gap: 60px;
    margin-top: 20px;
    margin-bottom: 48px;
}

/* Scale down H1 for service pages (multi-word lines) */
.svc-hero h1 {
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}
.svc-hero h1 .h1-line,
.svc-hero h1 .h1-mid,
.svc-hero h1 .h1-highlight {
    display: block;
}

/* Compact eyebrow */
.svc-hero-eyebrow {
    padding: 6px 14px;
    font-size: 10px;
    margin-bottom: 18px;
}

/* Tighter description */
.svc-hero-desc {
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 24px;
}

/* Compact chips */
.svc-hero-chips { gap: 8px; margin-bottom: 28px; }
.chip {
    padding: 6px 12px;
    font-size: 12px;
}

/* Tighter buttons */
.svc-hero-actions { gap: 12px; }
.btn-lime, .btn-ghost-white {
    padding: 14px 24px;
    font-size: 13px;
}

/* Smaller orbital visual so it fits */
.svc-hero-visual {
    max-width: 440px;
}

/* Compact trust strip */
.svc-hero-strip {
    padding: 22px 0 0;
}
.strip-item strong {
    font-size: clamp(22px, 2.2vw, 30px);
}
.strip-item span { font-size: 11px; }

/* Tablet */
@media (max-width: 1100px) {
    .svc-hero {
        min-height: auto;
        padding: 140px 0 72px;
    }
    .svc-hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .svc-hero-visual {
        max-width: 340px;
        margin: 0 auto;
    }
    .svc-hero h1 {
        font-size: clamp(30px, 5.5vw, 52px);
    }
}

/* Mobile — drop the orbit visual to keep above the fold tight */
@media (max-width: 700px) {
    .svc-hero { padding: 120px 0 56px; }
    .svc-hero h1 { font-size: clamp(28px, 8vw, 40px); }
    .svc-hero-visual { display: none; }
    .svc-hero-chips { display: none; }
    .svc-hero-strip {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }
}


/* ========================================
   ZIGZAG SERVICES LIST
========================================= */

.svc-services {
    padding: 80px 0;
    background: #050505;
}

.svc-services-head {
    max-width: 680px;
    margin-bottom: 80px;
}
.svc-services-head h2 { margin: 10px 0 18px; }
.svc-services-head p {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
}

.zz-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.zz-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    position: relative;
}
.zz-item:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }

.zz-item--reverse {
    grid-template-columns: 80px 1fr 1fr;
}
.zz-item--reverse .zz-body { grid-column: 3; order: 2; }
.zz-item--reverse .zz-visual { grid-column: 2; order: 1; }
.zz-item--reverse .zz-num { grid-column: 1; }

.zz-num {
    font-family: 'Marcellus', serif;
    font-size: 48px;
    color: rgba(196,239,23,.6);
    line-height: 1;
}

.zz-body {
    max-width: 560px;
}

.zz-cat {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C4EF17;
    padding: 5px 12px;
    border: 1px solid rgba(196,239,23,.25);
    border-radius: 2px;
    margin-bottom: 18px;
}

.zz-body h3 {
    font-family: 'Marcellus', serif;
    font-size: clamp(26px, 2.8vw, 38px);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 400;
}

.zz-body > p {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    margin-bottom: 20px;
}

.zz-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.zz-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.65);
}
.zz-points li::before {
    content: '';
    width: 14px; height: 1px;
    background: #C4EF17;
    flex-shrink: 0;
}

/* Visual card */
.zz-visual {
    display: flex;
    justify-content: center;
}
.zz-visual-card {
    width: 100%;
    max-width: 440px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(196,239,23,.02) 0%, rgba(255,255,255,.01) 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: border-color .4s, transform .4s;
}
.zz-item:hover .zz-visual-card {
    border-color: rgba(196,239,23,.25);
    transform: translateY(-4px);
}
.zz-visual-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 2px;
    background: #C4EF17;
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.zz-item:hover .zz-visual-card::before { transform: scaleX(1); }

.zz-viz-label {
    position: absolute;
    top: 16px; right: 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.25);
    text-transform: uppercase;
}
.zz-visual-card svg {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 12px;
}


/* ========================================
   WHY CHOOSE US — Bento Grid
========================================= */

.svc-why {
    padding: 80px 0;
}

.svc-why-head {
    max-width: 680px;
    margin-bottom: 64px;
}
.svc-why-head h2 { margin: 10px 0 18px; padding-bottom: 0.5rem; }
.svc-why-head p {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
}

/* Bento grid — 3 columns, with 2 spanning cards */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento-card {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 4px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .35s, transform .35s, background .35s;
}
.bento-card:hover {
    border-color: rgba(196,239,23,.3);
    transform: translateY(-4px);
    background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
}
.bento-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 2px;
    background: #C4EF17;
    transform: scaleX(0); transform-origin: left;
    transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.bento-card:hover::before { transform: scaleX(1); }

/* Flag/emoji icon */
.bento-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: rgba(196,239,23,.08);
    border: 1px solid rgba(196,239,23,.2);
    border-radius: 50%;
    font-size: 22px;
    margin-bottom: 22px;
    transition: transform .3s;
    position: relative;
    z-index: 1;
}
.bento-card:hover .bento-flag {
    transform: rotate(8deg) scale(1.08);
}

.bento-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.25;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.bento-card p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Featured card — spans 2 columns, taller */
.bento-card--feature {
    grid-column: span 2;
    grid-row: span 2;
    padding: 44px 40px;
    background: linear-gradient(135deg, rgba(196,239,23,.06) 0%, rgba(10,10,10,1) 60%);
    border-color: rgba(196,239,23,.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Decorative pattern for feature card */
.bento-pattern {
    position: absolute;
    top: -50px; right: -50px;
    width: 320px; height: 320px;
    background-image:
        radial-gradient(circle at center, rgba(196,239,23,.4) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
    opacity: .6;
    pointer-events: none;
}

.bento-card--feature .bento-flag {
    width: 60px; height: 60px;
    font-size: 28px;
    margin-bottom: 32px;
}

.bento-card--feature h3 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    margin-bottom: 18px;
}

.bento-card--feature p {
    font-size: 15px;
    max-width: 440px;
    margin-bottom: 28px;
}

.bento-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    max-width: 200px;
}
.bento-stat strong {
    font-family: 'Marcellus', serif;
    font-size: 38px;
    color: #C4EF17;
    line-height: 1;
}
.bento-stat span {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* Wide card — spans 2 columns */
.bento-card--wide {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 36px;
}

.bento-card--wide .bento-flag {
    margin-bottom: 0;
    flex-shrink: 0;
}

.bento-wide-body { flex: 1; }
.bento-wide-body h3 { margin-bottom: 8px; }
.bento-wide-body p { font-size: 14px; }

.bento-meta {
    flex-shrink: 0;
    padding-left: 28px;
    border-left: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    min-width: 100px;
}
.bento-meta-num {
    font-family: 'Marcellus', serif;
    font-size: 32px;
    color: #C4EF17;
    line-height: 1;
}
.bento-meta-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card--feature {
        grid-column: span 2;
        grid-row: auto;
    }
    .bento-card--wide {
        grid-column: span 2;
    }
}
@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--feature,
    .bento-card--wide {
        grid-column: auto;
    }
    .bento-card--wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .bento-meta {
        padding-left: 0;
        border-left: none;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,.08);
        text-align: left;
        align-self: stretch;
    }
}


/* ========================================
   PROCESS — Vertical Timeline
========================================= */

.svc-process {
    padding: 80px 0;
    background: #050505;
    position: relative;
}
.svc-process::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; max-width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(196,239,23,.3) 50%, transparent 100%);
}

.svc-process-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}
.svc-process-head h2 { margin-top: 10px; }

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 80px;
}
.tl-line {
    position: absolute;
    left: 30px; top: 20px; bottom: 20px;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(196,239,23,.4) 10%,
        rgba(196,239,23,.4) 90%,
        transparent 100%);
}

.tl-step {
    position: relative;
    padding: 32px 0 48px;
}
.tl-step:last-child { padding-bottom: 0; }

.tl-dot {
    position: absolute;
    left: -80px;
    top: 24px;
    width: 60px; height: 60px;
    background: #000;
    border: 1px solid rgba(196,239,23,.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s, transform .3s;
    z-index: 1;
}
.tl-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(196,239,23,.2);
    opacity: 0;
    transition: opacity .3s;
}
.tl-step:hover .tl-dot {
    background: #C4EF17;
    border-color: #C4EF17;
    transform: scale(1.08);
}
.tl-step:hover .tl-dot::before { opacity: 1; }

.tl-dot span {
    font-family: 'Marcellus', serif;
    font-size: 17px;
    color: #C4EF17;
    transition: color .3s;
}
.tl-step:hover .tl-dot span { color: #000; }

.tl-content {
    padding: 24px 32px;
    background: #080808;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 4px;
    transition: border-color .3s, transform .3s;
}
.tl-step:hover .tl-content {
    border-color: rgba(196,239,23,.2);
    transform: translateX(6px);
}

.tl-phase {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C4EF17;
    margin-bottom: 10px;
}

.tl-content h3 {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 2.2vw, 28px);
    color: #fff;
    margin-bottom: 12px;
    font-weight: 400;
}

.tl-content p {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 16px;
}

.tl-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.06);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,.4);
    letter-spacing: .3px;
}
.tl-meta span:first-child {
    color: #C4EF17;
    font-weight: 600;
}


/* ========================================
   INDUSTRIES — Pill Cloud
========================================= */

.svc-industries {
    padding: 80px 0;
}

.svc-ind-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.svc-ind-head h2 { margin: 10px 0 18px; }
.svc-ind-head p {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
}

.ind-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.ind-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: all .25s cubic-bezier(.16,1,.3,1);
}
.ind-pill:hover {
    background: #C4EF17;
    color: #000;
    border-color: #C4EF17;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196,239,23,.15);
}
.ind-pill-icon {
    font-size: 20px;
    line-height: 1;
}


/* ========================================
   BENEFITS — Numbered Full-Width Rows
========================================= */

.svc-benefits {
    padding: 80px 0;
    background: #050505;
}

.svc-ben-head {
    max-width: 680px;
    margin-bottom: 56px;
}
.svc-ben-head h2 { margin: 10px 0 18px; padding-bottom: 0.5rem; }
.svc-ben-head p {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
}

.ben-rows {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,.08);
}

.ben-row {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    gap: 32px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: padding .35s, background .35s;
    position: relative;
    overflow: hidden;
}
.ben-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: rgba(196,239,23,.04);
    transition: width .45s cubic-bezier(.16,1,.3,1);
    z-index: -1;
}
.ben-row:hover::before { width: 100%; }
.ben-row:hover { padding-left: 24px; padding-right: 24px; }

.ben-num {
    font-family: 'Marcellus', serif;
    font-size: 36px;
    color: rgba(196,239,23,.5);
    line-height: 1;
    transition: color .3s;
}
.ben-row:hover .ben-num { color: #C4EF17; }

.ben-content h3 {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 2.4vw, 30px);
    color: #fff;
    margin-bottom: 8px;
    font-weight: 400;
    transition: color .3s;
}
.ben-row:hover .ben-content h3 { color: #C4EF17; }

.ben-content p {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    max-width: 720px;
}

.ben-arrow {
    font-size: 24px;
    color: rgba(255,255,255,.2);
    text-align: right;
    transition: color .3s, transform .3s;
}
.ben-row:hover .ben-arrow {
    color: #C4EF17;
    transform: translate(4px, -4px);
}


/* ========================================
   CASE STUDIES — Tabbed Showcase
========================================= */

.svc-cases {
    padding: 120px 0;
    background: #050505;
}

.svc-cases-head {
    max-width: 680px;
    margin-bottom: 64px;
}
.svc-cases-head h2 { margin: 10px 0 18px; }
.svc-cases-head p {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
}

/* Two-column: tabs left, panel right */
.cs-showcase {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: stretch;
    min-height: 560px;
}

/* Tab buttons */
.cs-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.cs-tab {
    display: grid;
    grid-template-columns: 56px 1fr 24px;
    gap: 20px;
    align-items: center;
    padding: 24px 20px 24px 4px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    cursor: pointer;
    text-align: left;
    color: #fff;
    transition: background .35s, padding .35s;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
.cs-tab::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: #C4EF17;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.cs-tab.is-active::before { transform: scaleY(1); }
.cs-tab.is-active {
    background: rgba(196,239,23,.03);
    padding-left: 20px;
}
.cs-tab:hover:not(.is-active) {
    background: rgba(255,255,255,.02);
    padding-left: 12px;
}

.cs-tab-num {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: rgba(255,255,255,.3);
    line-height: 1;
    transition: color .3s;
}
.cs-tab.is-active .cs-tab-num { color: #C4EF17; }

.cs-tab-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cs-tab-cat {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    transition: color .3s;
}
.cs-tab.is-active .cs-tab-cat { color: #C4EF17; }

.cs-tab-title {
    font-family: 'Marcellus', serif;
    font-size: clamp(17px, 1.5vw, 20px);
    color: rgba(255,255,255,.7);
    line-height: 1.3;
    transition: color .3s;
}
.cs-tab.is-active .cs-tab-title { color: #fff; }

.cs-tab-arrow {
    font-size: 18px;
    color: rgba(255,255,255,.2);
    transition: color .3s, transform .3s;
    line-height: 1;
}
.cs-tab.is-active .cs-tab-arrow {
    color: #C4EF17;
    transform: translateX(4px);
}

/* Panels */
.cs-panels {
    position: relative;
    background: #080808;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 4px;
    overflow: hidden;
    min-height: 560px;
}

.cs-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition:
        opacity   .5s cubic-bezier(.16,1,.3,1),
        transform .5s cubic-bezier(.16,1,.3,1);
}
.cs-panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

.cs-panel-img {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}
.cs-panel-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(.8);
    transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.cs-panel.is-active .cs-panel-img img {
    transform: scale(1.02);
}
.cs-panel-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(8,8,8,.8) 100%);
}

.cs-panel-badge {
    position: absolute;
    top: 20px; left: 20px;
    z-index: 1;
    padding: 6px 14px;
    background: #C4EF17;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
}

.cs-panel-body {
    padding: 32px 36px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cs-panel-body h3 {
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 2.2vw, 28px);
    color: #fff;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
}

.cs-panel-body > p {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    line-height: 1.75;
}

/* Metrics */
.cs-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.cs-metric strong {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: clamp(22px, 2vw, 28px);
    color: #C4EF17;
    line-height: 1;
    margin-bottom: 4px;
}
.cs-metric span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.4);
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* Tech stack chips */
.cs-tech {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.cs-tech-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-right: 4px;
}
.cs-tech-chip {
    padding: 5px 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 2px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.65);
}

/* CTA */
.cs-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C4EF17;
    margin-top: auto;
    align-self: flex-start;
    transition: gap .2s ease;
    text-decoration: none;
}
.cs-cta:hover { gap: 16px; }
.cs-cta svg { transition: transform .2s; }
.cs-cta:hover svg { transform: translate(3px, -3px); }

/* Responsive */
@media (max-width: 1000px) {
    .cs-showcase { grid-template-columns: 1fr; }
    .cs-tab { padding: 18px 14px; }
    .cs-panels { min-height: auto; }
    .cs-panel { position: relative; inset: auto; }
    .cs-panel:not(.is-active) { display: none; }
}
@media (max-width: 600px) {
    .cs-panel-body { padding: 24px 22px 28px; }
    .cs-panel-img { height: 200px; }
    .cs-metrics { grid-template-columns: 1fr 1fr; gap: 12px; }
}


/* ========================================
   FAQ (reuse home pattern)
========================================= */

.svc-faq { padding: 80px 0; border-top: 1px solid rgba(255,255,255,.05); }


/* ========================================
   MEGA CTA — THE SHOWSTOPPER
========================================= */

.mega-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

/* Radial glow behind everything */
.mega-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle,
        rgba(196,239,23,.25) 0%,
        rgba(196,239,23,.12) 20%,
        rgba(196,239,23,.04) 40%,
        transparent 65%);
    filter: blur(40px);
    z-index: -2;
    animation: megaGlowPulse 8s ease-in-out infinite;
}
@keyframes megaGlowPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: .8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Grid background */
.mega-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196,239,23,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196,239,23,.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    z-index: -1;
    opacity: .6;
}

/* Noise overlay */
.mega-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

.mega-cta .container {
    position: relative;
    z-index: 1;
}

.mega-cta-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Badge at top */
.mega-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(196,239,23,.08);
    border: 1px solid rgba(196,239,23,.3);
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #C4EF17;
    margin-bottom: 32px;
}
.mega-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #C4EF17;
    box-shadow: 0 0 12px rgba(196,239,23,.8);
    animation: megaBadgePulse 1.8s ease-in-out infinite;
}
@keyframes megaBadgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(.85); }
}

/* H2 */
.mega-h2 {
    font-family: 'Marcellus', serif;
    font-size: clamp(38px, 5.5vw, 76px);
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 28px;
    font-weight: 400;
}
.mega-h2 .skew-in { display: block; padding-bottom: 0.5rem; }
.mega-h2 em {
    display: block;
    color: #C4EF17;
    font-style: normal;
    position: relative;
}
.mega-h2 em::before,
.mega-h2 em::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C4EF17);
    opacity: .4;
}
.mega-h2 em::before {
    right: calc(100% + 20px);
    background: linear-gradient(90deg, transparent, #C4EF17);
}
.mega-h2 em::after {
    left: calc(100% + 20px);
    background: linear-gradient(90deg, #C4EF17, transparent);
}

.mega-sub {
    font-size: clamp(15px, 1.3vw, 18px);
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 48px;
    font-weight: 300;
}

/* Buttons */
.mega-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.mega-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 32px;
    border-radius: 3px;
    transition: all .3s cubic-bezier(.16,1,.3,1);
    overflow: hidden;
    isolation: isolate;
}

/* Primary — lime with glow */
.mega-btn--primary {
    background: #C4EF17;
    color: #000;
    box-shadow: 0 0 0 rgba(196,239,23,0), 0 8px 24px rgba(196,239,23,.2);
    border: 1px solid #C4EF17;
}
.mega-btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s ease;
    z-index: -1;
}
.mega-btn--primary:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 0 40px rgba(196,239,23,.4),
        0 12px 40px rgba(196,239,23,.3);
}
.mega-btn--primary:hover::before {
    transform: translateX(100%);
}

.mega-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: #000;
    color: #C4EF17;
    border-radius: 50%;
    transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.mega-btn--primary:hover .mega-btn-arrow {
    transform: rotate(-45deg);
}

/* Outline */
.mega-btn--outline {
    background: rgba(255,255,255,.03);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
}
.mega-btn--outline:hover {
    border-color: #C4EF17;
    color: #C4EF17;
    background: rgba(196,239,23,.06);
    transform: translateY(-3px);
}

/* Ghost */
.mega-btn--ghost {
    background: transparent;
    color: rgba(255,255,255,.55);
    border: 1px solid transparent;
    padding: 20px 16px;
}
.mega-btn--ghost:hover {
    color: #C4EF17;
    transform: translateY(-3px);
}

/* Trust row */
.mega-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.08);
    width: 100%;
    max-width: 720px;
}
.mega-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}


/* ========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .svc-hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .svc-hero-visual {
        max-width: 380px;
    }
    .svc-hero-strip {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
    }
    .strip-divider { display: none; }

    .zz-item,
    .zz-item--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .zz-item--reverse .zz-body,
    .zz-item--reverse .zz-visual,
    .zz-item--reverse .zz-num { grid-column: auto; order: initial; }

    .case-layout { grid-template-columns: 1fr; }
    .case-featured-img { height: 280px; }

    .timeline { padding-left: 64px; }
    .tl-dot { left: -64px; width: 48px; height: 48px; }
    .tl-dot span { font-size: 14px; }
}

@media (max-width: 700px) {
    .svc-hero { padding: 140px 0 72px; }
    .svc-hero-title { font-size: clamp(32px, 8vw, 48px); }

    .svc-services,
    .svc-why,
    .svc-process,
    .svc-industries,
    .svc-benefits,
    .svc-cases,
    .svc-faq,
    .blog-sec { padding: 72px 0; }

    .mega-cta { padding: 100px 0; }
    .mega-h2 em::before,
    .mega-h2 em::after { display: none; }

    .mega-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
    .mega-btn { justify-content: center; }

    .zz-visual-card { padding: 20px; }
    .case-mini { grid-template-columns: 110px 1fr; }
    .case-mini-body { padding: 14px 14px 14px 0; }
    .case-stats { flex-wrap: wrap; gap: 20px; }

    .svc-hero-strip { grid-template-columns: 1fr 1fr; }
    .strip-item strong { font-size: 24px; }

    .why-track { grid-template-columns: repeat(6, 85vw); }

    .timeline { padding-left: 56px; }
    .tl-dot { left: -56px; width: 42px; height: 42px; }
    .tl-content { padding: 20px 22px; }

    .ben-row {
        grid-template-columns: 60px 1fr 30px;
        gap: 16px;
    }
    .ben-num { font-size: 24px; }
}