/* ============================================================
   ARA Softwares — Premium Design System
   Dark first. Light variant via :root[data-theme="light"].
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root,
:root[data-theme="dark"] {
    --bg: #020617;
    --bg-2: #0F172A;
    --bg-3: #111c34;
    --text: #E2E8F0;
    --text-strong: #ffffff;
    --muted: #94A3B8;
    --primary: #10B981;
    --accent: #22C55E;
    --glow-c: #34D399;
    /* Legacy aliases (keep so existing rules using --blue / --cyan still work) */
    --blue: #10B981;
    --cyan: #34D399;
    --grad: linear-gradient(135deg, #10B981 0%, #22C55E 50%, #34D399 100%);
    --glass: rgba(255, 255, 255, .04);
    --glass-strong: rgba(15, 23, 42, .6);
    --brd: rgba(255, 255, 255, .08);
    --card-bg: linear-gradient(145deg, rgba(15, 27, 48, .88), rgba(5, 12, 28, .78));
    --card-border: rgba(148, 163, 184, .15);
    --card-shadow: 0 18px 46px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .045);
    --card-shadow-hover: 0 24px 56px rgba(0, 0, 0, .32), 0 0 30px rgba(16, 185, 129, .16);
    --shadow: 0 20px 50px rgba(16, 185, 129, .2);
    --glow: 0 0 25px rgba(52, 211, 153, .45);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1200px;
    --t: .3s cubic-bezier(.2, .8, .2, 1);
}

:root[data-theme="light"] {
    --bg: #F8FAFC;
    --bg-2: #FFFFFF;
    --bg-3: #eef5f1;
    --text: #0F172A;
    --text-strong: #0F172A;
    --muted: #64748B;
    --glass: rgba(255, 255, 255, .7);
    --glass-strong: rgba(255, 255, 255, .9);
    --brd: rgba(15, 23, 42, .08);
    --card-bg: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 250, 247, .94));
    --card-border: rgba(15, 23, 42, .11);
    --card-shadow: 0 14px 36px rgba(15, 23, 42, .09), 0 2px 8px rgba(15, 23, 42, .04), inset 0 1px 0 #fff;
    --card-shadow-hover: 0 22px 48px rgba(15, 23, 42, .13), 0 10px 26px rgba(16, 185, 129, .12);
    --shadow: 0 20px 50px rgba(16, 185, 129, .18);
    --glow: 0 0 25px rgba(52, 211, 153, .35);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background .4s ease, color .4s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(60% 40% at 15% 10%, rgba(16, 185, 129, .18), transparent 60%),
        radial-gradient(50% 40% at 85% 90%, rgba(52, 211, 153, .14), transparent 60%);
}

:root[data-theme="light"] body::before {
    opacity: .4
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--t)
}

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit
}

ul {
    list-style: none
}

.container {
    width: min(var(--container), 92%);
    margin: 0 auto;
    position: relative;
    z-index: 1
}

/* ===== Skip link & a11y ===== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--blue);
    color: #fff;
    padding: 8px 14px;
    border-radius: 0 0 8px 0;
    z-index: 10000
}

.skip-link:focus {
    left: 0
}

/* ===== Section ===== */
section {
    padding: 58px 0;
    position: relative;
    z-index: 1
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 34px
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cyan);
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--brd);
    margin-bottom: 18px
}

.section-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 14px;
    color: var(--text-strong)
}

.section-title .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.section-sub {
    color: var(--muted);
    font-size: 17px
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 10px 28px rgba(16, 185, 129, .45)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(52, 211, 153, .55), 0 0 25px rgba(52, 211, 153, .4)
}

.btn-ghost {
    background: var(--glass);
    border-color: var(--brd);
    color: var(--text)
}

.btn-ghost:hover {
    background: var(--glass-strong);
    transform: translateY(-2px)
}

:root[data-theme="light"] .btn-ghost {
    background: rgba(15, 23, 42, .06);
    border-color: rgba(15, 23, 42, .22);
    color: #0F172A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

:root[data-theme="light"] .btn-ghost:hover {
    background: rgba(15, 23, 42, .1);
    border-color: rgba(16, 185, 129, .5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12)
}

/* ===== Glass card primitive ===== */
.glass {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--card-shadow)
}

:root[data-theme="light"] .glass {
    background: var(--card-bg);
    border-color: var(--card-border);
    box-shadow: var(--card-shadow)
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--t);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(2, 6, 23, .55);
    border-bottom: 1px solid transparent
}

:root[data-theme="light"] .nav {
    background: rgba(255, 255, 255, .6)
}

.nav.scrolled {
    padding: 10px 0;
    background: rgba(2, 6, 23, .92);
    border-bottom-color: var(--brd);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4)
}

:root[data-theme="light"] .nav.scrolled {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(16, 185, 129, .12)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-strong);
    letter-spacing: -.01em
}

.logo-mark-fotter {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    box-shadow: var(--glow)
}


.logo-mark {
   
    display: flex;
    align-items: center;
    flex-shrink: 0
}

/* Reusable logo image class */
.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    /* subtle lift so white SVG paths pop on dark bg */
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.25))
}

/* Light mode — add definition so grey paths don't fade */
:root[data-theme="light"] .logo-img {
    filter: drop-shadow(0 1px 4px rgba(0,0,0,.18))
}

.logo-text {
    display: inline-block
}

.logo-text b {
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.nav-links {
    display: flex;
    gap: 30px
}

.nav-links a {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 6px 0
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cyan)
}

:root[data-theme="light"] .nav-links a:hover,
:root[data-theme="light"] .nav-links a.active {
    color: #047857;
    font-weight: 650
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--grad);
    transition: var(--t);
    border-radius: 2px
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

:root[data-theme="light"] .nav-links a:hover::after,
:root[data-theme="light"] .nav-links a.active::after {
    background: #059669;
    box-shadow: 0 2px 8px rgba(5, 150, 105, .24)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--brd);
    display: grid;
    place-items: center;
    color: var(--text);
    transition: var(--t)
}

.theme-toggle:hover {
    background: var(--glass-strong);
    transform: rotate(15deg)
}

.theme-toggle svg {
    width: 18px;
    height: 18px
}

.theme-toggle .ico-sun {
    display: none
}

.theme-toggle .ico-moon {
    display: block
}

:root[data-theme="light"] .theme-toggle .ico-sun {
    display: block
}

:root[data-theme="light"] .theme-toggle .ico-moon {
    display: none
}

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--glass);
    border: 1px solid var(--brd);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--t)
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, .94) 0%, rgba(2, 8, 24, .82) 47%, rgba(2, 10, 27, .46) 100%),
        url('../img/hero-ai-automation.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

:root[data-theme="light"] .hero {
    background-image:
        linear-gradient(90deg, rgba(248, 250, 252, .88) 0%, rgba(248, 250, 252, .78) 48%, rgba(236, 253, 245, .50) 100%),
        url('../img/hero-ai-automation.jpg')
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--brd);
    font-size: 13px;
    color: var(--text);
    margin-bottom: 26px;
    animation: floatBadge 3.2s ease-in-out infinite
}

.hero-badge .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan)
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 22px;
    color: var(--text-strong)
}

.hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    transition: .7s cubic-bezier(.2, .8, .2, 1)
}

.hero h1 .word.show {
    opacity: 1;
    transform: translateY(0)
}

.hero h1 .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero p.lead {
    color: var(--muted);
    font-size: clamp(15px, 1.5vw, 18px);
    max-width: 540px;
    margin-bottom: 34px;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s ease .4s
}

.hero p.lead.show {
    opacity: 1;
    transform: translateY(0)
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s ease .8s
}

.hero-ctas.show {
    opacity: 1;
    transform: translateY(0)
}

.hero-meta {
    display: flex;
    gap: 30px;
    margin-top: 38px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s ease 1.05s
}

.hero-meta.show {
    opacity: 1;
    transform: translateY(0)
}

.hero-meta .item b {
    display: block;
    font-size: 24px;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800
}

.hero-meta .item span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em
}

/* hero background radial glow */
.hero-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 70% 50%, rgba(16, 185, 129, .25), transparent 40%);
    filter: blur(60px);
    animation: heroGlowDrift 8s ease-in-out infinite;
}

@keyframes heroGlowDrift {

    0%,
    100% {
        background: radial-gradient(circle at 70% 50%, rgba(16, 185, 129, .25), transparent 40%)
    }

    33% {
        background: radial-gradient(circle at 78% 42%, rgba(52, 211, 153, .28), transparent 42%)
    }

    66% {
        background: radial-gradient(circle at 63% 58%, rgba(16, 185, 129, .22), transparent 38%)
    }
}

