/* ======= STARTER THEME - MAIN CSS ======= */
:root {
    --bg: #ffffff;
    --bg2: #f8fafc;
    --bg3: #f1f5f9;
    --dark: #0a0f1e;
    --ink: #0f172a;
    --slate: #64748b;
    --light: #94a3b8;
    --blue: #2563eb;
    --blue-d: #1d4ed8;
    --blue-l: #eff6ff;
    --blue-viv: #3b82f6;
    --green: #10b981;
    --green-l: #ecfdf5;
    --orange: #f59e0b;
    --orange-l: #fffbeb;
    --red: #ef4444;
    --purple: #8b5cf6;
    --purple-l: #f5f3ff;
    --teal: #14b8a6;
    --pink: #ec4899;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 28px;
    --r-3xl: 36px;
    --r-full: 9999px;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --spring: cubic-bezier(.34, 1.56, .64, 1);
    --t-fast: 200ms var(--ease);
    --t-base: 400ms var(--ease);
    --t-slow: 600ms var(--ease);
}

[data-theme="dark"] {
    --bg: #0c0f1a;
    --bg2: #111627;
    --bg3: #1a1f35;
    --dark: #f8fafc;
    --ink: #e2e8f0;
    --slate: #94a3b8;
    --light: #64748b;
    --blue: #3b82f6;
    --blue-d: #60a5fa;
    --blue-l: rgba(59, 130, 246, .1);
    --blue-viv: #60a5fa;
    --green-l: rgba(16, 185, 129, .1);
    --orange-l: rgba(245, 158, 11, .1);
    --purple-l: rgba(139, 92, 246, .1);
    --purple: #a78bfa;
    --green: #34d399;
    --orange: #fbbf24;
    --red: #f87171;
    --teal: #2dd4bf;
    --pink: #f472b6;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: var(--ink)
}

h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 3rem)
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem)
}

p {
    line-height: 1.7;
    color: var(--slate)
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--t-base)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.ctn {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

/* ======= HEADER ======= */
.hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    transition: var(--t-base)
}

.hdr.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, .06)
}

.hdr-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 2rem
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    z-index: 1001;
    letter-spacing: -.02em
}

.logo span {
    color: var(--blue)
}

.nav ul {
    display: flex;
    gap: .35rem;
    list-style: none
}

.nav a {
    font-weight: 500;
    font-size: .875rem;
    color: var(--slate);
    padding: .45rem .9rem;
    border-radius: var(--r-full);
    transition: var(--t-fast)
}

.nav a:hover {
    color: var(--blue);
    background: var(--blue-l)
}

.hdr-cta {
    background: var(--ink);
    color: #fff;
    padding: .55rem 1.35rem;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: .825rem;
    transition: var(--t-base)
}

.hdr-cta:hover {
    background: var(--blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .3)
}

.nav-cta-wrap {
    display: none
}

.mob-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    z-index: 1001
}

.mob-toggle i {
    font-size: 1.4rem;
    color: var(--ink)
}

.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity .3s ease
}

.mob-overlay.on {
    opacity: 1
}

/* ======= HERO ======= */
.hero {
    padding: 9rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: var(--bg)
}

.hero-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0
}

.hero-mesh .b {
    position: absolute;
    filter: blur(80px);
    opacity: .45;
    animation: float 20s ease-in-out infinite
}

.hero-mesh .b1 {
    width: 550px;
    height: 550px;
    background: rgba(37, 99, 235, .12);
    top: -15%;
    right: -8%;
    animation-delay: 0s
}

.hero-mesh .b2 {
    width: 450px;
    height: 450px;
    background: rgba(139, 92, 246, .08);
    bottom: -8%;
    left: -8%;
    animation-delay: -7s;
    animation-duration: 25s
}

.hero-mesh .b3 {
    width: 350px;
    height: 350px;
    background: rgba(16, 185, 129, .06);
    top: 35%;
    left: 45%;
    animation-delay: -12s;
    animation-duration: 18s
}

/* Grid dots */
.hero-dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(rgba(37, 99, 235, .06) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%)
}

.hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(37, 99, 235, .1);
    border-radius: var(--r-full);
    font-size: .78rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .03)
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, .5);
    animation: pulse-dot 2s ease-in-out infinite
}

.hero h1 {
    margin-bottom: 1.25rem;
    line-height: 1.08;
    letter-spacing: -.04em
}

.grad {
    background: linear-gradient(135deg, var(--blue), var(--purple), var(--blue-viv));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease-in-out infinite
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 2.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.hero-sub strong {
    color: var(--ink);
    font-weight: 700
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: .65rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem
}

.btn-p {
    background: var(--blue);
    color: #fff;
    padding: .8rem 1.85rem;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .28);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--t-base)
}

.btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, .38);
    background: var(--blue-d)
}

.btn-p i {
    transition: transform .3s var(--spring)
}

.btn-p:hover i {
    transform: translateX(3px)
}

.btn-s {
    background: #fff;
    color: var(--ink);
    padding: .8rem 1.85rem;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: .9rem;
    border: 1.5px solid rgba(0, 0, 0, .08);
    transition: var(--t-base)
}

.btn-s:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
    transform: translateY(-2px)
}

