 :root {
        --bg-dark: #0a0a0a;
        --bg-light: #f0f0f0;
        --text-light: #ffffff;
        --accent: #2563eb;
        --accent-hover: #1d4ed8;
        --gray: #a1a1aa;
        --border-dark: #222;
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    }

    body {
        margin: 0;
        background-color: var(--bg-dark);
        color: var(--text-light);
        font-family: var(--font-main);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* TYPOGRAPHY (BIGGER + ENTERPRISE SCALE) */
    h1, h2, h3 { line-height: 1.08; font-weight: 700; margin-top: 0; }
    h1 { 
        font-size: clamp(3.2rem, 5.8vw, 7rem); 
        letter-spacing: -0.03em; 
    }
    h2 { 
        font-size: clamp(2.1rem, 3.4vw, 4rem); 
        margin-bottom: 1rem; 
        letter-spacing: -0.02em;
    }
    p  { 
        font-size: clamp(1.02rem, 1.2vw, 1.15rem); 
        color: var(--gray); 
        max-width: 65ch; 
    }

    /* LAYOUT UTILITIES */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .section { padding: 8rem 0; }
    .grid { display: grid; gap: 2rem; }
    .grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .text-center { text-align: center; }
    .flex-center { display: flex; justify-content: center; align-items: center; }

    /* HERO SECTION */
    .hero {
        min-height: 90vh;
        display: flex;
        align-items: center;
        position: relative;
        padding: 2rem 0;
    }
    .hero-content { max-width: 820px; }
    .hero h1 span { color: var(--accent); }

    /* BUTTONS */
    .btn {
        display: inline-block;
        background: var(--accent);
        color: white;
        padding: 1rem 2.5rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 4px;
        transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
        border: none;
        cursor: pointer;
        font-size: 1.1rem;
        line-height: 1;
        white-space: nowrap;
    }

    a.btn.btn-white:active { color: black; }

    .btn-white,
    .btn-white:visited {
        background: var(--bg-light);
        color: var(--accent);
    }
    .btn-white:hover {
        background: var(--bg-light);
        color: var(--accent);
    }

    /* Keep your design hover behavior */
    .btn:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        color: white;
    }

    /* SOCIAL PROOF BAR */
    .logos {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 2rem 0;
    overflow: hidden;
    background: #050505; /* slightly darker to make text pop */
}

/* Small label text */
.logos p {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af !important; /* override inline color */
    margin-bottom: 1rem;
}

/* Logos row */
.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    opacity: 1; /* full visibility */
}

.logo-item {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    color: #e5e7eb; /* light grey on dark bg */
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}


    /* SERVICES CARDS */
    .card {
        background: #111;
        padding: 3rem;
        border: 1px solid var(--border-dark);
        transition: transform 0.2s;
        will-change: transform;
    }
    .card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
    .card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: white; }
    .card-icon { 
        font-size: 2rem; 
        margin-bottom: 1.5rem; 
        color: var(--accent);
        display: inline-flex;
        align-items: center;
        line-height: 1;
    }
    .card-icon svg{
        width: 34px;
        height: 34px;
        display: block;
    }

    /* STATS / AUTHORITY (NOW 4 ITEMS) */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
        align-items: start;
    }
    .stat-item h4 {
        font-size: clamp(2.1rem, 2.8vw, 3rem);
        margin: 0 0 0.25rem 0;
        color: white;
        white-space: nowrap;
        letter-spacing: -0.02em;
        font-weight: 600;
    }
    .stat-item p {
        margin: 0;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        max-width: none;
    }
    .count {
        display: inline-block;
        min-width: 1ch;
    }

    /* CTA FOOTER */
    .cta-section { background: var(--accent); color: white; text-align: center; }
    .cta-section p { color: rgba(255,255,255,0.8); margin: 0 auto 2rem auto; }
    .btn-white { background: white; color: var(--accent); }