:root[data-theme="light"] .hero-bg-glow {
    background: radial-gradient(circle at 70% 50%, rgba(16, 185, 129, .11), transparent 42%);
    filter: blur(36px);
    opacity: .68
}

/* globe wrapper */
.hero-globe-wrap {
    position: relative;
    width: 520px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatGlobe 6s ease-in-out infinite
}

.hero-globe-wrap::before,
.hero-globe-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    pointer-events: none
}

.hero-globe-wrap::before {
    width: 430px;
    height: 430px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(52, 211, 153, .26);
    background: radial-gradient(circle, rgba(16, 185, 129, .08), transparent 66%);
    box-shadow:
        0 0 70px rgba(16, 185, 129, .20),
        inset 0 0 55px rgba(52, 211, 153, .08);
    z-index: 1;
    animation: globeHaloPulse 4.8s ease-in-out infinite
}

.hero-globe-wrap::after {
    width: 472px;
    height: 472px;
    transform: translate(-50%, -50%) rotate(-14deg);
    border: 1px dashed rgba(52, 211, 153, .22);
    box-shadow: 0 0 28px rgba(16, 185, 129, .12);
    z-index: 1;
    animation: globeRingSpin 24s linear infinite
}

@keyframes globeHaloPulse {
    0%, 100% { opacity: .72; transform: translate(-50%, -50%) scale(.98) }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.035) }
}

@keyframes globeRingSpin {
    to { transform: translate(-50%, -50%) rotate(346deg) }
}

:root[data-theme="light"] .hero-globe-wrap::before {
    border-color: rgba(4, 120, 87, .46);
    background: radial-gradient(circle, rgba(248, 250, 252, .24), rgba(16, 185, 129, .12) 55%, transparent 70%);
    box-shadow:
        0 0 62px rgba(5, 150, 105, .24),
        inset 0 0 52px rgba(16, 185, 129, .14)
}

:root[data-theme="light"] .hero-globe-wrap::after {
    border-color: rgba(4, 120, 87, .46);
    box-shadow: 0 0 28px rgba(5, 150, 105, .18)
}

@keyframes floatGlobe {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-18px)
    }
}

.globe-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 2;
    filter: drop-shadow(0 0 18px rgba(16, 185, 129, .34))
}

:root[data-theme="light"] .globe-canvas {
    filter: contrast(1.14) saturate(1.12) drop-shadow(0 0 20px rgba(4, 120, 87, .38))
}

.hero-orb {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, .38), rgba(52, 211, 153, .12) 55%, transparent 80%);
    filter: blur(52px);
    opacity: 1;
    animation: orbPulse 5s ease-in-out infinite;
    z-index: 0
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .75
    }

    50% {
        transform: scale(1.14);
        opacity: 1
    }
}

:root[data-theme="light"] .hero-orb {
    background: radial-gradient(circle, rgba(4, 120, 87, .18), rgba(16, 185, 129, .06) 55%, transparent 80%);
    filter: blur(44px)
}

/* floating cards over globe */
.hero-card {
    position: absolute;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(15, 23, 42, .75);
    border: 1px solid rgba(16, 185, 129, .25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 40px rgba(16, 185, 129, .18);
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 5
}

:root[data-theme="light"] .hero-card {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(4, 120, 87, .28);
    box-shadow: 0 4px 24px rgba(4, 120, 87, .15)
}

.hero-card .ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(52, 211, 153, .5)
}

.hero-card .ico svg {
    width: 16px;
    height: 16px
}

.hero-card.c1 {
    top: 4%;
    left: -30px;
    animation-delay: 0s
}

.hero-card.c2 {
    top: 44%;
    right: -30px;
    animation-delay: 1.2s
}

.hero-card.c3 {
    bottom: 6%;
    left: 4%;
    animation-delay: 2.4s
}

.hero-card b {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-strong)
}

.hero-card span {
    color: var(--muted);
    font-size: 11px
}

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease 1.6s forwards
}

@keyframes fadeIn {
    to {
        opacity: .85
    }
}

.scroll-indicator .arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--cyan);
    border-bottom: 2px solid var(--cyan);
    transform: rotate(45deg);
    animation: scrollBounce 1.6s infinite
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
        opacity: .4
    }

    50% {
        transform: rotate(45deg) translate(5px, 5px);
        opacity: 1
    }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.stat {
    padding: 36px 24px;
    text-align: center;
    transition: var(--t)
}

.stat:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 211, 153, .4);
    box-shadow: 0 20px 50px rgba(16, 185, 129, .22)
}

.stat .num {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.02em;
    line-height: 1
}

.stat .label {
    color: var(--muted);
    font-size: 13px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 500
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.services-grid--4 {
    grid-template-columns: repeat(4, 1fr)
}

.service-card {
    padding: 28px 24px;
    transition: var(--t);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(52, 211, 153, .16), transparent 36%),
        linear-gradient(135deg, rgba(16, 185, 129, .06), transparent 52%);
    opacity: .55;
    transition: var(--t)
}

.service-card:hover {
    transform: translateY(-7px) scale(1.008);
    border-color: rgba(52, 211, 153, .45);
    box-shadow: var(--card-shadow-hover)
}

.service-card:hover::before {
    opacity: 1
}

:root[data-theme="light"] .service-card::before {
    background:
        radial-gradient(circle at 12% 0%, rgba(16, 185, 129, .13), transparent 38%),
        linear-gradient(135deg, rgba(16, 185, 129, .045), transparent 56%)
}

.service-card>* {
    position: relative;
    z-index: 1
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(16, 185, 129, .4)
}

.service-icon svg {
    width: 24px;
    height: 24px
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-strong)
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.55
}

.service-card .learn {
    color: var(--cyan);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-top: auto
}

.service-card .learn:hover {
    gap: 12px
}

.service-detail {
    margin-top: 36px;
    padding: 36px;
    display: none
}

.service-detail.show {
    display: block;
    animation: fadeUp .5s ease
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.service-detail h3 {
    font-size: 28px;
    margin-bottom: 14px;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.service-detail p {
    color: var(--muted);
    margin-bottom: 18px
}

.service-detail ul {
    margin: 0 0 22px 22px;
    color: var(--muted)
}

.service-detail ul li {
    margin-bottom: 8px;
    list-style: disc
}

/* ============================================================
   PRODUCTS — Bento Grid
   ============================================================ */
/* ============================================================
   PRODUCTS
   ============================================================ */
/* Base card shared by bento & carousel */
.product-card {
    padding: 26px;
    transition: var(--t);
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 211, 153, .45);
    box-shadow: 0 20px 50px rgba(16, 185, 129, .20), 0 0 22px rgba(52, 211, 153, .28)
}

.product-card .tag {
    display: inline-block;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, .18);
    color: var(--glow-c);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 14px
}

.product-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 8px
}

.product-card h4 span {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.product-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: auto
}

.btn-explore-sm {
    margin-top: 18px;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--glow-c);
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--t)
}

.btn-explore-sm:hover {
    color: var(--primary);
    gap: 10px
}

/* Bento grid (products.php page) */
.products-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.products-bento .product-card {
    min-height: 200px
}

.products-bento .product-card.wide {
    grid-column: span 2
}

/* Rich product cards */
.products-bento .product-card--visual {
    padding: 0;
    min-height: 0;
    overflow: hidden;
    isolation: isolate
}

.product-card-link {
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%
}

.product-card-preview {
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    position: relative;
    background: #e8eef5;
    border-bottom: 1px solid var(--brd)
}

.product-card-preview>img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .35s ease
}

.product-card--visual:hover .product-card-preview>img {
    transform: scale(1.035);
    filter: saturate(1.08)
}

.product-preview-brand {
    position: absolute;
    left: 14px;
    top: 13px;
    min-width: 88px;
    height: 38px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(15, 23, 42, .1);
    box-shadow: 0 7px 20px rgba(2, 6, 23, .14);
    backdrop-filter: blur(8px)
}

.product-preview-brand img {
    width: 72px;
    height: 28px;
    object-fit: contain
}

.product-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.product-card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 18px 0 2px
}

.product-card-highlights li {
    list-style: none;
    padding: 6px 9px;
    border-radius: 8px;
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .18);
    color: var(--text);
    font-size: 11px;
    font-weight: 650
}

.product-card--visual .btn-explore-sm {
    margin-top: 22px
}

.product-card-link:focus-visible {
    outline: 3px solid rgba(16, 185, 129, .7);
    outline-offset: -3px;
    border-radius: inherit
}

.products-bento .product-card.wide .product-card-link {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr)
}

.products-bento .product-card.wide .product-card-preview {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
    align-self: start;
    border-bottom: 0;
    border-right: 1px solid var(--brd)
}

.products-bento .product-card.wide .product-card-preview>img {
    object-fit: contain;
    object-position: top left
}