/* Stats bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: var(--r-2xl);
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
    overflow: hidden
}

.stat {
    text-align: center;
    padding: 1.75rem 1rem;
    position: relative
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 22%;
    height: 56%;
    width: 1px;
    background: rgba(0, 0, 0, .05)
}

.stat-v {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    font-family: 'Sora', sans-serif;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: .3rem
}

.stat-v em {
    font-style: normal;
    color: var(--blue)
}

.stat-l {
    font-size: .7rem;
    font-weight: 600;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: .1em
}

/* ======= PLATFORM LOGOS BAR ======= */
.platforms {
    padding: 2.5rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    background: var(--bg2)
}

.platforms-label {
    text-align: center;
    font-size: .7rem;
    font-weight: 600;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 1.25rem
}

.plat-track-wrap {
    position: relative;
    width: 100%;
    overflow: hidden
}

.plat-track-wrap::before,
.plat-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2
}

.plat-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg2), transparent)
}

.plat-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg2), transparent)
}

.plat-track {
    display: flex;
    gap: 2.5rem;
    animation: marquee 35s linear infinite;
    width: max-content;
    align-items: center
}

.plat-track:hover {
    animation-play-state: paused
}

.plat-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .85rem;
    color: var(--slate);
    opacity: .45;
    transition: opacity .3s;
    white-space: nowrap
}

.plat-item:hover {
    opacity: .85
}

.plat-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0
}

/* ======= CLIENTS TRUST MARQUEE ======= */
.clients-trust {
    padding: 2.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, .04);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    background: var(--bg)
}

.clients-label {
    text-align: center;
    font-size: .7rem;
    font-weight: 600;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 1.25rem
}

.clients-track-wrap::before {
    background: linear-gradient(to right, var(--bg), transparent) !important
}

.clients-track-wrap::after {
    background: linear-gradient(to left, var(--bg), transparent) !important
}

.clients-track {
    animation-duration: 25s
}

.client-item {
    font-size: .9rem;
    font-weight: 700;
    opacity: .5;
    letter-spacing: -.01em
}

.client-item:hover {
    opacity: .9;
    color: var(--blue)
}

/* ======= SECTIONS ======= */
.sec {
    padding: 5.5rem 0
}

.sec-h {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem
}

.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    border-radius: var(--r-full);
    font-size: .7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: .06em
}

.sec-badge.default {
    background: var(--blue-l);
    color: var(--blue)
}

.sec-badge.green {
    background: var(--green-l);
    color: var(--green)
}

.sec-badge.purple {
    background: var(--purple-l);
    color: var(--purple)
}

.sec-badge.orange {
    background: var(--orange-l);
    color: var(--orange)
}

.sec-t {
    margin-bottom: .85rem
}

.sec-sub {
    font-size: 1.05rem
}

/* ======= SERVICES SLIDER ======= */
.svc-slider-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -2rem;
    padding: 0 2rem
}

.svc-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 1rem 0 1.5rem
}

.svc-slider::-webkit-scrollbar {
    display: none
}

.svc-slider .svc {
    min-width: 320px;
    max-width: 360px;
    flex-shrink: 0;
    scroll-snap-align: start
}

.svc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--t-base);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    font-size: 1.1rem;
    color: var(--ink)
}

.svc-nav:hover {
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
    transform: translateY(-50%) scale(1.05)
}

.svc-nav.disabled {
    opacity: .3;
    cursor: default;
    pointer-events: none
}

.svc-nav.prev {
    left: .5rem
}

.svc-nav.next {
    right: .5rem
}

.svc-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: .5rem
}

.svc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg3);
    border: none;
    cursor: pointer;
    transition: var(--t-fast);
    padding: 0
}

.svc-dot.active {
    background: var(--blue);
    width: 24px;
    border-radius: 4px
}

/* ======= SERVICES - COMPACT CARDS ======= */
.svc {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--r-xl);
    padding: 1.5rem;
    transition: var(--t-base);
    position: relative;
    overflow: hidden;
    cursor: default
}

.svc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease)
}

.svc:hover::before {
    transform: scaleX(1)
}

.svc:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .07)
}

/* Color accents per card */
.svc.c-blue::before {
    background: linear-gradient(90deg, var(--blue), var(--blue-viv))
}

.svc.c-blue:hover {
    border-color: rgba(37, 99, 235, .15)
}

