:root {
    --bg: #080d18;
    --bg-soft: #0c1424;
    --panel: #111a2c;
    --panel-2: #141f36;
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.17);
    --text: #f3f6fb;
    --text-muted: #9aa7c2;
    --text-dim: #66748f;
    --blue: #3b82f6;
    --cyan: #22d3ee;
    --blue-dim: rgba(59, 130, 246, 0.14);
    --grad: linear-gradient(120deg, var(--blue), var(--cyan));
    --radius: 20px;
    --maxw: 1200px;
    --shadow: 0 24px 60px -28px rgba(2, 6, 16, 0.7);
    color-scheme: dark;
}

html[data-theme="light"] {
    --bg: #f7f9fd;
    --bg-soft: #eef2f9;
    --panel: #ffffff;
    --panel-2: #f1f5fb;
    --border: rgba(15, 23, 42, 0.09);
    --border-strong: rgba(15, 23, 42, 0.16);
    --text: #0f172a;
    --text-muted: #4b5875;
    --text-dim: #8794ab;
    --blue: #2563eb;
    --cyan: #0891b2;
    --blue-dim: rgba(37, 99, 235, 0.08);
    --shadow: 0 24px 60px -30px rgba(15, 23, 42, 0.22);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    transition: background .3s ease, color .3s ease;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body, header, .svc-card, .client-card, .contact-panel, .contact-form input, .contact-form textarea, .contact-form select, .foot-col a, .socials a, .theme-toggle, .dd-panel, .cta-band {
    transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

::selection {
    background: var(--blue);
    color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.16;
    margin: 0;
    letter-spacing: -0.015em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border-strong);
    padding: 8px 16px 8px 8px;
    border-radius: 100px;
    background: var(--panel);
}

.pill .dot-grad {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--grad);
    flex: 0 0 auto;
    position: relative;
    animation: dotPulse 2.4s ease-in-out infinite;
}

.pill .dot-grad::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--grad);
    opacity: 0.35;
    filter: blur(4px);
    z-index: -1;
    animation: dotGlow 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(59, 130, 246, 0);
    }
}

@keyframes dotGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.25);
    }
}

.pill-text {
    position: relative;
    overflow: hidden;
    height: 1.3em;
    display: inline-block;
    vertical-align: middle;
}

.pill-text span {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    white-space: nowrap;
}

@keyframes slideOutUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

section {
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* glow blobs */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

html[data-theme="light"] .glow {
    opacity: 0.18;
}

.glow-1 {
    width: 480px;
    height: 480px;
    background: var(--blue);
    top: -160px;
    right: -120px;
}

.glow-2 {
    width: 420px;
    height: 420px;
    background: var(--cyan);
    top: 220px;
    left: -160px;
}

/* ---------- NAV ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 0;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 14px 0;
    background: rgba(8, 13, 24, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

html[data-theme="light"] header.scrolled {
    background: rgba(247, 249, 253, 0.86);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 25px;
}

.brand-mark {
    width: 45px;
    height: 45px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04101f;
    font-weight: 800;
    font-size: 16px;
}

.brand small {
    display: block;
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    transition: color .2s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a.active {
    color: var(--text);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad);
}

.nav-cta {
    padding: 11px 22px;
    border-radius: 100px;
    background: var(--grad);
    color: #04101f;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.burger {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: var(--panel);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 16px;
    height: 1.5px;
    background: var(--text);
    display: block;
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: var(--panel);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    flex: 0 0 auto;
}

.theme-toggle:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.theme-toggle svg {
    width: 16px;
    height: 16px;
}

.theme-toggle .icon-moon {
    display: none;
}

html[data-theme="light"] .theme-toggle .icon-sun {
    display: none;
}

html[data-theme="light"] .theme-toggle .icon-moon {
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ---------- HERO ---------- */
.hero {
    padding: 168px 0 90px;
    overflow: hidden;
}

.hero-top {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(38px, 5.4vw, 62px);
    margin: 22px 0 20px;
}

.hero h1 .grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p.lead {
    font-size: 18px;
    color: var(--text-muted);
    margin: 0 auto 34px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.btn {
    padding: 14px 27px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--grad);
    color: #04101f;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -14px rgba(59, 130, 246, 0.55);
}

.btn-ghost {
    border-color: var(--border-strong);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* trusted-by strip */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.trust-strip span.lbl {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.trust-strip .tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--cyan);
    padding: 7px 14px;
    border-radius: 100px;
}

/* ---------- SECTION HEADS ---------- */
.sec-head {
    max-width: 640px;
    margin-bottom: 50px;
}

.sec-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.sec-head h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    margin-top: 16px;
}