.products-bento .product-card.wide:hover .product-card-preview>img {
    transform: none
}

/* -- CENTER-FOCUS CAROUSEL (home page) -- */
.prod-carousel-wrap {
    padding: 0 0 18px;
    position: relative
}

.prod-stage {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    overflow: hidden;
    padding: 12px 0
}

.prod-card {
    position: absolute;
    width: min(390px, 82vw);
    min-height: 370px;
    padding: 38px 34px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1), opacity .45s ease, filter .35s ease;
    transform-style: preserve-3d;
    will-change: transform, opacity
}

.prod-card[data-state="active"] {
    transform: translateX(0) scale(1) rotateY(0deg);
    opacity: 1;
    filter: none;
    border-color: rgba(16, 185, 129, .55);
    box-shadow: 0 0 35px rgba(16, 185, 129, .20), 0 16px 48px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .06);
    z-index: 10
}

:root[data-theme="light"] .prod-card[data-state="active"] {
    box-shadow: 0 0 28px rgba(4, 120, 87, .15), 0 14px 45px rgba(0, 0, 0, .08);
    border-color: rgba(4, 120, 87, .40)
}

.prod-card[data-state="prev"] {
    transform: translateX(-72%) scale(0.9) rotateY(10deg);
    opacity: .70;
    filter: blur(1.5px);
    z-index: 5;
    pointer-events: none
}

.prod-card[data-state="next"] {
    transform: translateX(72%) scale(0.9) rotateY(-10deg);
    opacity: .70;
    filter: blur(1.5px);
    z-index: 5;
    pointer-events: none
}

.prod-card[data-state="far-prev"] {
    transform: translateX(-125%) scale(0.75) rotateY(18deg);
    opacity: .30;
    filter: blur(3px);
    z-index: 2;
    pointer-events: none
}

.prod-card[data-state="far-next"] {
    transform: translateX(125%) scale(0.75) rotateY(-18deg);
    opacity: .30;
    filter: blur(3px);
    z-index: 2;
    pointer-events: none
}

.prod-card[data-state="hidden"] {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    z-index: 0
}

.prod-card-tag {
    display: inline-block;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, .18);
    color: var(--glow-c);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700
}

.prod-card-name {
    font-size: clamp(24px, 2.8vw, 30px);
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1.1
}

.prod-card-name span {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.prod-card-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.prod-card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 2px
}

.prod-card-highlights li {
    padding: 6px 9px;
    border-radius: 8px;
    background: rgba(16, 185, 129, .11);
    border: 1px solid rgba(52, 211, 153, .2);
    color: var(--text);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.2
}

.btn-explore {
    margin-top: 8px;
    padding: 14px 26px;
    background: var(--grad);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(16, 185, 129, .30)
}

.btn-explore:hover {
    box-shadow: 0 0 28px rgba(16, 185, 129, .55), 0 8px 28px rgba(16, 185, 129, .42);
    transform: translateY(-2px)
}

.prod-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 12px
}

#products {
    padding-bottom: 26px
}

#products + #tech,
#tech {
    padding-top: 38px;
    padding-bottom: 46px
}

.prod-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--brd);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--t);
    flex-shrink: 0
}

.prod-arrow:hover {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 20px rgba(16, 185, 129, .40)
}

.prod-arrow svg {
    width: 20px;
    height: 20px;
    pointer-events: none
}

.prod-dots {
    display: flex;
    gap: 8px;
    align-items: center
}

.prod-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brd);
    cursor: pointer;
    transition: all var(--t);
    border: none;
    padding: 0;
    flex-shrink: 0
}

.prod-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--primary)
}


/* ============================================================
   ABOUT
   ============================================================ */
#story {
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, .70), rgba(2, 8, 24, .62), rgba(2, 6, 23, .70)),
        url('../img/about-journey-timeline.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-block: 1px solid rgba(52, 211, 153, .10)
}

:root[data-theme="light"] #story {
    background-image:
        linear-gradient(120deg, rgba(219, 234, 254, .74), rgba(209, 250, 229, .64)),
        url('../img/about-journey-timeline.jpg');
    border-block-color: rgba(16, 185, 129, .13)
}

:root[data-theme="light"] #story .about-text h2 {
    color: #0f172a
}

:root[data-theme="light"] #story .about-text p,
:root[data-theme="light"] #story .timeline-item p {
    color: #26364a
}

:root[data-theme="light"] #story .about-text p strong {
    color: #172033
}

:root[data-theme="light"] #story .big-num small {
    color: #334155;
    -webkit-text-fill-color: #334155
}

:root[data-theme="light"] #story .timeline {
    border-left-color: rgba(30, 41, 59, .24)
}

:root[data-theme="light"] #story .big-num {
    background: linear-gradient(135deg, #047857, #059669 52%, #16a34a);
    -webkit-background-clip: text;
    background-clip: text
}

:root[data-theme="light"] #story .timeline-item .yr {
    color: #047857
}

:root[data-theme="light"] #story .timeline-item::before {
    background: #059669;
    box-shadow: 0 0 10px rgba(5, 150, 105, .58)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center
}

.big-num {
    font-size: clamp(140px, 22vw, 260px);
    font-weight: 800;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.05em;
    text-align: center;
    opacity: 0;
    transform: scale(.8);
    transition: 1s cubic-bezier(.2, .8, .2, 1)
}

.big-num.show {
    opacity: 1;
    transform: scale(1)
}

.big-num small {
    display: block;
    font-size: 16px;
    color: var(--muted);
    font-weight: 400;
    background: none;
    -webkit-text-fill-color: var(--muted);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-top: 14px
}

.about-text h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -.02em;
    color: var(--text-strong)
}

.about-text p {
    color: var(--muted);
    margin-bottom: 14px;
    font-size: 16px
}

.timeline {
    margin-top: 34px;
    border-left: 2px solid var(--brd);
    padding-left: 24px
}

.timeline-item {
    margin-bottom: 22px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: .6s ease
}

.timeline-item.show {
    opacity: 1;
    transform: translateX(0)
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -31px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 10px var(--blue)
}

.timeline-item .yr {
    font-weight: 700;
    color: var(--cyan);
    font-size: 14px;
    letter-spacing: .1em
}

.timeline-item p {
    color: var(--muted);
    font-size: 15px;
    margin-top: 4px;
    margin-bottom: 0
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.why-card {
    padding: 30px 24px;
    text-align: center;
    transition: var(--t)
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, .4)
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad);
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    color: #fff;
    animation: pulseIcon 2.6s ease-in-out infinite
}

.why-icon svg {
    width: 26px;
    height: 26px
}

@keyframes pulseIcon {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .55)
    }

    50% {
        box-shadow: 0 0 0 14px rgba(16, 185, 129, 0)
    }
}

.why-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-strong)
}

.why-card p {
    color: var(--muted);
    font-size: 14px
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #04140e 0%, #062018 50%, #082b1f 100%)
}

:root[data-theme="light"] .cta-banner {
    background: linear-gradient(135deg, #e6fbf2, #d3f5e3)
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 60% at 50% 50%, rgba(16, 185, 129, .28), transparent 70%)
}

.cta-banner h2 {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -.02em;
    color: var(--text-strong);
    position: relative
}

.cta-banner h2 .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.cta-banner p {
    color: var(--muted);
    margin-bottom: 28px;
    position: relative;
    font-size: 17px
}

.cta-banner .btn {
    position: relative;
    animation: pulseBtn 2s infinite
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .7)
    }

    70% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0)
    }
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
    padding: 110px 0 55px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--brd)
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 60% at 50% 30%, rgba(16, 185, 129, .2), transparent 70%);
    z-index: 0
}

.page-banner h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--text-strong);
    position: relative;
    z-index: 1
}

.page-banner h1 .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.page-banner p {
    color: var(--muted);
    margin-top: 14px;
    font-size: 17px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1
}

.page-banner .crumbs {
    margin-top: 18px;
    font-size: 13px;
    color: var(--muted);
    position: relative;
    z-index: 1
}

.page-banner .crumbs a:hover {
    color: var(--cyan)
}

.page-banner .crumbs span {
    margin: 0 8px;
    opacity: .5
}

