/* ============================================================
   DigiLoric Case Studies Pro v2 — public.css
   Self-contained. Theme styles cannot reach inside .dlcs2
   ============================================================ */

/* ── Fonts ───────────────────────────────────────────────────────────────── */
@font-face { font-family: 'Italiana'; font-display: swap; }
@font-face { font-family: 'DM Sans';  font-display: swap; }

/* ── CSS Tokens ──────────────────────────────────────────────────────────── */
:root {
    --dlcs-green:  #4fae4c;
    --dlcs-orange: #cf4d07;
    --dlcs-bg:     #080c1e;
    --d2-green:    #4fae4c;
    --d2-orange:   #cf4d07;
    --d2-bg:       #080c1e;
}

/* ── Full page reset (standalone template) ───────────────────────────────── */
.dlcs-single-body {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--d2-bg) !important;
    overflow-x: hidden;
}
.dlcs-page {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--d2-bg);
    color: rgba(255,255,255,.88);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Design tokens ───────────────────────────────────────────────────────── */
.dlcs2 {
    --d2-surface:  rgba(255,255,255,.038);
    --d2-border:   rgba(255,255,255,.09);
    --d2-border2:  rgba(255,255,255,.16);
    --d2-text:     rgba(255,255,255,.9);
    --d2-muted:    rgba(255,255,255,.56);
    --d2-grad:     linear-gradient(135deg, var(--d2-green), var(--d2-orange));
    --d2-radius:   18px;
    --d2-section:  clamp(72px, 9vw, 120px);
}

/* ── Container ───────────────────────────────────────────────────────────── */
.dlcs2 .dlcs2-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px);
    width: 100%;
    box-sizing: border-box;
}

/* ── Gradient text ───────────────────────────────────────────────────────── */
.dlcs2 .dlcs2-grad {
    background: var(--d2-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */
.dlcs2 .dlcs2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(.65rem, 1vw, .74rem);
    font-weight: 800;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--d2-green);
    margin-bottom: 14px;
}
.dlcs2 .dlcs2-eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--d2-green);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── Section ─────────────────────────────────────────────────────────────── */
.dlcs2 .dlcs2-section {
    position: relative;
    padding: var(--d2-section) 0;
    overflow: hidden;
}
.dlcs2 .dlcs2-section__header {
    text-align: center;
    margin-bottom: clamp(44px, 5.5vw, 72px);
}
.dlcs2 .dlcs2-h2 {
    font-family: 'Italiana', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.12;
    color: #fff;
    margin: 0;
}
.dlcs2 .dlcs2-h2 em { font-style: normal; opacity: .55; }