.svc.c-green::before {
    background: linear-gradient(90deg, var(--green), #34d399)
}

.svc.c-green:hover {
    border-color: rgba(16, 185, 129, .15)
}

.svc.c-purple::before {
    background: linear-gradient(90deg, var(--purple), #a78bfa)
}

.svc.c-purple:hover {
    border-color: rgba(139, 92, 246, .15)
}

.svc.c-orange::before {
    background: linear-gradient(90deg, var(--orange), #fbbf24)
}

.svc.c-orange:hover {
    border-color: rgba(245, 158, 11, .15)
}

.svc.c-red::before {
    background: linear-gradient(90deg, var(--red), #f87171)
}

.svc.c-red:hover {
    border-color: rgba(239, 68, 68, .15)
}

.svc.c-teal::before {
    background: linear-gradient(90deg, var(--teal), #2dd4bf)
}

.svc.c-teal:hover {
    border-color: rgba(20, 184, 166, .15)
}

.svc.c-pink::before {
    background: linear-gradient(90deg, var(--pink), #f472b6)
}

.svc.c-pink:hover {
    border-color: rgba(236, 72, 153, .15)
}

.svc.c-indigo::before {
    background: linear-gradient(90deg, #6366f1, #818cf8)
}

.svc.c-indigo:hover {
    border-color: rgba(99, 102, 241, .15)
}

.svc.c-dark::before {
    background: linear-gradient(90deg, #1e1e1e, #444)
}

.svc.c-dark:hover {
    border-color: rgba(0, 0, 0, .15)
}

.svc-ico.dark {
    background: rgba(0, 0, 0, .06);
    color: #1e1e1e
}

.svc-top {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    margin-bottom: .85rem
}

.svc-ico {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t-base)
}

.svc:hover .svc-ico {
    transform: scale(1.08) rotate(2deg)
}

.svc-ico svg {
    width: 22px;
    height: 22px
}

.svc-ico.blue {
    background: rgba(37, 99, 235, .08);
    color: var(--blue)
}

.svc-ico.green {
    background: rgba(16, 185, 129, .08);
    color: var(--green)
}

.svc-ico.purple {
    background: rgba(139, 92, 246, .08);
    color: var(--purple)
}

.svc-ico.orange {
    background: rgba(245, 158, 11, .08);
    color: var(--orange)
}

.svc-ico.red {
    background: rgba(239, 68, 68, .08);
    color: var(--red)
}

.svc-ico.teal {
    background: rgba(20, 184, 166, .08);
    color: var(--teal)
}

.svc-ico.pink {
    background: rgba(236, 72, 153, .08);
    color: var(--pink)
}

.svc-ico.indigo {
    background: rgba(99, 102, 241, .08);
    color: #6366f1
}

.svc-info h3 {
    font-size: 1rem;
    letter-spacing: -.015em;
    margin-bottom: .15rem
}

.svc-info .svc-tag {
    font-size: .65rem;
    font-weight: 600;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: .06em
}

.svc-desc {
    font-size: .85rem;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: .85rem
}

/* Compact features - 2 cols */
.svc-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .3rem .6rem;
    margin-bottom: .85rem
}

.svc-feats span {
    font-size: .75rem;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: .3rem;
    line-height: 1.35
}

.svc-feats span::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0
}

.svc-result {
    padding: .55rem .75rem;
    background: var(--bg2);
    border-radius: var(--r-sm);
    font-size: .75rem;
    color: var(--ink);
    font-weight: 600;
    border-left: 2.5px solid var(--blue);
    display: flex;
    align-items: center;
    gap: .4rem
}

/* Expandable on mobile */
.svc-expand {
    display: none
}

/* Service card link */
.svc-link {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease
}

.svc-link:hover {
    color: var(--blue)
}

.svc-cta-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .85rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: gap .2s ease, color .2s ease
}

.svc-cta-link:hover {
    gap: .55rem;
    color: var(--blue-d)
}

.svc-cta-link i {
    font-size: .75rem;
    transition: transform .2s ease
}

.svc-cta-link:hover i {
    transform: translateX(3px)
}

/* ======= RESULTS / CASE STUDIES ======= */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.case {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--r-xl);
    padding: 1.5rem;
    transition: var(--t-base);
    position: relative;
    overflow: hidden
}

.case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease)
}

.case:hover::before {
    transform: scaleX(1)
}

.case:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, .08)
}

.case.feat {
    border-color: rgba(37, 99, 235, .12);
    background: linear-gradient(135deg, rgba(239, 246, 255, .5), #fff)
}

.case.feat::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--blue), var(--green))
}

.case-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--blue-l);
    color: var(--blue);
    border-radius: var(--r-full);
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .6rem
}

.case h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    letter-spacing: -.02em
}

.case-metrics {
    display: flex;
    gap: .6rem;
    margin-bottom: 1rem;
    flex-wrap: wrap
}

.case-m {
    flex: 1;
    min-width: 80px;
    background: var(--bg2);
    border-radius: var(--r-md);
    padding: .7rem .5rem;
    text-align: center;
    transition: var(--t-base)
}

.case-m.hl {
    background: linear-gradient(135deg, var(--blue-l), rgba(37, 99, 235, .12));
    border: 1px solid rgba(37, 99, 235, .1)
}

.case:hover .case-m {
    background: var(--blue-l)
}

.case:hover .case-m.hl {
    background: linear-gradient(135deg, var(--blue), var(--blue-d))
}

.case:hover .case-m.hl .case-mv {
    color: #fff
}

.case:hover .case-m.hl .case-ml {
    color: rgba(255, 255, 255, .8)
}

.case-mv {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blue);
    font-family: 'Sora', sans-serif;
    line-height: 1;
    margin-bottom: .15rem;
    letter-spacing: -.02em
}

.case-m.hl .case-mv {
    color: var(--blue)
}

.case-ml {
    display: block;
    font-size: .6rem;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: .06em
}

.case-det {
    font-size: .8rem;
    line-height: 1.55;
    color: var(--slate);
    padding-top: .75rem;
    border-top: 1px solid rgba(0, 0, 0, .04)
}

.case-det strong {
    color: var(--ink);
    font-weight: 600
}

.case-period {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    color: var(--light);
    font-weight: 500;
    margin-bottom: .6rem
}

.case-period i {
    font-size: .8rem
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: .75rem
}

.case-tag {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: 3px 10px;
    background: var(--bg2);
    border-radius: var(--r-full);
    font-size: .68rem;
    font-weight: 600;
    color: var(--slate)
}

.case-tag i {
    font-size: .75rem;
    color: var(--blue)
}

.res-cat {
    margin: 3rem 0 1.5rem;
    text-align: center
}

.res-cat h3 {
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    position: relative;
    padding-bottom: .4rem
}

.res-cat h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px
}