:root[data-theme="light"] .page-banner {
    background: linear-gradient(135deg, #f0fdf7, #e8f8f0);
    border-bottom-color: rgba(16, 185, 129, .2)
}

:root[data-theme="light"] .page-banner p,
:root[data-theme="light"] .page-banner .crumbs {
    color: #374151
}

.page-banner--tech {
    background-image:
        linear-gradient(90deg, rgba(2, 6, 23, .48) 0%, rgba(2, 10, 27, .54) 50%, rgba(2, 6, 23, .48) 100%),
        var(--page-banner-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-color: rgba(52, 211, 153, .28)
}

.page-banner--tech::before {
    background:
        radial-gradient(42% 88% at 50% 35%, rgba(2, 6, 23, .18), transparent 74%),
        linear-gradient(180deg, rgba(2, 6, 23, .06), transparent 58%, rgba(2, 6, 23, .16));
}

.page-banner--about {
    --page-banner-image: url('../img/banner-about-tech.jpg')
}

.page-banner--services {
    --page-banner-image: url('../img/banner-services-tech.jpg')
}

.page-banner--products {
    --page-banner-image: url('../img/banner-products-tech.jpg')
}

.page-banner--contact {
    --page-banner-image: url('../img/banner-contact-tech.jpg')
}

.page-banner--tech h1 {
    color: #f8fafc;
    text-shadow: 0 3px 24px rgba(0, 0, 0, .45)
}

.page-banner--tech p,
.page-banner--tech .crumbs {
    color: #d8e3ee
}

:root[data-theme="light"] .page-banner--tech {
    background-image:
        linear-gradient(rgba(224, 242, 254, .32), rgba(209, 250, 229, .28)),
        var(--page-banner-image);
    border-bottom-color: rgba(16, 185, 129, .24)
}

:root[data-theme="light"] .page-banner--about {
    background-image:
        linear-gradient(120deg, rgba(219, 234, 254, .52), rgba(209, 250, 229, .43)),
        var(--page-banner-image)
}

:root[data-theme="light"] .page-banner--services {
    background-image:
        linear-gradient(120deg, rgba(224, 242, 254, .30), rgba(209, 250, 229, .24)),
        var(--page-banner-image)
}

:root[data-theme="light"] .page-banner--products {
    background-image:
        linear-gradient(120deg, rgba(224, 242, 254, .35), rgba(209, 250, 229, .28)),
        var(--page-banner-image)
}

:root[data-theme="light"] .page-banner--contact {
    background-image:
        linear-gradient(120deg, rgba(224, 242, 254, .33), rgba(209, 250, 229, .26)),
        var(--page-banner-image)
}

:root[data-theme="light"] .page-banner--tech::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 62%, rgba(240, 253, 248, .08))
}

:root[data-theme="light"] .page-banner--tech h1 {
    color: #0f172a;
    text-shadow: none
}

.page-banner--tech h1 .grad,
:root[data-theme="light"] .page-banner--tech h1 .grad {
    text-shadow: none;
    filter: none
}

:root[data-theme="light"] .page-banner--tech h1 .grad {
    background: none;
    color: #065f46;
    -webkit-text-fill-color: #065f46
}

:root[data-theme="light"] .page-banner--tech .crumbs a:hover {
    color: #047857
}

:root[data-theme="light"] .page-banner--tech p,
:root[data-theme="light"] .page-banner--tech .crumbs {
    color: #172033
}

/* ============================================================
   FOOTER — Premium SaaS Redesign
   ============================================================ */
.footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #010d1a 0%, #010410 60%);
    padding: 58px 0 0;
    border-top: none;
}

/* Glowing top border */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, .65) 25%, rgba(52, 211, 153, .9) 50%, rgba(16, 185, 129, .65) 75%, transparent 100%);
    box-shadow: 0 0 22px rgba(16, 185, 129, .45), 0 0 55px rgba(52, 211, 153, .18);
}

:root[data-theme="light"] .footer {
    background: linear-gradient(180deg, #071220, #0a1422);
}

.footer .logo-text {
    color: #e8eef8
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
    gap: 42px;
    padding-bottom: 42px
}

.footer-brand p {
    color: #dce5f1;
    font-size: 14px;
    margin-top: 18px;
    line-height: 1.75;
    max-width: 300px
}

.footer-col h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 20px;
    color: var(--glow-c);
    font-weight: 700;
}

.footer-col ul li {
    font-size: 14px;
    line-height: 2.1
}

.footer-col ul li a {
    color: #dce5f1;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: color .28s ease, padding-left .28s ease;
}

.footer-col ul li a:hover {
    color: var(--glow-c);
    padding-left: 6px
}

/* Socials — clearly visible default, premium glow on hover */
.socials {
    display: flex;
    gap: 10px;
    margin-top: 22px
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    display: grid;
    place-items: center;
    color: #f4f7fb;
    opacity: .96;
    transition: all .3s cubic-bezier(.2, .8, .2, 1);
}

.socials a svg {
    width: 17px;
    height: 17px;
    transition: transform .28s ease
}

.socials a:hover {
    opacity: 1;
    background: rgba(16, 185, 129, .16);
    border-color: rgba(16, 185, 129, .55);
    color: var(--glow-c);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 0 22px rgba(16, 185, 129, .45), 0 8px 24px rgba(0, 0, 0, .35);
}

.socials a:hover svg {
    transform: scale(1.12)
}

:root[data-theme="light"] .socials a {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .16);
    color: #e8eef8;
    opacity: .92
}

:root[data-theme="light"] .socials a:hover {
    background: rgba(16, 185, 129, .12);
    border-color: rgba(16, 185, 129, .45);
    color: var(--primary)
}

/* Contact list */
.contact-list li {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    font-size: 14px
}

.contact-list li span {
    color: var(--glow-c);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-list li,
.contact-list li a {
    color: rgba(148, 163, 184, .72)
}

.footer .contact-list li,
.footer .contact-list li a {
    color: #dce5f1
}

.contact-list li a:hover {
    color: var(--glow-c)
}

:root[data-theme="light"] .contact-list li,
:root[data-theme="light"] .contact-list li a {
    color: #374151
}

:root[data-theme="light"] .footer .contact-list li,
:root[data-theme="light"] .footer .contact-list li a,
:root[data-theme="light"] .footer .footer-brand p,
:root[data-theme="light"] .footer .footer-col ul li a {
    color: #dce5f1
}

:root[data-theme="light"] .contact-list li a:hover {
    color: var(--primary)
}

/* Primary contact page details: keep phone, email and both addresses readable. */
.contact-details-list li,
.contact-details-list li a {
    color: #d9e4f1;
    font-size: 15px;
    line-height: 1.7;
    opacity: 1
}

.contact-details-list li a {
    color: #f8fafc;
    font-weight: 550
}

.contact-details-list li span {
    color: #34d399;
    font-size: 11px;
    margin-bottom: 6px
}

:root[data-theme="light"] .contact-details-list li,
:root[data-theme="light"] .contact-details-list li a {
    color: #26364a
}

:root[data-theme="light"] .contact-details-list li a {
    color: #0f172a
}

/* Copyright bar */
.copyright {
    border-top: 1px solid rgba(16, 185, 129, .12);
    padding: 20px 0;
    background: rgba(0, 0, 0, .32);
    font-size: 13px;
}

.footer-copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright-inner p {
    color: #c2cedd;
    margin: 0
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 12px;
    color: rgba(100, 116, 139, .7)
}

.footer-legal-links a {
    color: #c2cedd;
    transition: var(--t)
}

.footer-legal-links a:hover {
    color: var(--glow-c)
}

.footer-legal-links span {
    opacity: .5
}

/* ============================================================
   FORMS
   ============================================================ */
.form {
    display: grid;
    gap: 14px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 14px 16px;
    background: var(--glass);
    border: 1px solid var(--brd);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    outline: 0;
    transition: var(--t);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: var(--primary);
    background: var(--glass-strong);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .22)
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--muted)
}

.form input.is-invalid,
.form textarea.is-invalid,
.form select.is-invalid {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, .15)
}

.form textarea {
    min-height: 130px;
    resize: vertical
}

.form-field {
    display: grid;
    gap: 4px
}

.field-error {
    font-size: 12px;
    color: #ff7b7b;
    min-height: 16px;
    padding-left: 2px
}

.form-msg {
    font-size: 13px;
    min-height: 18px
}

.form-msg.error {
    color: #ff7b7b
}

.form-msg.ok {
    color: #4ade80
}

/* Light mode — form inputs get depth, borders, focus ring */
:root[data-theme="light"] .form input,
:root[data-theme="light"] .form textarea,
:root[data-theme="light"] .form select {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
    color: #0F172A;
}

:root[data-theme="light"] .form input::placeholder,
:root[data-theme="light"] .form textarea::placeholder {
    color: #94A3B8
}

:root[data-theme="light"] .form input:hover,
:root[data-theme="light"] .form textarea:hover {
    border-color: rgba(16, 185, 129, .45);
    box-shadow: 0 2px 10px rgba(16, 185, 129, .1)
}

:root[data-theme="light"] .form input:focus,
:root[data-theme="light"] .form textarea:focus,
:root[data-theme="light"] .form select:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .2), 0 2px 6px rgba(0, 0, 0, .05);
    background: #fff;
}