.sec-head p {
    color: var(--text-muted);
    font-size: 16.5px;
    margin-top: 14px;
}

.sec-pad {
    padding: 100px 0;
}

.sec-border-top {
    border-top: 1px solid var(--border);
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-copy p {
    color: var(--text-muted);
    font-size: 16.5px;
    margin-bottom: 24px;
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--panel);
}

.pillar .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--blue-dim);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.pillar h4 {
    font-size: 16.5px;
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pillar p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- DEEP DIVES ---------- */
.deepdive {
    display: grid;
    grid-template-columns:1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.deepdive.rev .dd-copy {
    order: 2;
}

.deepdive.rev .dd-panel {
    order: 1;
}

.dd-copy h3 {
    font-size: clamp(24px, 2.8vw, 30px);
    margin: 16px 0 18px;
}

.dd-copy p {
    color: var(--text-muted);
    font-size: 15.5px;
    margin-bottom: 16px;
}

.dd-copy a.dd-link {
    color: var(--blue);
    font-weight: 700;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.dd-facts {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.dd-facts .fact {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
}

.dd-facts .fact svg {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--blue);
}

.dd-panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.dd-panel::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: var(--grad);
    opacity: 0.14;
    filter: blur(50px);
    top: -60px;
    right: -60px;
    border-radius: 50%;
}

.dd-panel svg {
    width: 100%;
    position: relative;
}

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;
}

.svc-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.svc-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.svc-card .svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #ffffff;
}

.svc-card.is-new .svc-icon {
    background: var(--panel-2);
    border: 1px solid var(--blue);
    color: var(--blue);
}

.svc-card h4 {
    font-size: 15.5px;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.new-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #04101f;
    background: var(--grad);
    padding: 3px 9px;
    border-radius: 100px;
    text-transform: uppercase;
}

.svc-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.svc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 1.5px;
    background: var(--blue);
}

.svc-card.cta-card {
    align-items: flex-start;
    justify-content: center;
    border-style: dashed;
    border-color: var(--border-strong);
    background: transparent;
    text-align: left;
}

.svc-card.cta-card:hover {
    border-color: var(--blue);
}

.svc-card.cta-card .svc-icon {
    background: transparent;
    border: 1px dashed var(--border-strong);
    color: var(--blue);
}

.svc-card.cta-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.svc-card.cta-card .cta-link {
    margin-top: auto;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ---------- INDUSTRIES ---------- */
.industries-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
}

.industry-card .ind-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--blue-dim);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.industry-card h4 {
    font-size: 15.5px;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.industry-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- PROCESS ---------- */
.process-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: var(--border-strong);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    padding-right: 24px;
}

.process-step .p-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad);
    color: #04101f;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.process-step p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- WHY US ---------- */
.why-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    padding: 26px 4px;
    border-top: 2px solid var(--border-strong);
}