/* ======= METHODOLOGY TIMELINE ======= */
.timeline {
    position: relative;
    max-width: 860px;
    margin: 3rem auto 0
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), var(--purple), var(--green));
    border-radius: 2px
}

.tl-step {
    position: relative;
    padding-left: 72px;
    padding-bottom: 2.5rem
}

.tl-step:last-child {
    padding-bottom: 0
}

.tl-num {
    position: absolute;
    top: 0;
    left: 8px;
    width: 42px;
    height: 42px;
    background: #fff;
    border: 2px solid var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-weight: 800;
    font-size: .95rem;
    font-family: 'Sora', sans-serif;
    z-index: 1;
    transition: var(--t-base)
}

.tl-step:hover .tl-num {
    background: var(--blue);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 99, 235, .25)
}

.tl-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--r-xl);
    padding: 1.5rem;
    transition: var(--t-base)
}

.tl-step:hover .tl-card {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    transform: translateX(4px)
}

.tl-card h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem
}

.tl-card p {
    font-size: .88rem;
    line-height: 1.65
}

/* ======= WHY ME - BENTO GRID ======= */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem
}

.bento-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--r-xl);
    padding: 1.75rem;
    transition: var(--t-base);
    position: relative;
    overflow: hidden
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .06)
}

/* Featured big card */
.bento-card.big {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    background: linear-gradient(135deg, var(--blue-l), #fff);
    border-color: rgba(37, 99, 235, .1)
}

.bento-card.big .bento-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, .04);
    border-radius: var(--r-lg);
    padding: 2rem;
    aspect-ratio: 1
}

.bento-card.big .bento-visual svg {
    width: 80px;
    height: 80px;
    opacity: .6
}

.bento-card .b-ico {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: var(--t-base)
}

.bento-card:hover .b-ico {
    transform: scale(1.1) rotate(3deg)
}

.bento-card:nth-child(1) .b-ico {
    background: rgba(37, 99, 235, .08);
    color: var(--blue)
}

.bento-card:nth-child(2) .b-ico {
    background: rgba(16, 185, 129, .08);
    color: var(--green)
}

.bento-card:nth-child(3) .b-ico {
    background: rgba(139, 92, 246, .08);
    color: var(--purple)
}

.bento-card:nth-child(4) .b-ico {
    background: rgba(245, 158, 11, .08);
    color: var(--orange)
}

.bento-card:nth-child(5) .b-ico {
    background: rgba(239, 68, 68, .08);
    color: var(--red)
}

.bento-card:nth-child(6) .b-ico {
    background: rgba(20, 184, 166, .08);
    color: var(--teal)
}

.bento-card h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem
}

.bento-card p {
    font-size: .88rem;
    line-height: 1.6
}

/* Colored accent bar at bottom of some cards */
.bento-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px
}

.bento-accent.blue {
    background: linear-gradient(90deg, var(--blue), var(--blue-viv))
}

.bento-accent.green {
    background: linear-gradient(90deg, var(--green), #34d399)
}

/* ======= INLINE CTA ======= */
.inline-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, .05)
}

.inline-cta p {
    font-size: .95rem;
    color: var(--slate);
    margin-bottom: 1rem
}

.inline-cta p strong {
    color: var(--ink)
}

.inline-cta-btns {
    display: flex;
    gap: .6rem;
    justify-content: center;
    flex-wrap: wrap
}

.btn-inline {
    padding: .65rem 1.5rem;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: var(--t-base)
}

.btn-inline.primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, .2)
}

.btn-inline.primary:hover {
    background: var(--blue-d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, .3)
}

.btn-inline.secondary {
    background: var(--bg2);
    color: var(--ink);
    border: 1px solid rgba(0, 0, 0, .06)
}

.btn-inline.secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px)
}

.btn-inline.wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .2)
}

.btn-inline.wa:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .3)
}

/* Skip Link */
.skip-link-screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link-screen-reader-text:focus-within {
    background-color: #fff;
    clip: auto !important;
    clip-path: none;
    height: auto;
    width: auto;
    display: block;
    font-size: 1rem;
    font-weight: bold;
    padding: 1rem;
    left: 1rem;
    top: 1rem;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: var(--r-md);
}

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

/* ======= TESTIMONIALS ======= */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.testi {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--r-xl);
    padding: 1.75rem;
    transition: var(--t-base);
    position: relative
}

.testi:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .06)
}

.testi-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem
}

.testi-stars i {
    color: var(--orange);
    font-size: .95rem
}

.testi-quote {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 1.25rem;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--blue-l)
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
    color: #fff;
    flex-shrink: 0
}

.testi-avatar.av-blue {
    background: var(--blue)
}

.testi-avatar.av-green {
    background: var(--green)
}

.testi-avatar.av-purple {
    background: var(--purple)
}

.testi-avatar.av-orange {
    background: var(--orange)
}

.testi-avatar.av-teal {
    background: var(--teal)
}

.testi-avatar.av-pink {
    background: var(--pink)
}

.testi-meta h4 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .1rem
}

.testi-meta p {
    font-size: .72rem;
    color: var(--light);
    margin: 0;
    line-height: 1.3
}

.testi-service {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: 2px 8px;
    background: var(--blue-l);
    color: var(--blue);
    border-radius: var(--r-full);
    font-size: .62rem;
    font-weight: 700;
    margin-top: .35rem
}

/* ======= CERTIFICATIONS ======= */
.certs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem
}

.cert {
    background: var(--bg);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--r-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--t-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem
}