/* ============================================================
   FLOAT BUTTONS
   ============================================================ */
.float-btn {
    position: fixed;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 900;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .3);
    transition: var(--t);
    color: #fff
}

.float-btn svg {
    width: 22px;
    height: 22px
}

.whatsapp {
    bottom: 24px;
    right: 24px;
    background: #25D366;
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
    animation: waPulse 2.8s ease-in-out infinite
}

@keyframes waPulse {
    0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55) }
    60%      { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0) }
}

.whatsapp:hover {
    transform: scale(1.12);
    background: #20c05c;
    animation: none;
    box-shadow: 0 12px 32px rgba(37,211,102,.6)
}

/* Tooltip */
.wa-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: #25D366;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
    transform: translateY(-50%) translateX(6px)
}

.wa-tooltip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #25D366
}

.whatsapp:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0)
}

.back-top {
    bottom: 88px;
    right: 24px;
    background: var(--glass);
    border: 1px solid var(--brd);
    backdrop-filter: blur(10px);
    color: var(--text);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px)
}

.back-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.back-top:hover {
    background: var(--grad);
    color: #fff;
    border-color: transparent
}

/* ============================================================
   CLIENTS + TECH — LOGO CENTER-FOCUS CAROUSEL
   ============================================================ */
#clients {
    padding-bottom: 60px
}

.logo-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 6px 0 22px;
    overflow: hidden;
    user-select: none
}

.lc-stage {
    position: relative;
    height: 110px;
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: center
}

.lc-item,
.tech-lc-item {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
    padding: 16px 22px;
    border-radius: 18px;
    background: var(--glass);
    border: 1px solid var(--brd);
    cursor: default;
    transition: transform .4s cubic-bezier(.34, 1.18, .64, 1), opacity .4s ease, box-shadow .4s ease;
    transform-origin: center;
    will-change: transform, opacity
}

/* center */
.lc-item[data-lstate="center"],
.tech-lc-item[data-lstate="center"] {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    box-shadow: 0 10px 30px rgba(16, 185, 129, .25);
    border-color: rgba(16, 185, 129, .55);
    z-index: 3
}

/* immediately adjacent */
.lc-item[data-lstate="near-left"],
.tech-lc-item[data-lstate="near-left"] {
    transform: translate(calc(-50% - 240px), -50%) scale(0.85);
    opacity: .72;
    box-shadow: none;
    z-index: 2
}

.lc-item[data-lstate="near-right"],
.tech-lc-item[data-lstate="near-right"] {
    transform: translate(calc(-50% + 240px), -50%) scale(0.85);
    opacity: .72;
    box-shadow: none;
    z-index: 2
}

/* further items */
.lc-item[data-lstate="far-left"],
.tech-lc-item[data-lstate="far-left"] {
    transform: translate(calc(-50% - 420px), -50%) scale(0.72);
    opacity: .38;
    box-shadow: none;
    z-index: 1
}

.lc-item[data-lstate="far-right"],
.tech-lc-item[data-lstate="far-right"] {
    transform: translate(calc(-50% + 420px), -50%) scale(0.72);
    opacity: .38;
    box-shadow: none;
    z-index: 1
}

.lc-item[data-lstate="hidden"],
.tech-lc-item[data-lstate="hidden"] {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    pointer-events: none;
    z-index: 0
}

.lc-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--brd);
    color: var(--text-strong);
    font-size: 18px;
    cursor: pointer;
    transition: var(--t);
    display: grid;
    place-items: center;
    z-index: 10;
    position: relative
}

.lc-arrow:hover {
    background: var(--glass-strong);
    border-color: rgba(16, 185, 129, .55);
    color: var(--glow-c);
    box-shadow: 0 0 18px rgba(16, 185, 129, .35)
}

/* tech items get a pill style — no photo, just text */
.tech-lc-item {
    min-width: 160px;
    gap: 10px;
    padding: 14px 22px;
    justify-content: center
}

.tech-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.tech-icon svg {
    width: 26px;
    height: 26px;
    display: block
}

.tech-label {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-strong);
    white-space: nowrap
}

/* legacy client-badge fields reused inside .lc-item */
.client-init {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(16, 185, 129, .38)
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.client-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-strong);
    white-space: nowrap
}

.client-sector {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px
}

.cstat {
    padding: 28px 20px;
    text-align: center;
    border-radius: var(--radius);
    transition: var(--t)
}

.cstat:hover {
    transform: translateY(-4px);
    border-color: rgba(52, 211, 153, .4)
}

.cstat b {
    display: block;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1
}

.cstat span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 6px;
    display: block
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    display: grid;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto 40px
}

.faq-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--t)
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, .3)
}

.faq-q {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-strong);
    cursor: pointer;
    text-align: left;
    background: none;
    transition: var(--t)
}

.faq-q:hover {
    color: var(--glow-c)
}

.faq-q[aria-expanded="true"] {
    color: var(--glow-c)
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--muted);
    transition: transform var(--t)
}

.faq-icon svg {
    width: 22px;
    height: 22px
}

.faq-q[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--glow-c)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.2, .8, .2, 1)
}

.faq-a.open {
    max-height: 400px
}

.faq-a-inner {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid var(--brd)
}

.faq-cta {
    text-align: center;
    padding-top: 10px
}

.faq-cta p {
    color: var(--muted);
    margin-bottom: 18px
}

/* ============================================================
   MAP
   ============================================================ */
.map-section {
    padding-bottom: 0
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 30px
}

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 420px;
    border: 1px solid var(--brd);
    box-shadow: 0 0 40px rgba(16, 185, 129, .12)
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    filter: grayscale(0.3) brightness(0.85);
    transition: var(--t)
}

:root[data-theme="light"] .map-embed iframe {
    filter: none
}

.map-embed:hover iframe {
    filter: none
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-content: start
}

.map-office {
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-radius: var(--radius-sm);
    transition: var(--t)
}

.map-office:hover {
    border-color: rgba(16, 185, 129, .35);
    transform: translateY(-3px)
}

.map-office-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 6px 16px rgba(16, 185, 129, .35)
}

.map-office-icon svg {
    width: 18px;
    height: 18px
}

.map-office h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.map-office p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55
}

.map-office p a {
    color: var(--muted)
}

.map-office p a:hover {
    color: var(--glow-c)
}

:root[data-theme="light"] .map-office {
    background: #fff;
    border-color: rgba(15, 23, 42, .1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06)
}

:root[data-theme="light"] .map-office:hover {
    border-color: rgba(16, 185, 129, .4);
    box-shadow: 0 6px 20px rgba(16, 185, 129, .12)
}

:root[data-theme="light"] .map-office h4 {
    color: #111827
}

:root[data-theme="light"] .map-office p,
:root[data-theme="light"] .map-office p a {
    color: #374151
}

:root[data-theme="light"] .map-office p a:hover {
    color: var(--primary)
}

/* -- PRODUCT DETAIL MODAL -- */
#prodModal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s ease
}

#prodModal.open {
    opacity: 1;
    pointer-events: all
}

.prod-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer
}

:root[data-theme="light"] .prod-modal-bg {
    background: rgba(15, 23, 42, .65)
}

.prod-modal-box {
    position: relative;
    background: var(--bg-2);
    border: 1px solid rgba(16, 185, 129, .28);
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 0 80px rgba(16, 185, 129, .18), 0 40px 120px rgba(0, 0, 0, .5);
    transform: translateY(28px) scale(.97);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1)
}

#prodModal.open .prod-modal-box {
    transform: translateY(0) scale(1)
}

.prod-modal-box::-webkit-scrollbar {
    width: 4px
}

.prod-modal-box::-webkit-scrollbar-thumb {
    background: var(--grad);
    border-radius: 2px
}

.prod-modal-close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 16px -52px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--brd);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--t);
    z-index: 2
}

.prod-modal-close:hover {
    background: rgba(239, 68, 68, .2);
    border-color: rgba(239, 68, 68, .4);
    color: #f87171
}

.prod-modal-close svg {
    width: 15px;
    height: 15px;
    pointer-events: none
}

.pm-hero {
    padding: 50px 46px 34px;
    border-bottom: 1px solid var(--brd);
    background: linear-gradient(135deg, rgba(16, 185, 129, .09), transparent 55%)
}

.pm-tag {
    display: inline-block;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, .18);
    color: var(--glow-c);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    margin-bottom: 14px
}

.pm-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 10px
}