.btn-white:hover {
    background: #f0f0f0;
    color: var(--accent-hover);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
    /* ---------- RESPONSIVE TUNING ---------- */

    @media (max-width: 1100px) {
        .section { padding: 6rem 0; }
        .card { padding: 2.5rem; }
        .stats-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
        }
    }

    @media (max-width: 900px) {
        .section { padding: 5rem 0; }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

        /* Override the inline 2-col block safely */
        .section .grid[style*="grid-template-columns: 1fr 1fr"]{
            grid-template-columns: 1fr !important;
            gap: 2.5rem !important;
        }
    }

    @media (max-width: 768px) {
        .container { padding: 0 16px; }
        .section { padding: 4rem 0; }

        .hero {
            min-height: auto;
            padding: 3.5rem 0 2.5rem 0;
        }

/* Bigger, premium mobile headings */
.hero h1 { 
    font-size: clamp(3.1rem, 10.5vw, 3.9rem);
    letter-spacing: -0.035em;
}
h2 {
    font-size: clamp(2.1rem, 6.2vw, 2.75rem);
}


        p { max-width: 100%; }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 1.3rem;
            margin-top: 2.1rem;
        }

        .logos { padding: 1.5rem 0; text-align: center;}
        .logo-grid { justify-content: center; gap: 1.25rem; }

        .card { padding: 2rem; }
        .btn { width: auto; }
    }

    @media (max-width: 480px) {
        .container { padding: 0 14px; }
        .section { padding: 3.25rem 0; }

        .btn {
            width: 100%;
            text-align: center;
            padding: 0.95rem 1.5rem;
            font-size: 1.05rem;
        }

        .logo-item { font-size: 1rem; }

        .card { padding: 1.6rem; }
        .card h3 { font-size: 1.35rem; }

        .stat-item h4 { font-size: 2.05rem; }
        .stat-item p  { font-size: 0.8rem; }
    }

@media (max-width: 900px) {
    .section[style*="padding: 4.5rem"] > .container > div {
        flex-direction: column !important;
        text-align: left !important;
        padding: 2rem !important;
    }
    .section[style*="padding: 4.5rem"] a.btn {
        width: 100%;
        text-align: center;
    }
}



/* ---------------- Performance Benchmark Mindset (Responsive) ---------------- */

.benchmark-mindset__box {
    width: 100%;
}

.benchmark-mindset__left {
    flex: 1 1 auto;
    min-width: 0; /* prevents overflow on long text */
}

.benchmark-mindset__right {
    flex: 0 0 auto;
}

/* Large tablets / small laptops */
@media (max-width: 1100px) {
    .benchmark-mindset__box {
        padding: 2.1rem 2.2rem !important;
        gap: 2rem !important;
    }
    .benchmark-mindset__right {
        min-width: 250px !important;
    }
}

/* Tablets + small screens */
@media (max-width: 900px) {
    .benchmark-mindset__box {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 2rem !important;
    }

    .benchmark-mindset__left {
        max-width: 100% !important;
    }

    .benchmark-mindset__right {
        width: 100%;
        min-width: 0 !important;
        text-align: left !important;
        margin-top: 0.5rem;
    }

    .benchmark-mindset__right a.btn {
        width: 100%;
        text-align: center;
    }
}