.cert:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08)
}

.cert.hl {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--orange);
    grid-column: span 2
}

.cert-b {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: var(--r-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--bg2);
    overflow: hidden
}

.cert-b.g {
    background: #4285f4;
    color: #fff
}

.cert-b.h {
    background: #ff7a59;
    color: #fff
}

.cert-b.s {
    background: var(--blue);
    color: #fff
}

.cert-b.y {
    background: #f00;
    color: #fff
}

.cert-b.e {
    background: var(--orange);
    color: #fff;
    font-size: 1.6rem
}

.cert h4 {
    font-size: .92rem;
    margin-bottom: .3rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink)
}

.cert p {
    font-size: .78rem;
    color: var(--slate);
    margin: 0 0 .5rem
}

.cert-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
    padding-top: .35rem
}

.cert-date-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--orange);
    color: #fff;
    border-radius: var(--r-full);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .02em
}

.cert-hl {
    display: inline-block;
    margin-top: .65rem;
    padding: 5px 14px;
    background: var(--orange);
    color: #fff;
    border-radius: var(--r-full);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .02em
}

.cert-b-img {
    background: #fff;
    overflow: hidden;
    width: 100px;
    height: 100px;
    border-radius: var(--r-xl);
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08)
}

.cert-b-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--r-md)
}

.cert-verify {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .75rem;
    color: var(--blue);
    font-weight: 600;
    transition: var(--t-fast)
}

.cert-verify:hover {
    color: var(--blue-d)
}

.cert-verify i {
    font-size: .82rem
}

/* ======= FAQ ACCORDION ======= */
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--t-base)
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, .15)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .92rem;
    color: var(--ink);
    gap: 1rem;
    user-select: none
}

.faq-q i {
    font-size: .85rem;
    color: var(--light);
    transition: transform .3s var(--ease);
    flex-shrink: 0
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
    color: var(--blue)
}

.faq-item.open .faq-q {
    color: var(--blue)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease)
}

.faq-a p {
    padding: 0 1.25rem 1.1rem;
    font-size: .88rem;
    color: var(--slate);
    line-height: 1.7;
    margin: 0
}

.faq-item.open .faq-a {
    max-height: 300px
}

/* ======= TOOLS (DARK) ======= */
.tools-wrap {
    background: var(--dark);
    border-radius: var(--r-3xl);
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden
}

.tools-wrap::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, .12), transparent 70%);
    border-radius: 50%
}

.tools-wrap::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, .08), transparent 70%);
    border-radius: 50%
}

.tools-wrap .sec-h {
    position: relative;
    z-index: 1
}

.tools-wrap .sec-badge {
    background: rgba(37, 99, 235, .2);
    color: #93c5fd
}

.tools-wrap .sec-t {
    color: #fff
}

.tools-wrap .sec-sub {
    color: #94a3b8
}

.t-cat {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1
}

.t-cat:last-child {
    margin-bottom: 0
}

.t-cat-title {
    font-size: .95rem;
    margin-bottom: .65rem;
    color: #e2e8f0;
    font-weight: 600
}

.t-list {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.t-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .7rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r-full);
    font-size: .75rem;
    font-weight: 500;
    color: #cbd5e1;
    transition: var(--t-base)
}

.t-pill:hover {
    background: rgba(37, 99, 235, .18);
    border-color: rgba(37, 99, 235, .35);
    color: #93c5fd;
    transform: translateY(-1px)
}

.t-pill svg {
    width: 14px;
    height: 14px
}

/* ======= CTA ======= */
.cta-box {
    background: var(--ink);
    color: #fff;
    text-align: center;
    padding: 4.5rem 2rem;
    border-radius: var(--r-3xl);
    position: relative;
    overflow: hidden
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, .2), transparent 70%)
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, .12), transparent 70%)
}

.cta-urg {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(239, 68, 68, .12);
    color: #fca5a5;
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1
}

.cta-box h2 {
    color: #fff;
    margin-bottom: .85rem;
    position: relative;
    z-index: 1;
    font-size: clamp(1.6rem, 3vw, 2.25rem)
}

.cta-box .cta-sub {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.cta-btns {
    display: flex;
    gap: .65rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1
}

.cta-btn-p {
    background: #fff;
    color: var(--ink);
    padding: .9rem 2.25rem;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: var(--t-base)
}

.cta-btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 255, 255, .12)
}

.cta-btn-s {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: .9rem 2.25rem;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: var(--t-base)
}

.cta-btn-s:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
    transform: translateY(-2px)
}

.cta-note {
    color: #475569;
    font-size: .8rem;
    position: relative;
    z-index: 1
}

/* ======= BLOG POST LAYOUT ======= */
.post-single-layout {
    max-width: 820px;
    margin: 0 auto
}

.post-main {
    min-width: 0
}

/* TOC Flottant Latéral */
.toc-float {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 990;
    display: none;
    transition: opacity .3s var(--ease)
}

.toc-float.toc-visible {
    display: flex;
    align-items: stretch
}

/* Tab (flèche d'ouverture) */
.toc-float-tab {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    width: 40px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, .08);
    border-right: none;
    border-radius: var(--r-md) 0 0 var(--r-md);
    cursor: pointer;
    padding: .6rem .35rem;
    font-family: inherit;
    color: var(--blue);
    transition: var(--t-base);
    box-shadow: -2px 0 12px rgba(0, 0, 0, .06)
}