.pm-title span {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.pm-tagline {
    color: var(--muted);
    font-size: 17px;
    font-style: italic;
    line-height: 1.56;
    max-width: 560px
}

.pm-body {
    padding: 38px 46px
}

.pm-section {
    margin-bottom: 32px
}

.pm-section:last-child {
    margin-bottom: 0
}

.pm-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--glow-c);
    margin-bottom: 10px;
    display: block
}

.pm-section h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 9px
}

.pm-section>p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72
}

.pm-features {
    display: grid;
    gap: 8px
}

.pm-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 10px;
    background: var(--glass);
    border: 1px solid var(--brd);
    font-size: 14px;
    color: var(--text)
}

.pm-feat::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--grad);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(16, 185, 129, .55)
}

.pm-impact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.pm-imp {
    padding: 20px 16px;
    border-radius: 14px;
    background: rgba(16, 185, 129, .07);
    border: 1px solid rgba(16, 185, 129, .18);
    text-align: center
}

.pm-imp b {
    display: block;
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px
}

.pm-imp span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    display: block
}

.pm-trust {
    padding: 18px 22px;
    border-radius: 12px;
    background: rgba(16, 185, 129, .05);
    border: 1px solid rgba(16, 185, 129, .15);
    text-align: center;
    color: var(--muted);
    font-style: italic;
    font-size: 14px
}

.pm-cta {
    padding: 30px 46px 38px;
    border-top: 1px solid var(--brd);
    background: linear-gradient(135deg, rgba(16, 185, 129, .07), transparent 55%);
    text-align: center
}

.pm-cta h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-strong)
}

.pm-cta p {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 15px
}

/* ============================================================
   CAREER PAGE
   ============================================================ */
/* Banner extras */
.career-banner {
    background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(16, 185, 129, .22), transparent 65%)
}

.career-banner-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(16, 185, 129, .18), transparent 70%)
}

.career-hero-stats {
    display: flex;
    gap: 36px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.chs-item {
    text-align: center
}

.chs-item b {
    display: block;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1
}

.chs-item span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-top: 5px;
    display: block
}

/* Perks grid */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 16px
}

.perk-card {
    padding: 30px 24px;
    text-align: center;
    transition: var(--t)
}

.perk-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 211, 153, .42);
    box-shadow: 0 20px 50px rgba(16, 185, 129, .18)
}

.perk-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, .34)
}

.perk-icon svg {
    width: 25px;
    height: 25px
}

.perk-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 8px
}

.perk-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65
}

/* Job cards */
.job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
}

.job-card {
    padding: 28px;
    transition: var(--t);
    cursor: default;
    border-left: 3px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(16, 185, 129, .16), -4px 0 18px rgba(16, 185, 129, .14);
    border-color: rgba(52, 211, 153, .55) var(--brd) var(--brd) var(--primary);
}

.job-dept {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--glow-c);
    margin-bottom: 10px;
}

.job-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 14px;
    line-height: 1.25
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--brd);
    color: var(--muted);
}

.job-meta-item svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0
}

.job-card>p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1
}

.job-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto
}

.btn-view-job {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--glass);
    border: 1px solid var(--brd);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--t);
}

.btn-view-job:hover {
    border-color: rgba(16, 185, 129, .45);
    color: var(--glow-c);
    background: rgba(16, 185, 129, .06)
}

.btn-apply-job {
    padding: 10px 22px;
    border-radius: 10px;
    background: var(--grad);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--t);
    box-shadow: 0 3px 14px rgba(16, 185, 129, .28);
}

.btn-apply-job:hover {
    box-shadow: 0 0 22px rgba(16, 185, 129, .48);
    transform: translateY(-1px)
}

/* Application form */
.apply-form-wrap {
    max-width: 860px;
    margin: 0 auto
}

.form-hint {
    font-size: 12px;
    color: var(--muted);
    margin-top: -8px;
    padding-left: 2px
}

.form input[type="file"] {
    padding: 10px 16px;
    cursor: pointer
}

.form input[type="file"]::-webkit-file-upload-button {
    background: var(--grad);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
}

.form input[type="file"]::file-selector-button {
    background: var(--grad);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
}

/* Job detail modal */
#jobModal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s ease;
}

#jobModal.open {
    opacity: 1;
    pointer-events: all
}

.job-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
}

:root[data-theme="light"] .job-modal-bg {
    background: rgba(15, 23, 42, .65)
}

.job-modal-box {
    position: relative;
    background: var(--bg-2);
    border: 1px solid rgba(16, 185, 129, .28);
    border-radius: 24px;
    max-width: 760px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 0 80px rgba(16, 185, 129, .18), 0 40px 120px rgba(0, 0, 0, .5);
    transform: translateY(28px) scale(.97);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

#jobModal.open .job-modal-box {
    transform: translateY(0) scale(1)
}

.job-modal-box::-webkit-scrollbar {
    width: 4px
}

.job-modal-box::-webkit-scrollbar-thumb {
    background: var(--grad);
    border-radius: 2px
}

.job-modal-close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 16px -52px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--brd);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--t);
    z-index: 2;
}

.job-modal-close:hover {
    background: rgba(239, 68, 68, .2);
    border-color: rgba(239, 68, 68, .4);
    color: #f87171
}

.job-modal-close svg {
    width: 15px;
    height: 15px;
    pointer-events: none
}

.jm-hero {
    padding: 48px 44px 30px;
    border-bottom: 1px solid var(--brd);
    background: linear-gradient(135deg, rgba(16, 185, 129, .09), transparent 55%);
}

.jm-dept {
    display: inline-block;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, .18);
    color: var(--glow-c);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    margin-bottom: 14px;
}

.jm-title {
    font-size: clamp(20px, 3.2vw, 30px);
    font-weight: 800;
    color: var(--text-strong);
    margin-bottom: 14px
}

.jm-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.jm-body {
    padding: 34px 44px
}

.jm-section {
    margin-bottom: 26px
}

.jm-section:last-child {
    margin-bottom: 0
}

.jm-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--glow-c);
    margin-bottom: 10px;
    display: block;
}

.jm-section>p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72
}

.jm-list {
    display: grid;
    gap: 7px;
    padding-left: 0;
    list-style: none
}

.jm-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text);
    padding: 9px 14px;
    border-radius: 9px;
    background: var(--glass);
    border: 1px solid var(--brd);
}

.jm-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad);
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 6px rgba(16, 185, 129, .5);
}

.jm-benefits {
    grid-template-columns: repeat(2, 1fr)
}

.jm-cta {
    padding: 26px 44px 34px;
    border-top: 1px solid var(--brd);
    background: linear-gradient(135deg, rgba(16, 185, 129, .07), transparent 55%);
    text-align: center;
}

.jm-cta h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-strong)
}

.jm-cta p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 15px
}

/* ============================================================
   SUPPORT SECTION
   ============================================================ */
#support {}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 44px
}

.support-card {
    padding: 30px 24px;
    border-radius: var(--radius);
    transition: var(--t);
    display: flex;
    flex-direction: column;
    gap: 12px
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(16, 185, 129, .12)
}

.support-card--highlight {
    border-color: rgba(16, 185, 129, .35);
    background: linear-gradient(135deg, rgba(16, 185, 129, .07), rgba(52, 211, 153, .04))
}

.support-card--highlight:hover {
    border-color: rgba(52, 211, 153, .55);
    box-shadow: 0 20px 56px rgba(16, 185, 129, .22)
}

.support-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--glass);
    border: 1px solid var(--brd);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: var(--t)
}

.support-icon svg {
    width: 22px;
    height: 22px;
    color: var(--muted)
}

.support-icon--glow {
    background: linear-gradient(135deg, rgba(16, 185, 129, .2), rgba(52, 211, 153, .1));
    border-color: rgba(16, 185, 129, .35);
    box-shadow: 0 0 20px rgba(16, 185, 129, .2)
}

.support-icon--glow svg {
    color: var(--glow-c)
}

.support-card:hover .support-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, .18), rgba(52, 211, 153, .08));
    border-color: rgba(16, 185, 129, .45)
}

.support-card:hover .support-icon svg {
    color: var(--glow-c)
}

.support-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.3
}

.support-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1
}

.support-contact-link {
    font-weight: 700;
    font-size: 15px;
    color: var(--glow-c);
    text-decoration: none;
    letter-spacing: .01em;
    transition: var(--t)
}

.support-contact-link:hover {
    color: var(--accent);
    text-shadow: 0 0 14px rgba(52, 211, 153, .5)
}

.support-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--glass);
    border: 1px solid var(--brd);
    padding: 5px 12px;
    border-radius: 999px;
    width: fit-content
}

.support-badge--green {
    color: var(--glow-c);
    border-color: rgba(16, 185, 129, .35);
    background: rgba(16, 185, 129, .08)
}

.support-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.support-cta p {
    color: var(--muted);
    font-size: 16px
}