/* Phones */
@media (max-width: 768px) {
    .benchmark-mindset {
        padding: 0 0 4rem 0;
    }

    .benchmark-mindset__box {
        padding: 1.6rem !important;
        gap: 1.5rem !important;
    }

    /* Keep the pill row attractive and tight */
    .benchmark-mindset__left > div[style*="display:flex"] {
        gap: 0.5rem !important;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .benchmark-mindset__box {
        padding: 1.35rem !important;
    }

    .benchmark-mindset__right a.btn {
        padding-left: 1.4rem;
        padding-right: 1.4rem;
    }
}

/* Hero code block */
.code-snippet {
    background: radial-gradient(120% 160% at 0% 0%, #111827 0, #020617 55%, #000 100%);
    padding: 2.2rem;
    border-radius: 12px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    color: #e5e7eb;
    font-size: 0.9rem;
    line-height: 1.7;
    border: 1px solid #27272a;
    box-shadow: 0 22px 60px rgba(0,0,0,.65);
    overflow-x: auto;
}

/* Tiny syntax highlighting */
.code-snippet .code-comment { color: #9ca3af; }
.code-snippet .code-keyword { color: #60a5fa; }
.code-snippet .code-class   { color: #a855f7; }
.code-snippet .code-method  { color: #22c55e; }
.code-snippet .code-const   { color: #f97316; }




/* ===========================
   Commitment / No-Shortcuts Section
   =========================== */

.wdp-commitment {
    border-top: 1px solid #111827;
    border-bottom: 1px solid #111827;
}

.wdp-commitment-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
}

.wdp-commitment-left {
    flex: 3;
    min-width: 0;
}

.wdp-commitment-right {
    flex: 2;
    min-width: 260px;
    text-align: right;
}

/* Eyebrow label */
.wdp-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 0.8rem;
}

/* Main heading inherits h2 styles */

.wdp-commitment-left p {
    max-width: 60ch;
}

/* Bullet list (SEO + visual) */
.wdp-commitment-list {
    list-style: none;
    margin: 2rem 0 0 0;
    padding: 0;
}

.wdp-commitment-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
    font-size: 0.98rem;
    color: #e5e7eb;
    flex-wrap: wrap;
}

.wdp-commitment-list li::before {
    content: "✓";
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: #22c55e;
}

/* Right column card */
.wdp-right-box {
    border: 1px solid #1f2933;
    background: radial-gradient(140% 160% at 0% 0%, #020617 0, #020617 40%, #000 100%);
    padding: 1.6rem 1.8rem;
    border-radius: 12px;
    margin-bottom: 1.1rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.wdp-right-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 0.7rem;
}

.wdp-right-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f9fafb;
    margin-bottom: 0.4rem;
}

.wdp-right-list {
    list-style: none;
    margin: 0.4rem 0 0 0;
    padding: 0;
}

.wdp-right-list li {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 0.4rem;
}

.wdp-right-btn {
    display: inline-block;
    margin-top: 0.6rem;
}

.wdp-right-note {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.7rem;
}

/* Responsive */
/* ===========================
   Commitment Section – Mobile Fix
   =========================== */

/* Stack earlier (important for “big mobile / small tablet” widths) */
@media (max-width: 1024px) {
    .wdp-commitment-grid {
        flex-direction: column;
        gap: 2.2rem;
    }

    .wdp-commitment-right {
        text-align: left;
        min-width: 0;
        width: 100%;
    }

    .wdp-right-btn {
        width: 100%;
        text-align: center;
    }
}

/* True mobile polish */
@media (max-width: 768px) {
    /* Force left side to be a clean vertical stack */
    .wdp-commitment-left {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
    }

    /* Defensive reset: prevents “side-by-side” if any theme CSS is interfering */
    .wdp-commitment-left h2,
    .wdp-commitment-left p,
    .wdp-commitment-left .wdp-eyebrow,
    .wdp-commitment-list {
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .wdp-eyebrow {
        margin-bottom: 0.2rem;
    }

    .wdp-commitment-left h2 {
        margin: 0;
    }

    .wdp-commitment-left p {
        margin: 0;
        line-height: 1.65;
    }

    .wdp-commitment-list {
        margin-top: 0.9rem;
    }

    .wdp-commitment-list li {
        font-size: 0.96rem;
        line-height: 1.55;
        margin-bottom: 0.75rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .wdp-commitment-grid {
        gap: 1.6rem;
    }

    .wdp-commitment-list li {
        font-size: 0.94rem;
    }

    .wdp-right-box {
        padding: 1.35rem 1.35rem;
    }
}


@media (max-width: 480px) {
    .wdp-right-box {
        padding: 1.4rem 1.4rem;
    }
}

/* --- Accessibility: guaranteed contrast for CTA + sections --- */

/* If your theme makes .section light, force it to stay dark in this template */
.section,
.logos {
  background: var(--bg-dark);
  color: var(--text-light);
}

/* CTA: explicitly dark background + readable text */


.cta-section p {
  color: #d4d4d8; /* higher contrast than --gray */
}