.toc-float-tab:hover {
    background: var(--blue-l);
    width: 44px
}

.toc-float-ico {
    font-size: 1.1rem
}

.toc-float-arrow {
    font-size: .75rem;
    color: var(--slate);
    transition: transform .3s var(--ease)
}

.toc-float.toc-open .toc-float-arrow {
    transform: rotate(180deg)
}

/* Panneau slide */
.toc-float-panel {
    width: 0;
    max-width: 300px;
    overflow: hidden;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, .08);
    border-right: none;
    border-radius: var(--r-lg) 0 0 var(--r-lg);
    box-shadow: -4px 0 24px rgba(0, 0, 0, .08);
    transition: width .35s var(--ease);
    display: flex;
    flex-direction: column;
    max-height: 70vh
}

.toc-float.toc-open .toc-float-panel {
    width: 280px
}

/* Header du panneau */
.toc-float-header {
    padding: .85rem 1rem .6rem;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    flex-shrink: 0
}

.toc-float-title {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .5rem
}

.toc-float-title i {
    color: var(--blue);
    font-size: 1rem
}

.toc-float-progress {
    height: 2px;
    background: var(--bg3);
    border-radius: 2px;
    overflow: hidden
}

.toc-float-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    border-radius: 2px;
    width: 0;
    transition: width .15s ease
}

/* Zone nav scrollable */
.toc-float-nav {
    overflow-y: auto;
    padding: .5rem .75rem .75rem;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--bg3) transparent
}

.toc-float-nav::-webkit-scrollbar {
    width: 4px
}

.toc-float-nav::-webkit-scrollbar-track {
    background: transparent
}

.toc-float-nav::-webkit-scrollbar-thumb {
    background: var(--bg3);
    border-radius: 4px
}

/* TOC List Hierarchy */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-h2
}

.toc-list>li {
    margin-bottom: .1rem
}

.toc-sublist {
    list-style: none;
    padding: 0 0 0 1rem;
    margin: .1rem 0 .2rem
}

/* TOC Links */
.toc-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: .4rem .6rem;
    border-radius: var(--r-sm);
    transition: var(--t-fast);
    line-height: 1.35;
    border-left: 2px solid transparent
}

.toc-link:hover {
    background: var(--blue-l);
    color: var(--blue)
}

.toc-link.active {
    background: var(--blue-l);
    color: var(--blue);
    font-weight: 600;
    border-left-color: var(--blue)
}

.toc-h2 {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink)
}

.toc-h2::before {
    counter-increment: toc-h2;
    content: counter(toc-h2) '.';
    margin-right: .4rem;
    color: var(--blue);
    font-weight: 700;
    font-size: .72rem;
    min-width: 1rem
}

.toc-h3 {
    font-size: .72rem;
    font-weight: 500;
    color: var(--slate);
    padding: .3rem .6rem
}

.toc-h3::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--light);
    flex-shrink: 0;
    margin-right: .4rem
}

.toc-h3.active {
    color: var(--blue);
    font-weight: 600
}

.toc-h3.active::before {
    background: var(--blue)
}

/* Summary / TL;DR Box */
.post-summary {
    background: linear-gradient(135deg, rgba(37, 99, 235, .05), rgba(139, 92, 246, .05));
    border: 1.5px solid rgba(37, 99, 235, .15);
    border-radius: var(--r-xl);
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden
}

.post-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue), var(--purple));
    border-radius: 4px 0 0 4px
}

.post-summary--auto {
    background: var(--bg2);
    border-color: rgba(0, 0, 0, .08)
}

.post-summary--auto::before {
    background: linear-gradient(180deg, var(--slate), var(--light))
}

.summary-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .9rem;
    color: var(--ink);
    margin-bottom: .85rem;
    padding-bottom: .65rem;
    border-bottom: 1px dashed rgba(37, 99, 235, .15)
}

.summary-header i {
    color: var(--orange);
    font-size: 1.15rem
}

.summary-text {
    font-size: .88rem;
    color: var(--slate);
    line-height: 1.7;
    margin: 0 0 .75rem
}

.summary-text:last-child {
    margin-bottom: 0
}

.summary-points {
    list-style: none;
    padding: 0;
    margin: 0 0 .75rem;
    display: flex;
    flex-direction: column;
    gap: .45rem
}

.summary-points li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .85rem;
    color: var(--slate);
    line-height: 1.6
}

.summary-points li i {
    color: var(--green);
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 3px
}

.summary-answer {
    font-size: .88rem;
    color: var(--ink);
    padding: .85rem 1rem;
    background: rgba(255, 255, 255, .7);
    border-radius: var(--r-md);
    border-left: 3px solid var(--blue);
    line-height: 1.6;
    margin-top: .5rem
}

.summary-answer strong {
    color: var(--blue);
    font-weight: 700
}

/* ======= PRICING TABLE ======= */
.pricing-grid {
    display: grid;
    gap: 1.25rem;
    max-width: 960px;
    margin: 2rem auto 0
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--r-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--t-base)
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .08)
}

.pricing-card.popular {
    border: 2px solid var(--blue);
    box-shadow: 0 8px 28px rgba(37, 99, 235, .12)
}

.pricing-pop {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: .25rem .85rem;
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: .05em
}

.pricing-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.pricing-price {
    margin-bottom: .75rem
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    font-family: 'Sora', sans-serif;
    letter-spacing: -.03em
}

.pricing-period {
    font-size: .85rem;
    color: var(--light);
    font-weight: 500
}