/* ============================================================
   BRAND CARE — "We Build Your Business" emotional section
   ============================================================ */
.brand-care-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--bg-2);
    padding: 100px 0
}

.brand-care-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(60% 50% at 50% 0%, rgba(16,185,129,.18), transparent 70%),
        radial-gradient(40% 40% at 20% 80%, rgba(52,211,153,.10), transparent 65%),
        radial-gradient(40% 40% at 80% 80%, rgba(16,185,129,.08), transparent 65%);
    z-index: 0
}

:root[data-theme="light"] .brand-care-glow {
    background:
        radial-gradient(60% 50% at 50% 0%, rgba(16,185,129,.12), transparent 70%),
        radial-gradient(40% 40% at 20% 80%, rgba(52,211,153,.07), transparent 65%)
}

.brand-care-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0
}

.brand-care-title {
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    color: var(--text-strong);
    margin-bottom: 28px
}

.brand-care-lead {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--muted);
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 56px
}

:root[data-theme="light"] .brand-care-lead { color: #374151 }

/* Three value pillars */
.brand-care-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 52px
}

.brand-care-pillar {
    background: var(--glass);
    border: 1px solid var(--brd);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--t);
    backdrop-filter: blur(12px)
}

.brand-care-pillar:hover {
    border-color: rgba(16,185,129,.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(16,185,129,.2), 0 0 20px rgba(52,211,153,.15)
}

:root[data-theme="light"] .brand-care-pillar {
    background: #fff;
    border-color: rgba(15,23,42,.1);
    box-shadow: 0 4px 16px rgba(0,0,0,.06)
}

:root[data-theme="light"] .brand-care-pillar:hover {
    border-color: rgba(16,185,129,.45);
    box-shadow: 0 16px 40px rgba(16,185,129,.14)
}

.bcp-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 8px 22px rgba(16,185,129,.38)
}

.bcp-icon svg { width: 22px; height: 22px }

.brand-care-pillar h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 10px
}

.brand-care-pillar p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6
}

:root[data-theme="light"] .brand-care-pillar p { color: #374151 }

/* Quote */
.brand-care-quote {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    font-style: italic;
    color: var(--glow-c);
    position: relative;
    padding: 0 32px;
    margin-bottom: 28px;
    line-height: 1.5
}

.brand-care-quote::before,
.brand-care-quote::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    transform: translateY(-50%)
}

.brand-care-quote::before { left: -16px }
.brand-care-quote::after  { right: -16px }

/* Body copy */
.brand-care-body {
    max-width: 560px;
    margin-bottom: 40px
}

.brand-care-body p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75
}

:root[data-theme="light"] .brand-care-body p { color: #374151 }

.brand-care-body strong {
    color: var(--glow-c);
    font-weight: 700
}

.brand-care-cta {
    font-size: 16px;
    padding: 16px 36px
}

/* ============================================================
   LEGAL PAGES (Privacy Policy / Terms & Conditions)
   ============================================================ */
.legal-page {
    padding-top: 60px;
    padding-bottom: 80px
}

.legal-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 56px;
    border-radius: var(--radius)
}

.legal-updated {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.legal-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 44px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--brd)
}

.legal-section {
    margin-bottom: 44px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--brd)
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: -.02em
}

.legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--glass);
    border: 1px solid rgba(16, 185, 129, .35);
    font-size: 12px;
    font-weight: 700;
    color: var(--glow-c);
    letter-spacing: .04em;
    flex-shrink: 0
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 14px
}

.legal-section p:last-child {
    margin-bottom: 0
}

.legal-section ul {
    padding-left: 22px;
    margin: 10px 0 14px
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 8px;
    position: relative
}

.legal-section ul li::marker {
    color: var(--primary)
}

.legal-section strong {
    color: var(--text-strong)
}

.legal-section a {
    color: var(--glow-c);
    text-decoration: none
}

.legal-section a:hover {
    text-decoration: underline
}

.legal-contact-block {
    background: rgba(16, 185, 129, .05);
    border: 1px solid rgba(16, 185, 129, .2);
    border-radius: var(--radius-sm);
    padding: 28px 32px;
    margin-top: 20px
}

.legal-contact-block h2 {
    margin-bottom: 12px
}

.legal-contact-details {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    color: var(--text)
}

.legal-contact-details a {
    color: var(--glow-c)
}

.legal-contact-details a:hover {
    text-decoration: underline
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s cubic-bezier(.2, .8, .2, 1)
}

.reveal.show {
    opacity: 1;
    transform: translateY(0)
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: .7s cubic-bezier(.2, .8, .2, 1)
}

.reveal-stagger.show>* {
    opacity: 1;
    transform: translateY(0)
}

.reveal-stagger.show>*:nth-child(1) {
    transition-delay: .05s
}

.reveal-stagger.show>*:nth-child(2) {
    transition-delay: .15s
}

.reveal-stagger.show>*:nth-child(3) {
    transition-delay: .25s
}

.reveal-stagger.show>*:nth-child(4) {
    transition-delay: .35s
}

.reveal-stagger.show>*:nth-child(5) {
    transition-delay: .45s
}

.reveal-stagger.show>*:nth-child(6) {
    transition-delay: .55s
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .services-grid--4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .products-bento {
        grid-template-columns: repeat(2, 1fr)
    }

    .products-bento .product-card.wide {
        grid-column: span 2
    }

    .clients-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .map-grid {
        grid-template-columns: 1fr
    }

    .map-info {
        grid-template-columns: repeat(2, 1fr)
    }

    .perks-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .job-grid {
        grid-template-columns: 1fr
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:900px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .hero-ctas,
    .hero-meta {
        justify-content: center
    }

    .hero-globe-wrap {
        width: 420px;
        height: 420px;
        margin: 0 auto
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .brand-care-pillars {
        grid-template-columns: 1fr 1fr;
    
        gap: 30px;
        text-align: center
    }

    .timeline {
        text-align: left;
        display: inline-block
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }
}

@media (max-width:720px) {
    section {
        padding: 36px 0
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 340px;
        background: rgba(2, 6, 23, .97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 90px 30px 30px;
        gap: 24px;
        transition: .4s ease;
        border-left: 1px solid var(--brd)
    }

    :root[data-theme="light"] .nav-links {
        background: rgba(255, 255, 255, .97)
    }

    .nav-links.open {
        right: 0
    }

    .nav-links a {
        font-size: 18px
    }

    .hamburger {
        display: flex
    }

    .nav-cta {
        display: none
    }

    .stats-grid,
    .services-grid,
    .services-grid--4,
    .why-grid,
    .footer-grid,
    .products-bento,
    .clients-stats,
    .support-grid,
    .brand-care-pillars {
        grid-template-columns: 1fr
    }

    .footer-copyright-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px
    }

    .perks-grid {
        grid-template-columns: 1fr
    }

    .job-grid {
        grid-template-columns: 1fr
    }

    .jm-hero {
        padding: 32px 20px 24px
    }

    .jm-body {
        padding: 24px 20px
    }

    .jm-cta {
        padding: 22px 20px 28px
    }

    .jm-benefits {
        grid-template-columns: 1fr
    }

    .career-hero-stats {
        gap: 22px
    }

    .apply-form-wrap .form {
        padding: 28px 22px !important
    }

    .map-info {
        grid-template-columns: 1fr
    }

    .products-bento .product-card.wide {
        grid-column: span 1
    }

    .products-bento .product-card.wide .product-card-link {
        display: flex
    }

    .products-bento .product-card.wide .product-card-preview {
        min-height: 0;
        aspect-ratio: 16 / 9;
        border-right: 0;
        border-bottom: 1px solid var(--brd)
    }

    .products-bento .product-card.wide .product-card-preview>img {
        object-fit: cover;
        object-position: top center
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .hero-globe-wrap {
        width: 300px;
        height: 300px
    }

    .hero-orb {
        width: 220px;
        height: 220px
    }

    .hero-card {
        padding: 12px 14px;
        font-size: 11px
    }

    .hero-card .ico {
        width: 32px;
        height: 32px
    }

    /* Carousel mobile: hide side cards, show only active */
    .prod-stage {
        min-height: 410px
    }

    .prod-carousel-wrap {
        padding-bottom: 8px
    }

    .prod-nav {
        gap: 12px;
        margin-top: 8px
    }

    #products {
        padding-bottom: 18px
    }

    #products + #tech,
    #tech {
        padding-top: 28px;
        padding-bottom: 34px
    }

    .prod-card[data-state="prev"],
    .prod-card[data-state="next"],
    .prod-card[data-state="far-prev"],
    .prod-card[data-state="far-next"] {
        opacity: 0;
        pointer-events: none;
        filter: none
    }

    /* Logo carousel mobile: tighten offsets */
    .lc-stage,
    .tech-lc-item {
        height: 100px
    }

    .lc-item[data-lstate="near-left"],
    .tech-lc-item[data-lstate="near-left"] {
        transform: translate(calc(-50% - 160px), -50%) scale(0.82);
        opacity: .4
    }

    .lc-item[data-lstate="near-right"],
    .tech-lc-item[data-lstate="near-right"] {
        transform: translate(calc(-50% + 160px), -50%) scale(0.82);
        opacity: .4
    }

    .lc-item[data-lstate="far-left"],
    .tech-lc-item[data-lstate="far-left"] {
        transform: translate(calc(-50% - 270px), -50%) scale(0.65);
        opacity: .12
    }

    .lc-item[data-lstate="far-right"],
    .tech-lc-item[data-lstate="far-right"] {
        transform: translate(calc(-50% + 270px), -50%) scale(0.65);
        opacity: .12
    }

    /* Modal mobile padding */
    .pm-hero {
        padding: 36px 22px 26px
    }

    .pm-body {
        padding: 26px 22px
    }

    .pm-cta {
        padding: 22px 22px 28px
    }

    .pm-impact {
        grid-template-columns: 1fr 1fr
    }

    /* Legal pages mobile */
    .legal-wrap {
        padding: 28px 22px
    }

    .legal-contact-block {
        padding: 22px 18px
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

/* Footer is always rendered on a dark surface: lock body copy to high contrast. */
.footer .footer-brand p,
.footer .footer-col ul li,
.footer .footer-col ul li a,
.footer .contact-list li,
.footer .contact-list li a {
    color: #edf3fb !important
}

.footer .footer-copyright-inner p,
.footer .footer-legal-links,
.footer .footer-legal-links a {
    color: #d5deea !important
}

.footer .footer-col h5,
.footer .contact-list li span {
    color: #34d399 !important
}

.footer .footer-col ul li a:hover,
.footer .contact-list li a:hover,
.footer .footer-legal-links a:hover {
    color: #34d399 !important
}

/* Contact details must stay fully legible against the permanent dark footer. */
.footer .footer-contact h5 {
    color: #f8fafc !important;
    -webkit-text-fill-color: #f8fafc !important;
    opacity: 1 !important
}

.footer .footer-contact .contact-list li,
.footer .footer-contact .contact-list li a {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
    text-shadow: 0 0 1px rgba(255, 255, 255, .22)
}

.footer .footer-contact .contact-list li span {
    color: #34d399 !important;
    -webkit-text-fill-color: #34d399 !important;
    opacity: 1 !important
}

.footer .footer-contact .contact-list li a:hover {
    color: #34d399 !important;
    -webkit-text-fill-color: #34d399 !important
}

/* Readable supporting copy and neighbouring carousel items. */
#clients .section-sub,
#tech .section-sub {
    color: #cbd5e1
}

#clients .client-name,
#tech .tech-label {
    color: #f8fafc
}

#clients .client-sector {
    color: #aebed1
}