.why-card .w-icon {
    color: var(--blue);
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 15.5px;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.why-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.faq-q .fq-plus {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: transform .25s ease;
    color: var(--text-muted);
}

.faq-item.open .fq-plus {
    transform: rotate(45deg);
    background: var(--grad);
    color: #04101f;
    border-color: transparent;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.open .faq-a {
    max-height: 220px;
}

.faq-a p {
    margin: 0;
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: var(--text-muted);
}

/* ---------- CLIENTS ---------- */
.marquee {
    margin: 0 130pt;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll-left 42s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.client-card {
    flex: 0 0 auto;
    width: 230px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.client-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
}

.client-card h5 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0 0 3px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.client-card span {
    font-size: 12.5px;
    color: var(--text-dim);
}

.client-card.placeholder {
    border-style: dashed;
    border-color: var(--border-strong);
}

.client-card.placeholder .client-badge {
    background: transparent;
    border: 1px dashed var(--border-strong);
    color: var(--text-dim);
}

.client-card.placeholder h5 {
    color: var(--text-muted);
}

.client-note {
    margin-top: 28px;
    font-size: 13.5px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-note svg {
    color: var(--blue);
    flex: 0 0 auto;
}

/* ---------- CTA BAND ---------- */
.cta-band {
    background: var(--grad);
    border-radius: 28px;
    padding: 60px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    color: #04101f;
}

.cta-band h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: #04101f;
    max-width: 520px;
}

.cta-band p {
    color: rgba(4, 16, 31, 0.75);
    margin-top: 10px;
    font-size: 15px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-band .btn-primary {
    background: #04101f;
    color: #fff;
}

.cta-band .btn-ghost {
    border-color: rgba(4, 16, 31, 0.35);
    color: #04101f;
}

.cta-band .btn-ghost:hover {
    border-color: #04101f;
}

/* ---------- CONTACT ---------- */
.contact-panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 54px;
    /*display: grid;*/
    grid-template-columns:1.05fr 0.95fr;
    gap: 54px;
    box-shadow: var(--shadow);
}

.contact-panel h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 16px;
}

.contact-panel .lead {
    color: var(--text-muted);
    font-size: 15.5px;
    /*max-width: 420px;*/
    margin-bottom: 8px;
}

.contact-list {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
}

.contact-list .ic {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--blue-dim);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.contact-list a:hover {
    color: var(--blue);
}

.contact-form {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
}

.contact-form .f-row {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    background: var(--panel);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: 2px solid var(--blue);
    outline-offset: 1px;
}

.contact-form textarea {
    min-height: 88px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    margin-top: 4px;
}

/* ---------- FOOTER ---------- */
footer {
    padding: 64px 0 30px;
    border-top: 1px solid var(--border);
}

.foot-grid {
    display: grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.foot-brand p {
    color: var(--text-dim);
    font-size: 13.5px;
    margin-top: 16px;
    max-width: 280px;
}

.foot-legal {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 18px;
    line-height: 2;
}

.foot-col h5 {
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.foot-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.foot-col a {
    font-size: 14px;
    color: var(--text-muted);
}

.foot-col a:hover {
    color: var(--blue);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

.foot-bottom p {
    font-size: 12.5px;
    color: var(--text-dim);
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.socials a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.whatsapp-fab {
    position: fixed;
    bottom: 36px;
    right: 26px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    box-shadow: var(--shadow);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .about-grid, .deepdive {
        grid-template-columns:1fr;
    }

    .deepdive.rev .dd-copy {
        order: 1;
    }

    .deepdive.rev .dd-panel {
        order: 2;
    }

    .services-grid, .industries-grid, .process-grid, .why-grid {
        grid-template-columns:repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }

    .contact-panel {
        grid-template-columns:1fr;
        padding: 36px;
    }

    .foot-grid {
        grid-template-columns:1fr 1fr;
    }

    .slide {
        grid-template-columns:1fr;
        text-align: center;
        padding: 40px 30px;
    }

    .slide-visual {
        order: 1;
    }

    .slide-copy {
        order: 2;
    }

    .slide-tags {
        justify-content: center;
    }

    .dd-facts {
        grid-template-columns:1fr;
    }
}

@media (max-width: 680px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: var(--bg);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px;
        gap: 26px;
        transform: translateX(100%);
        transition: transform .3s ease;
        visibility: hidden;
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
    }

    .burger {
        display: flex;
    }

    .nav-links .nav-cta {
        display: inline-flex;
        margin-top: 10px;
    }

    .services-grid, .industries-grid, .process-grid, .why-grid {
        grid-template-columns:1fr;
    }

    .foot-grid {
        grid-template-columns:1fr 1fr;
        gap: 30px;
    }

    .sec-pad {
        padding: 72px 0;
    }

    .hero {
        padding: 136px 0 70px;
    }

    .cta-band {
        padding: 40px 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-panel {
        padding: 26px;
    }

    .slide {
        min-height: auto;
    }

    .brand {
        font-size: 16pt;
    }

    .marquee {
        margin: 0 0;
    }
}