.pricing-desc {
    font-size: .82rem;
    color: var(--slate);
    margin-bottom: 1.25rem;
    line-height: 1.6
}

.pricing-feats {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 0
}

.pricing-feats li {
    font-size: .82rem;
    color: var(--slate);
    padding: .4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    display: flex;
    align-items: center;
    gap: .5rem
}

.pricing-feats li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0
}

.pricing-btn {
    display: block;
    background: var(--blue);
    color: #fff;
    padding: .75rem 1.5rem;
    border-radius: var(--r-lg);
    font-weight: 700;
    font-size: .88rem;
    text-align: center;
    transition: var(--t-base)
}

.pricing-btn:hover {
    background: var(--blue-d);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
    color: #fff
}

.pricing-card.popular .pricing-btn {
    background: var(--ink)
}

.pricing-card.popular .pricing-btn:hover {
    background: var(--blue)
}

/* ======= HERO BANNER (block) ======= */
.hero-block {
    text-align: center;
    padding: 4rem 2rem;
    position: relative
}

.hero-block--left {
    text-align: left
}

.hero-block--left .hero-ctas {
    justify-content: flex-start
}

/* ======= IMAGE + TEXTE ======= */
.img-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0
}

.img-text--reversed .img-text-media {
    order: 2
}

.img-text--reversed .img-text-content {
    order: 1
}

.img-text-media {
    border-radius: var(--r-xl);
    overflow: hidden
}

.img-text-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-xl)
}

.img-text-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 1rem
}

.img-text-content p {
    font-size: .95rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.img-text-content .btn-p {
    display: inline-flex
}

/* ======= LOGO BAR ======= */
.logo-bar {
    text-align: center;
    padding: 2rem 0
}

.logo-bar-label {
    font-size: .7rem;
    font-weight: 600;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 1.25rem
}

.logo-bar-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem
}

.logo-bar-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-weight: 700;
    font-size: .88rem;
    color: var(--slate);
    opacity: .5;
    transition: var(--t-base)
}

.logo-bar-item:hover {
    opacity: .85;
    color: var(--blue)
}

.logo-bar-item i {
    font-size: 1.3rem
}

/* ======= CHECKLIST ======= */
.checklist-block {
    padding: 1.5rem 0
}

.checklist-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .5rem
}

.checklist--2col {
    grid-template-columns: 1fr 1fr
}

.checklist li {
    font-size: .88rem;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem 0
}

.checklist li i {
    font-size: 1rem;
    flex-shrink: 0
}

/* ======= AVANT / APRES ======= */
.ba-block {
    max-width: 800px;
    margin: 2rem auto 0
}

.ba-table {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--r-xl);
    overflow: hidden
}

.ba-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--bg2);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--light)
}

.ba-header>div {
    padding: .85rem 1rem
}

.ba-h-before {
    text-align: center;
    color: var(--red)
}

.ba-h-after {
    text-align: center;
    color: var(--green)
}

.ba-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid rgba(0, 0, 0, .04);
    transition: var(--t-base)
}

.ba-row:hover {
    background: var(--bg2)
}

.ba-row>div {
    padding: .85rem 1rem;
    font-size: .88rem
}

.ba-label {
    font-weight: 600;
    color: var(--ink)
}

.ba-before {
    text-align: center;
    color: var(--red);
    font-weight: 500
}

.ba-after {
    text-align: center;
    color: var(--green);
    font-weight: 700
}

/* ======= BREADCRUMBS ======= */
.breadcrumbs {
    padding: .75rem 0;
    font-size: .78rem;
    color: var(--slate);
    background: var(--bg)
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0
}

.breadcrumb-item a {
    color: var(--slate);
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    transition: var(--t-fast)
}

.breadcrumb-item a:hover {
    color: var(--blue)
}

.breadcrumb-item.active {
    color: var(--ink);
    font-weight: 600
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    color: var(--light);
    margin-right: .1rem;
    font-size: .7rem
}

/* ======= AI SUMMARY BAR ======= */
.ai-summary-bar {
    padding: .85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .04)
}

.ai-summary-inner {
    display: flex;
    align-items: center;
    gap: .85rem;
    justify-content: center;
    flex-wrap: wrap
}

.ai-summary-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--slate)
}

.ai-summary-label i {
    font-size: 1rem;
    color: var(--orange)
}

.ai-summary-btns {
    display: flex;
    align-items: center;
    gap: .45rem
}

.ai-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-base);
    border: 1px solid rgba(0, 0, 0, .06);
    background: var(--bg2);
    color: var(--slate);
    cursor: pointer;
    overflow: hidden
}

.ai-btn svg,
.ai-btn img {
    width: 20px;
    height: 20px;
    transition: transform .2s var(--ease);
    object-fit: contain;
    border-radius: 0
}

.ai-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.ai-btn:hover svg,
.ai-btn:hover img {
    transform: scale(1.1)
}

.ai-chatgpt:hover {
    background: #10a37f;
    border-color: #10a37f
}

.ai-chatgpt:hover img {
    filter: brightness(0) invert(1)
}

.ai-claude:hover {
    background: #d97706;
    border-color: #d97706
}

.ai-claude:hover img {
    filter: brightness(0) invert(1)
}

.ai-perplexity:hover {
    background: #1fb8cd;
    border-color: #1fb8cd
}

.ai-perplexity:hover img {
    filter: brightness(0) invert(1)
}

/* ======= SHARE BUTTONS ======= */
.share-buttons {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap
}