:root[data-theme="light"] #clients .section-sub,
:root[data-theme="light"] #tech .section-sub,
:root[data-theme="light"] #clients .client-sector {
    color: #475569
}

:root[data-theme="light"] #clients .client-name,
:root[data-theme="light"] #tech .tech-label {
    color: #0f172a
}

/* Contact location cards use the same stronger detail contrast. */
.map-office p,
.map-office p a {
    color: #d4dfec
}

:root[data-theme="light"] .map-office p,
:root[data-theme="light"] .map-office p a {
    color: #334155
}

/* Full company logo in the footer, legible in either selected theme. */
.footer-logo {
    gap: 14px;
    font-size: 24px
}

.footer-logo-mark {
    width: 68px;
    height: 68px;
    padding: 5px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .4);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .28), 0 0 20px rgba(52, 211, 153, .12)
}

.footer-logo-mark .logo-img {
    width: 58px;
    height: 58px;
    filter: none
}

.footer .footer-logo .logo-text {
    color: #f8fafc;
    font-size: 24px;
    font-weight: 750
}

.footer .footer-logo .logo-text b {
    color: #34d399;
    background: none;
    -webkit-text-fill-color: #34d399
}

/* ============================================================
   CONSISTENT BRIGHT LIGHT MODE + WHITE NAVBAR
   ============================================================ */
/* The navigation stays clean white in both themes. */
.nav,
.nav.scrolled,
:root[data-theme="light"] .nav,
:root[data-theme="light"] .nav.scrolled {
    background: rgba(255, 255, 255, .97);
    border-bottom-color: rgba(15, 23, 42, .08);
    box-shadow: 0 7px 24px rgba(15, 23, 42, .08)
}

.nav .logo-text,
.nav .nav-links a,
.nav .theme-toggle,
.nav .hamburger {
    color: #0f172a
}

.nav .theme-toggle {
    background: #ffffff;
    border-color: rgba(15, 23, 42, .1);
    box-shadow: 0 3px 12px rgba(15, 23, 42, .06)
}

.nav .theme-toggle:hover {
    background: #f0fdf4;
    border-color: rgba(5, 150, 105, .3)
}

.nav .hamburger span {
    background: #0f172a
}

.nav .nav-links a:hover,
.nav .nav-links a.active {
    color: #047857
}

/* Home uses the same airy white-mint brightness as Careers. */
:root[data-theme="light"] .hero {
    background-image:
        linear-gradient(90deg, rgba(248, 250, 252, .88) 0%, rgba(248, 250, 252, .82) 48%, rgba(236, 253, 245, .64) 100%),
        url('../img/hero-ai-automation.jpg')
}

:root[data-theme="light"] .hero-bg-glow {
    opacity: .5;
    filter: blur(42px)
}

/* About journey: retain the image as a soft watermark, without grey cast. */
:root[data-theme="light"] #story {
    background-image:
        linear-gradient(105deg, rgba(255, 255, 255, .82) 0%, rgba(248, 255, 252, .78) 48%, rgba(220, 252, 231, .68) 100%),
        url('../img/about-journey-timeline.jpg');
    background-color: #f0fdf4
}

/* About, Services, Products and Contact banners share Careers brightness. */
:root[data-theme="light"] .page-banner--tech {
    background-color: #ecfdf5;
    border-bottom-color: rgba(16, 185, 129, .18)
}

:root[data-theme="light"] .page-banner--about {
    background-image:
        linear-gradient(105deg, rgba(255, 255, 255, .72) 0%, rgba(248, 255, 252, .68) 50%, rgba(220, 252, 231, .58) 100%),
        var(--page-banner-image)
}

:root[data-theme="light"] .page-banner--services {
    background-image:
        linear-gradient(120deg, rgba(240, 249, 255, .70), rgba(236, 253, 245, .62)),
        var(--page-banner-image)
}

:root[data-theme="light"] .page-banner--products {
    background-image:
        linear-gradient(120deg, rgba(239, 246, 255, .72), rgba(236, 253, 245, .62)),
        var(--page-banner-image)
}

:root[data-theme="light"] .page-banner--contact {
    background-image:
        linear-gradient(120deg, rgba(240, 249, 255, .72), rgba(236, 253, 245, .64)),
        var(--page-banner-image)
}

:root[data-theme="light"] .page-banner--tech::before {
    background: radial-gradient(55% 95% at 50% 35%, rgba(255, 255, 255, .12), transparent 72%)
}

:root[data-theme="light"] .page-banner--tech h1 .grad {
    color: #059669;
    -webkit-text-fill-color: #059669
}

@media (max-width:720px) {
    .nav-links,
    :root[data-theme="light"] .nav-links {
        background: rgba(255, 255, 255, .985);
        border-left-color: rgba(15, 23, 42, .1)
    }

    .nav .nav-links a {
        color: #0f172a
    }
}

/* Compact header with a slightly stronger brand mark. */
.nav {
    padding: 10px 0
}

.nav.scrolled {
    padding: 7px 0
}

.nav .logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain
}

.nav .logo-text {
    font-size: 19px
}

/* Give important business metrics more visual authority site-wide. */
.stat .num {
    font-size: clamp(40px, 5.6vw, 64px)
}

.cstat b {
    font-size: clamp(32px, 4vw, 46px)
}

.chs-item b {
    font-size: clamp(34px, 4.5vw, 50px)
}

.hero-meta .item b {
    font-size: 29px
}

.pm-imp b {
    font-size: clamp(25px, 3.2vw, 32px)
}

@media (max-width:720px) {
    .nav {
        padding: 8px 0
    }

    .nav.scrolled {
        padding: 6px 0
    }

    .nav .logo-img {
        width: 46px;
        height: 46px
    }

    .nav .logo-text {
        font-size: 17px
    }
}