/* ── Tag pill ────────────────────────────────────────────────────────────── */
.dlcs2 .dlcs2-tag {
    display: inline-block;
    padding: 5px 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.dlcs2 .dlcs2-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: clamp(56px, 7vw, 96px);
}
.dlcs2 .dlcs2-hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.dlcs2 .dlcs2-hero__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    animation: dlcs2Zoom 18s ease-in-out infinite alternate;
}
@keyframes dlcs2Zoom { from { transform: scale(1.03); } to { transform: scale(1.1); } }
.dlcs2 .dlcs2-hero__photo-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(8,12,30,.88) 0%, rgba(8,12,30,.5) 50%, rgba(8,12,30,.9) 100%);
}
.dlcs2 .dlcs2-hero__no-photo {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0d1428 0%, #0a0e20 50%, #12082a 100%);
}
.dlcs2 .dlcs2-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 8% 30%,  rgba(79,174,76,.22)  0, transparent 50%),
        radial-gradient(ellipse at 90% 15%, rgba(207,77,7,.16)   0, transparent 45%),
        radial-gradient(ellipse at 50% 95%, rgba(39,43,108,.3)   0, transparent 55%);
}
.dlcs2 .dlcs2-hero__lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,.022) 60px);
}
.dlcs2 .dlcs2-hero__inner {
    position: relative;
    z-index: 2;
    padding-top: clamp(100px, 14vw, 160px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
}
.dlcs2 .dlcs2-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    letter-spacing: .4px;
    transition: color .25s, gap .25s;
    position: absolute;
    top: clamp(20px, 4vw, 40px);
    left: clamp(20px, 5vw, 64px);
}
.dlcs2 .dlcs2-back:hover { color: #fff; gap: 12px; }
[dir="rtl"] .dlcs2 .dlcs2-back { left: auto; right: clamp(20px, 5vw, 64px); }
[dir="rtl"] .dlcs2 .dlcs2-back svg { transform: scaleX(-1); }
.dlcs2 .dlcs2-hero__content { max-width: 820px; }
.dlcs2 .dlcs2-hero__tags   { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.dlcs2 .dlcs2-hero__title {
    font-family: 'Italiana', serif;
    font-size: clamp(3rem, 7.5vw, 6.8rem);
    font-weight: 400;
    line-height: 1.0;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -.01em;
}
.dlcs2 .dlcs2-hero__tagline {
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    line-height: 1.65;
    color: rgba(255,255,255,.72);
    margin: 0 0 32px;
    max-width: 600px;
}
/* Fact strip */
.dlcs2 .dlcs2-hero__facts {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 36px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    max-width: 700px;
}
.dlcs2 .dlcs2-fact {
    flex: 1 1 130px;
    display: flex;
    flex-direction: column;
    padding: 16px 22px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.dlcs2 .dlcs2-fact:last-child { border-right: none; }
[dir="rtl"] .dlcs2 .dlcs2-fact { border-right: none; border-left: 1px solid rgba(255,255,255,.08); }
[dir="rtl"] .dlcs2 .dlcs2-fact:last-child { border-left: none; }
.dlcs2 .dlcs2-fact__label {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--d2-green);
    margin-bottom: 5px;
}
.dlcs2 .dlcs2-fact__value { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.9); line-height: 1.3; }
/* Hero CTA button */
.dlcs2 .dlcs2-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: .9rem;
    font-weight: 700;
    color: #080c1e;
    background: #fff;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s, background .3s, color .3s;
    box-shadow: 0 4px 20px rgba(255,255,255,.12);
}
.dlcs2 .dlcs2-hero__cta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,255,255,.22); background: var(--d2-green); color: #fff; }
/* Scroll hint */
.dlcs2 .dlcs2-hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 5px; position: absolute; bottom: 28px; right: clamp(20px,5vw,64px); opacity: .4; }
.dlcs2 .dlcs2-hero__scroll span { display: block; width: 2px; height: 8px; background: #fff; border-radius: 2px; animation: dlcs2Scroll 1.4s ease-in-out infinite; }
.dlcs2 .dlcs2-hero__scroll span:nth-child(2) { animation-delay: .15s; }
.dlcs2 .dlcs2-hero__scroll span:nth-child(3) { animation-delay: .3s; }
@keyframes dlcs2Scroll { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ══════════════════════════════════════════════════════════════
   OVERVIEW — Bento cards
══════════════════════════════════════════════════════════════ */
.dlcs2 .dlcs2-bento--overview { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 18px; }
.dlcs2 .dlcs2-bento__cell {
    position: relative;
    background: var(--d2-surface);
    border: 1px solid var(--d2-border);
    border-radius: var(--d2-radius);
    padding: clamp(28px,4vw,44px);
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}
.dlcs2 .dlcs2-bento__cell:hover { border-color: var(--d2-border2); transform: translateY(-4px); }
.dlcs2 .dlcs2-cell__accent {
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
}
.dlcs2 .dlcs2-cell__accent--warn  { background: rgba(207,77,7,.25); }
.dlcs2 .dlcs2-cell__accent--green { background: rgba(79,174,76,.25); }
.dlcs2 .dlcs2-cell__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px; margin-bottom: 20px;
}
.dlcs2 .dlcs2-cell__icon--warn  { background: rgba(207,77,7,.18); color: #f07040; }
.dlcs2 .dlcs2-cell__icon--green { background: rgba(79,174,76,.18); color: var(--d2-green); }
.dlcs2 .dlcs2-cell__heading { font-family:'Italiana',serif; font-size: clamp(1.4rem,2.2vw,1.9rem); font-weight:400; color:#fff; margin:0 0 14px; }
.dlcs2 .dlcs2-cell__body   { font-size: clamp(.9rem,1.3vw,1rem); line-height:1.8; color:var(--d2-muted); margin:0; }

/* ══════════════════════════════════════════════════════════════
   KEY RESULTS
══════════════════════════════════════════════════════════════ */
.dlcs2 .dlcs2-results { background: rgba(79,174,76,.025); }
.dlcs2 .dlcs2-results__bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(79,174,76,.08) 0, transparent 60%);
    pointer-events: none;
}
.dlcs2 .dlcs2-results__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 16px; }
.dlcs2 .dlcs2-result-card {
    position: relative;
    background: var(--d2-surface);
    border: 1px solid var(--d2-border);
    border-radius: var(--d2-radius);
    padding: clamp(24px,3.5vw,36px) clamp(18px,2.5vw,28px);
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    animation: dlcs2FadeUp .6s ease forwards;
    animation-delay: var(--i, 0ms);
    transition: border-color .3s, transform .3s;
}
.dlcs2 .dlcs2-result-card:hover { border-color: rgba(79,174,76,.35); transform: translateY(-4px); }
@keyframes dlcs2FadeUp { to { opacity:1; transform:translateY(0); } }
.dlcs2 .dlcs2-result-card__glow {
    position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 60px; background: rgba(79,174,76,.15); border-radius: 50%; filter: blur(20px); pointer-events: none;
}
.dlcs2 .dlcs2-result-card__num {
    font-family: 'Italiana', serif;
    font-size: clamp(2.6rem,5vw,3.8rem);
    font-weight: 400;
    line-height: 1;
    background: var(--d2-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}
.dlcs2 .dlcs2-result-card__label { font-size:.82rem; font-weight:700; color:rgba(255,255,255,.8); letter-spacing:.4px; margin-bottom:6px; }
.dlcs2 .dlcs2-result-card__desc  { font-size:.74rem; color:var(--d2-muted); line-height:1.5; margin-bottom:14px; }
.dlcs2 .dlcs2-result-card__bar   { height:3px; background:rgba(255,255,255,.08); border-radius:2px; overflow:hidden; margin-top:14px; }
.dlcs2 .dlcs2-result-card__bar span { display:block; height:100%; width:0; background:var(--d2-grad); border-radius:2px; animation:dlcs2Bar 1.2s ease forwards; animation-delay:calc(var(--i,0ms) + 400ms); }
@keyframes dlcs2Bar { to { width:100%; } }

/* ══════════════════════════════════════════════════════════════
   MOCKUPS
══════════════════════════════════════════════════════════════ */
.dlcs2 .dlcs2-mockups__grid { display:grid; gap:24px; align-items:start; }
.dlcs2 .dlcs2-mockups__grid--1up { grid-template-columns:1fr; max-width:760px; margin:0 auto; }
.dlcs2 .dlcs2-mockups__grid--2up { grid-template-columns:repeat(2,1fr); }
.dlcs2 .dlcs2-mockups__grid--3up { grid-template-columns:1fr 1fr 1fr; }
.dlcs2 .dlcs2-mockup-card { display:flex; flex-direction:column; gap:16px; }
.dlcs2 .dlcs2-mockup-card__label { font-size:.72rem; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:var(--d2-muted); text-align:center; }
.dlcs2 .dlcs2-mockup-card__frame { width:100%; }

/* Device frames */
.dlcs2 .dlcs-device { display:block; width:100%; position:relative; }
.dlcs2 .dlcs-device--plain img { width:100%; border-radius:12px; display:block; box-shadow:0 20px 60px rgba(0,0,0,.5); }
.dlcs2 .dlcs-device--browser { background:#1a1d3a; border:1.5px solid rgba(255,255,255,.15); border-radius:10px; overflow:hidden; box-shadow:0 24px 60px rgba(0,0,0,.55),0 0 0 1px rgba(255,255,255,.06); }
.dlcs2 .dlcs-device--browser .dlcs-device__chrome { background:#13162e; padding:10px 14px; display:flex; align-items:center; gap:10px; border-bottom:1px solid rgba(255,255,255,.1); }
.dlcs2 .dlcs-device--browser .dlcs-device__dots { display:flex; gap:5px; flex-shrink:0; }
.dlcs2 .dlcs-device--browser .dlcs-device__dots span { width:10px; height:10px; border-radius:50%; display:block; }
.dlcs2 .dlcs-device--browser .dlcs-device__dots span:nth-child(1) { background:#ff5f57; }
.dlcs2 .dlcs-device--browser .dlcs-device__dots span:nth-child(2) { background:#febc2e; }
.dlcs2 .dlcs-device--browser .dlcs-device__dots span:nth-child(3) { background:#28c840; }
.dlcs2 .dlcs-device--browser .dlcs-device__bar { flex:1; height:22px; background:rgba(255,255,255,.07); border-radius:999px; }
.dlcs2 .dlcs-device--browser .dlcs-device__screen img { width:100%; display:block; object-fit:cover; }
.dlcs2 .dlcs-device--iphone { max-width:260px; margin:0 auto; }
.dlcs2 .dlcs-device--iphone .dlcs-device__shell { background:#111827; border:2px solid rgba(255,255,255,.2); border-radius:40px; padding:20px 12px; position:relative; box-shadow:0 24px 60px rgba(0,0,0,.6),inset 0 0 0 1px rgba(255,255,255,.08); }
.dlcs2 .dlcs-device--iphone .dlcs-device__speaker { width:50px; height:5px; background:rgba(255,255,255,.15); border-radius:999px; margin:0 auto 12px; }
.dlcs2 .dlcs-device--iphone .dlcs-device__camera { width:10px; height:10px; background:rgba(255,255,255,.15); border-radius:50%; position:absolute; top:24px; right:28px; }
.dlcs2 .dlcs-device--iphone .dlcs-device__screen img { width:100%; border-radius:26px; display:block; }
.dlcs2 .dlcs-device--iphone .dlcs-device__home-bar { width:80px; height:4px; background:rgba(255,255,255,.25); border-radius:999px; margin:12px auto 0; }
.dlcs2 .dlcs-device--macbook { display:flex; flex-direction:column; align-items:center; }
.dlcs2 .dlcs-device--macbook .dlcs-device__lid { width:90%; background:#1a1d3a; border:2px solid rgba(255,255,255,.18); border-radius:10px 10px 2px 2px; padding:12px 12px 6px; position:relative; box-shadow:0 -4px 18px rgba(0,0,0,.4),0 20px 50px rgba(0,0,0,.55); }
.dlcs2 .dlcs-device--macbook .dlcs-device__notch { width:70px; height:7px; background:rgba(255,255,255,.1); border-radius:999px; margin:0 auto 8px; }
.dlcs2 .dlcs-device--macbook .dlcs-device__screen img { width:100%; border-radius:4px; display:block; }
.dlcs2 .dlcs-device--macbook .dlcs-device__base { width:100%; height:20px; background:linear-gradient(to bottom,#2a2d4a,#1a1d3a); border-radius:0 0 4px 4px; border:1.5px solid rgba(255,255,255,.12); border-top:none; display:flex; align-items:center; justify-content:center; }
.dlcs2 .dlcs-device--macbook .dlcs-device__keyboard { width:50%; height:6px; background:rgba(255,255,255,.08); border-radius:4px; }
.dlcs2 .dlcs-device--macbook .dlcs-device__foot { width:106%; height:5px; background:linear-gradient(to right,transparent,rgba(255,255,255,.15),transparent); border-radius:999px; margin-top:1px; }
.dlcs2 .dlcs-device--dual { display:flex; align-items:flex-end; gap:16px; }
.dlcs2 .dlcs-device--dual-main { flex:1; }
.dlcs2 .dlcs-device--dual-phone { flex:0 0 clamp(120px,28%,180px); }

/* ══════════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════════ */
.dlcs2 .dlcs2-gallery__grid { display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:240px; gap:12px; }
.dlcs2 .dlcs2-gallery__item--0 { grid-column:span 2; grid-row:span 2; }
.dlcs2 .dlcs2-gallery__item--3 { grid-column:span 2; }
.dlcs2 .dlcs2-gallery__item { position:relative; overflow:hidden; border-radius:12px; background:var(--d2-surface); border:1px solid var(--d2-border); }
.dlcs2 .dlcs2-gallery__item a { display:block; height:100%; }
.dlcs2 .dlcs2-gallery__item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .55s ease; }
.dlcs2 .dlcs2-gallery__item:hover img { transform:scale(1.06); }
.dlcs2 .dlcs2-gallery__overlay { position:absolute; inset:0; background:rgba(8,12,30,.55); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s; backdrop-filter:blur(2px); }
.dlcs2 .dlcs2-gallery__item:hover .dlcs2-gallery__overlay { opacity:1; }

/* ══════════════════════════════════════════════════════════════
   STORY
══════════════════════════════════════════════════════════════ */
.dlcs2 .dlcs2-story__inner { display:flex; align-items:flex-start; gap:clamp(32px,5vw,80px); }
.dlcs2 .dlcs2-story__sidebar { flex:0 0 220px; position:sticky; top:90px; }
.dlcs2 .dlcs2-story__sidebar-label { font-size:.66rem; font-weight:800; letter-spacing:2.2px; text-transform:uppercase; color:var(--d2-muted); margin-bottom:16px; }
.dlcs2 .dlcs2-story__nav { display:flex; flex-direction:column; gap:2px; }
.dlcs2 .dlcs2-story__nav-item {
    display:flex; align-items:center; gap:12px;
    font-size:.84rem; font-weight:600; color:var(--d2-muted);
    text-decoration:none; padding:10px 14px 10px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    transition:color .25s;
}
.dlcs2 .dlcs2-story__nav-item:hover { color:rgba(255,255,255,.85); }
.dlcs2 .dlcs2-story__nav-item.active { color:var(--d2-green); }
.dlcs2 .dlcs2-story__nav-dot { flex-shrink:0; width:7px; height:7px; border-radius:50%; background:var(--d2-border2); transition:background .25s,transform .25s; }
.dlcs2 .dlcs2-story__nav-item.active .dlcs2-story__nav-dot { background:var(--d2-green); transform:scale(1.4); box-shadow:0 0 8px rgba(79,174,76,.5); }
.dlcs2 .dlcs2-story__content { flex:1 1 0; min-width:0; }
.dlcs2 .dlcs2-story__block { padding-bottom:clamp(40px,5vw,60px); margin-bottom:clamp(40px,5vw,60px); border-bottom:1px solid var(--d2-border); scroll-margin-top:100px; }
.dlcs2 .dlcs2-story__block:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.dlcs2 .dlcs2-story__block-title { font-family:'Italiana',serif; font-size:clamp(1.7rem,2.8vw,2.4rem); font-weight:400; color:#fff; margin:0 0 20px; }
.dlcs2 .dlcs2-story__block-text { font-size:clamp(.9rem,1.3vw,1.02rem); line-height:1.85; color:var(--d2-muted); }

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.dlcs2 .dlcs2-services__list { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.dlcs2 .dlcs2-service-chip {
    display:inline-flex; align-items:center; gap:8px;
    padding:11px 22px; font-size:.88rem; font-weight:600;
    color:rgba(255,255,255,.82); background:var(--d2-surface);
    border:1px solid var(--d2-border); border-radius:999px;
    transition:border-color .3s,color .3s,background .3s;
}
.dlcs2 .dlcs2-service-chip svg { color:var(--d2-green); flex-shrink:0; }
.dlcs2 .dlcs2-service-chip:hover { border-color:rgba(79,174,76,.42); color:var(--d2-green); background:rgba(79,174,76,.07); }

/* ══════════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════════ */
.dlcs2 .dlcs2-cta__box {
    position:relative; background:var(--d2-surface);
    border:1px solid rgba(79,174,76,.22); border-radius:24px;
    padding:clamp(52px,6vw,88px) clamp(24px,6vw,80px);
    text-align:center; overflow:hidden;
}
.dlcs2 .dlcs2-cta__orbs { position:absolute; inset:0; pointer-events:none; }
.dlcs2 .dlcs2-cta__orb { position:absolute; border-radius:50%; filter:blur(60px); }
.dlcs2 .dlcs2-cta__orb--1 { width:300px; height:300px; background:rgba(79,174,76,.13); top:-100px; left:-80px; }
.dlcs2 .dlcs2-cta__orb--2 { width:280px; height:280px; background:rgba(207,77,7,.11); bottom:-100px; right:-60px; }
.dlcs2 .dlcs2-cta__inner { position:relative; z-index:1; }
.dlcs2 .dlcs2-cta__kicker { font-size:.7rem; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; color:var(--d2-green); margin-bottom:14px; }
.dlcs2 .dlcs2-cta__heading { font-family:'Italiana',serif; font-size:clamp(2rem,4vw,3.4rem); font-weight:400; color:#fff; line-height:1.12; margin-bottom:16px; }
.dlcs2 .dlcs2-cta__sub { font-size:clamp(.9rem,1.4vw,1.05rem); color:var(--d2-muted); max-width:460px; margin:0 auto 36px; line-height:1.7; }
.dlcs2 .dlcs2-cta__btns { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.dlcs2 .dlcs2-btn {
    display:inline-flex; align-items:center; gap:9px;
    padding:14px 30px; font-family:'DM Sans',sans-serif;
    font-size:.92rem; font-weight:700; border-radius:999px;
    text-decoration:none; border:none; cursor:pointer; min-height:50px;
    transition:transform .3s,box-shadow .3s;
}
.dlcs2 .dlcs2-btn--primary { background:var(--d2-green); color:#fff; box-shadow:0 4px 20px rgba(79,174,76,.28); }
.dlcs2 .dlcs2-btn--primary:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(79,174,76,.38); color:#fff; }
.dlcs2 .dlcs2-btn--wa { background:rgba(37,211,102,.14); border:1.5px solid #25D366; color:#fff; }
.dlcs2 .dlcs2-btn--wa:hover { background:#25D366; transform:translateY(-3px); box-shadow:0 12px 28px rgba(37,211,102,.3); color:#fff; }

/* ══════════════════════════════════════════════════════════════
   GRID / SHORTCODE (card grid on other pages)
══════════════════════════════════════════════════════════════ */
.dlcsg-fullwidth-wrap { position:relative; width:100vw; left:50%; right:50%; margin-left:-50vw; margin-right:-50vw; }
.dlcsg-section { position:relative; background:var(--dlcs-bg,#080c1e); padding:clamp(64px,8vw,110px) 0; overflow:hidden; font-family:'DM Sans',sans-serif; width:100%; }
.dlcsg-bg { position:absolute; inset:0; pointer-events:none; z-index:0; background:radial-gradient(at 15% 30%,rgba(79,174,76,.1) 0,transparent 55%),radial-gradient(at 88% 20%,rgba(207,77,7,.07) 0,transparent 55%); }
.dlcsg-container { position:relative; z-index:1; max-width:1280px; margin:0 auto; padding:0 clamp(16px,5vw,64px); width:100%; box-sizing:border-box; }
.dlcsg-header { text-align:center; margin-bottom:clamp(40px,5vw,70px); }
.dlcsg-eyebrow { display:inline-block; padding:5px 16px; font-size:clamp(.68rem,1vw,.8rem); font-weight:700; letter-spacing:2.2px; text-transform:uppercase; color:var(--dlcs-green,#4fae4c); background:rgba(79,174,76,.1); border:1px solid rgba(79,174,76,.26); border-radius:999px; margin-bottom:14px; }
.dlcsg-title { font-family:'Italiana',serif; font-size:clamp(2rem,4.5vw,3.6rem); font-weight:400; line-height:1.15; color:#fff; margin:0 auto 16px; max-width:760px; }
.dlcsg-accent { background:linear-gradient(135deg,var(--dlcs-green,#4fae4c),var(--dlcs-orange,#cf4d07)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.dlcsg-subtitle { font-size:clamp(.9rem,1.4vw,1.05rem); line-height:1.7; color:rgba(255,255,255,.62); max-width:600px; margin:0 auto; }
/* Grid */
.dlcsg-grid { display:grid; gap:24px; }
.dlcsg-cols-1 { grid-template-columns:1fr; }
.dlcsg-cols-2 { grid-template-columns:repeat(2,1fr); }
.dlcsg-cols-3 { grid-template-columns:repeat(3,1fr); }
.dlcsg-cols-4 { grid-template-columns:repeat(4,1fr); }
/* Card */
.dlcsg-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); border-radius:16px; overflow:hidden; transition:transform .3s,border-color .3s,box-shadow .3s; display:flex; flex-direction:column; }
.dlcsg-card:hover { transform:translateY(-6px); border-color:rgba(79,174,76,.3); box-shadow:0 20px 50px rgba(0,0,0,.4); }
.dlcsg-card__thumb { display:block; aspect-ratio:16/9; overflow:hidden; background:rgba(255,255,255,.04); text-decoration:none; position:relative; }
.dlcsg-card__thumb img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.dlcsg-card:hover .dlcsg-card__thumb img { transform:scale(1.05); }
.dlcsg-card__thumb-fallback,.dlcsg-card__thumb-overlay { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.dlcsg-card__thumb-fallback { background:rgba(255,255,255,.03); }
.dlcsg-card__thumb-overlay { background:rgba(8,12,30,.5); opacity:0; transition:opacity .3s; flex-direction:column; gap:8px; }
.dlcsg-card__thumb-overlay span { font-size:.78rem; font-weight:700; color:#fff; letter-spacing:1px; text-transform:uppercase; }
.dlcsg-card:hover .dlcsg-card__thumb-overlay { opacity:1; }
.dlcsg-card__body { padding:22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.dlcsg-card__tags { display:flex; flex-wrap:wrap; gap:6px; }
.dlcsg-tag,.dlcsg-tag--service { display:inline-block; padding:3px 10px; font-size:.68rem; font-weight:700; letter-spacing:.8px; text-transform:uppercase; border-radius:999px; }
.dlcsg-tag         { color:rgba(255,255,255,.75); background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); }
.dlcsg-tag--service{ color:rgba(79,174,76,.9); background:rgba(79,174,76,.1); border:1px solid rgba(79,174,76,.25); }
.dlcsg-card__title { font-family:'Italiana',serif; font-size:1.35rem; font-weight:400; margin:0; line-height:1.25; }
.dlcsg-card__title a { color:#fff; text-decoration:none; }
.dlcsg-card__title a:hover { color:var(--dlcs-green,#4fae4c); }
.dlcsg-card__tagline { font-size:.85rem; color:rgba(255,255,255,.6); line-height:1.55; margin:0; }
.dlcsg-card__meta { display:flex; flex-direction:column; gap:5px; }
.dlcsg-meta-item { display:flex; align-items:center; gap:6px; font-size:.78rem; color:rgba(255,255,255,.55); }
.dlcsg-meta-item svg { flex-shrink:0; color:rgba(79,174,76,.7); }
.dlcsg-card__results { display:flex; flex-wrap:wrap; gap:8px; }
.dlcsg-mini-result { display:flex; flex-direction:column; gap:2px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:8px; padding:8px 12px; min-width:80px; }
.dlcsg-mini-result__metric { font-family:'Italiana',serif; font-size:1.1rem; font-weight:400; color:var(--dlcs-green,#4fae4c); line-height:1; }
.dlcsg-mini-result__label  { font-size:.68rem; color:rgba(255,255,255,.55); font-weight:600; text-transform:uppercase; letter-spacing:.6px; }
.dlcsg-card__actions { display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-top:auto; padding-top:6px; }
.dlcsg-btn { display:inline-flex; align-items:center; gap:7px; padding:10px 20px; font-family:'DM Sans',sans-serif; font-size:.82rem; font-weight:700; color:#080c1e; background:var(--dlcs-green,#4fae4c); border-radius:999px; text-decoration:none; transition:transform .28s,box-shadow .28s; }
.dlcsg-btn:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(79,174,76,.3); color:#080c1e; }
.dlcsg-link { display:inline-flex; align-items:center; gap:5px; font-size:.78rem; font-weight:600; color:rgba(255,255,255,.55); text-decoration:none; transition:color .25s; }
.dlcsg-link:hover { color:#fff; }
.dlcsg-no-results { color:rgba(255,255,255,.5); text-align:center; padding:40px; grid-column:1/-1; }
/* Filters */
.dlcsg-filters-wrap { display:flex; flex-direction:column; gap:16px; margin-bottom:clamp(28px,4vw,44px); position:relative; z-index:2; }
.dlcsg-filter-bar { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
.dlcsg-filter-btn { padding:7px 18px; font-family:'DM Sans',sans-serif; font-size:.78rem; font-weight:700; letter-spacing:.8px; text-transform:uppercase; color:rgba(255,255,255,.62); background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:999px; cursor:pointer; transition:all .28s; }
.dlcsg-filter-btn:hover,.dlcsg-filter-btn--active { color:#fff; background:rgba(79,174,76,.14); border-color:rgba(79,174,76,.4); }
.dlcsg-filter-btn--active { color:var(--dlcs-green,#4fae4c); }
/* Search */
.dlcsg-search-bar { display:flex; align-items:center; max-width:480px; margin:0 auto; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:999px; padding:0 18px; gap:10px; transition:border-color .28s; }
.dlcsg-search-bar:focus-within { border-color:var(--dlcs-green,#4fae4c); box-shadow:0 0 0 3px rgba(79,174,76,.12); }
.dlcsg-search-icon { color:rgba(255,255,255,.62); flex-shrink:0; }
.dlcsg-search-input { flex:1; background:transparent; border:none; color:#fff; font-family:'DM Sans',sans-serif; font-size:.92rem; padding:12px 0; outline:none; }
.dlcsg-search-input::placeholder { color:rgba(255,255,255,.4); }
.dlcsg-search-clear { background:none; border:none; color:rgba(255,255,255,.5); cursor:pointer; font-size:.8rem; padding:4px; transition:color .2s; }
.dlcsg-search-clear:hover { color:#fff; }
/* Spinner */
.dlcsg-spinner { display:flex; justify-content:center; align-items:center; padding:40px 0; grid-column:1/-1; }
.dlcsg-spinner::after { content:''; width:36px; height:36px; border:3px solid rgba(79,174,76,.2); border-top-color:var(--dlcs-green,#4fae4c); border-radius:50%; animation:dlcsSpin .7s linear infinite; }
@keyframes dlcsSpin { to { transform:rotate(360deg); } }
/* Popup */
.dlcs-popup-overlay { position:fixed; inset:0; z-index:999999; background:rgba(8,12,30,.92); backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:opacity .38s,visibility .38s; padding:20px; }
.dlcs-popup-overlay.active { opacity:1; visibility:visible; }
.dlcs-popup-inner { background:#0e1230; border:1px solid rgba(255,255,255,.12); border-radius:20px; max-width:900px; width:100%; max-height:90vh; overflow-y:auto; position:relative; transform:translateY(24px); transition:transform .38s cubic-bezier(.4,0,.2,1); }
.dlcs-popup-overlay.active .dlcs-popup-inner { transform:translateY(0); }
.dlcs-popup-close { position:sticky; top:12px; float:right; margin:12px 12px 0 0; background:rgba(255,255,255,.1); border:none; color:#fff; width:34px; height:34px; border-radius:50%; font-size:16px; cursor:pointer; z-index:10; transition:background .2s; display:flex; align-items:center; justify-content:center; }
.dlcs-popup-close:hover { background:rgba(207,77,7,.6); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width:900px) {
    .dlcs2 .dlcs2-mockups__grid--3up { grid-template-columns:repeat(2,1fr); }
    .dlcs2 .dlcs2-gallery__grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:200px; }
    .dlcs2 .dlcs2-gallery__item--0 { grid-column:span 2; grid-row:span 1; }
    .dlcs2 .dlcs2-gallery__item--3 { grid-column:span 1; }
    .dlcsg-cols-4,.dlcsg-cols-3 { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
    .dlcs2 .dlcs2-hero__title { font-size:clamp(2.4rem,9vw,3.8rem); }
    .dlcs2 .dlcs2-hero__facts { flex-direction:column; }
    .dlcs2 .dlcs2-fact { border-right:none; border-bottom:1px solid rgba(255,255,255,.08); }
    .dlcs2 .dlcs2-fact:last-child { border-bottom:none; }
    .dlcs2 .dlcs2-story__inner { flex-direction:column; }
    .dlcs2 .dlcs2-story__sidebar { position:static; flex:none; width:100%; }
    .dlcs2 .dlcs2-story__nav { flex-direction:row; flex-wrap:wrap; gap:6px; }
    .dlcs2 .dlcs2-story__nav-item { border-bottom:none; padding:7px 12px; background:var(--d2-surface); border:1px solid var(--d2-border); border-radius:999px; }
    .dlcs2 .dlcs2-mockups__grid--2up,.dlcs2 .dlcs2-mockups__grid--3up { grid-template-columns:1fr; }
    .dlcs2 .dlcs2-results__grid { grid-template-columns:repeat(2,1fr); }
    .dlcs2 .dlcs2-cta__btns { flex-direction:column; align-items:center; }
    .dlcs2 .dlcs2-btn { width:100%; max-width:340px; justify-content:center; }
    .dlcsg-cols-2,.dlcsg-cols-3,.dlcsg-cols-4 { grid-template-columns:1fr; }
}
@media (max-width:480px) {
    .dlcs2 .dlcs2-gallery__grid { grid-template-columns:1fr; grid-auto-rows:200px; }
    .dlcs2 .dlcs2-gallery__item--0,.dlcs2 .dlcs2-gallery__item--3 { grid-column:span 1; }
    .dlcs2 .dlcs2-results__grid { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion:reduce) {
    .dlcs2 .dlcs2-hero__photo { animation:none; }
    .dlcs2 .dlcs2-result-card { animation:none; opacity:1; transform:none; }
    .dlcs2 .dlcs2-result-card__bar span { animation:none; width:100%; }
    .dlcs2 .dlcs2-hero__scroll span { animation:none; }
}