.share-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--slate);
    margin-right: .2rem
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: var(--t-base);
    border: 1px solid rgba(0, 0, 0, .06);
    background: var(--bg2);
    color: var(--slate);
    cursor: pointer
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08)
}

.share-linkedin:hover {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5
}

.share-twitter:hover {
    background: #0f1419;
    color: #fff;
    border-color: #0f1419
}

.share-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366
}

.share-copy:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.share-copy.copied {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    font-size: .65rem;
    font-weight: 600;
    gap: .15rem
}

/* ======= TESTIMONIAL SLIDER (block) ======= */
.testi-slider-block {
    padding: 2rem 0;
    overflow: hidden
}

.testi-slider-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .5rem
}

.testi-slider-track::-webkit-scrollbar {
    display: none
}

.testi-slider-track .testi-card {
    min-width: 320px;
    max-width: 380px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--bg);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--r-xl);
    padding: 1.75rem;
    transition: var(--t-base)
}

.testi-slider-track .testi-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    transform: translateY(-2px)
}

.testi-card .testi-stars {
    display: flex;
    gap: .15rem;
    margin-bottom: .75rem
}

.testi-card .testi-stars i {
    color: var(--orange);
    font-size: .9rem
}

.testi-card .testi-text {
    font-size: .9rem;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-style: italic
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.testi-card .testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0
}

.testi-card .testi-avatar.av-blue {
    background: var(--blue)
}

.testi-card .testi-avatar.av-green {
    background: var(--green)
}

.testi-card .testi-avatar.av-purple {
    background: var(--purple)
}

.testi-card .testi-avatar.av-orange {
    background: var(--orange)
}

.testi-card .testi-name {
    font-size: .88rem;
    font-weight: 700;
    margin: 0 0 .1rem
}

.testi-card .testi-role {
    font-size: .75rem;
    color: var(--light)
}

/* ======= CERTIFICATION CARD (block) ======= */
.cert-block-card {
    background: var(--bg2);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--r-xl);
    padding: 1.5rem;
    text-align: center;
    transition: var(--t-base)
}

.cert-block-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
}

.cert-block-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center
}

.cert-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cert-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .3rem
}

.cert-issuer {
    font-size: .82rem;
    color: var(--slate);
    margin-bottom: .3rem
}

.cert-date {
    font-size: .72rem;
    color: var(--light);
    display: block;
    margin-bottom: .5rem
}

.cert-cred {
    font-size: .7rem;
    color: var(--light);
    display: block;
    margin-bottom: .5rem
}

/* ======= FOOTER ======= */
.ft {
    background: var(--dark);
    color: #fff;
    padding: 3.5rem 0 1.5rem
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem
}

.ft-brand h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: .6rem;
    font-weight: 800
}

.ft-brand h3 span {
    color: var(--blue-viv)
}

.ft-brand p {
    color: #475569;
    font-size: .85rem;
    max-width: 280px
}

.ft-social {
    display: flex;
    gap: .6rem;
    margin-top: 1rem
}

.ft-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1rem;
    transition: var(--t-fast)
}

.ft-social a:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px)
}

.ft-col h4 {
    color: #e2e8f0;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.ft-col ul {
    list-style: none
}

.ft-col li {
    margin-bottom: .4rem
}

.ft-col a {
    color: #475569;
    font-size: .82rem;
    transition: color .2s
}

.ft-col a:hover {
    color: var(--blue-viv)
}

.ft-bot {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ft-bot p {
    color: #334155;
    font-size: .75rem
}

/* ======= STICKY MOBILE CTA ======= */
.mob-cta {
    display: none
}

/* ======= SCROLL TOP ======= */
.stt {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--t-base);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    z-index: 999
}

.stt.on {
    opacity: 1;
    visibility: visible
}

.stt:hover {
    transform: translateY(-3px);
    background: var(--blue);
    box-shadow: 0 6px 20px rgba(37, 99, 235, .25)
}

/* ======= GUTENBERG BLOCKS SPACING ======= */
.single-service .wp-block,
.page .wp-block,
.single .wp-block {
    margin-top: 3rem;
    margin-bottom: 3rem
}

.single-service .wp-block:first-child,
.page .wp-block:first-child,
.single .wp-block:first-child {
    margin-top: 0
}

/* ======= SERVICE PAGE CONTENT SPACING ======= */
.service-content>* {
    margin-bottom: 1.5rem
}

.service-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ink)
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: var(--ink)
}

.service-content p {
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 1.25rem
}

.service-content ul,
.service-content ol {
    margin: 1rem 0 1.5rem 1.5rem
}

.service-content li {
    margin-bottom: .5rem;
    line-height: 1.7
}

.service-content img {
    border-radius: var(--r-xl);
    margin: 1.5rem 0
}

.service-content blockquote {
    border-left: 3px solid var(--blue);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg2);
    border-radius: 0 var(--r-md) var(--r-md) 0
}

/* ======= BREADCRUMBS ======= */
.breadcrumbs {
    padding: 6.5rem 0 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(0, 0, 0, .04)
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: .15rem;
    list-style: none;
    padding: .85rem 0;
    margin: 0;
    font-size: .78rem
}

.breadcrumb-item a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease
}

.breadcrumb-item a:hover {
    color: var(--blue)
}

.breadcrumb-item.active {
    color: var(--ink);
    font-weight: 600
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    color: var(--light);
    margin: 0 .45rem;
    font-size: .7rem
}