/* ============================================
   ELANWAVE — Global Design System
   Background: radial #151534 → #32327F
   Accent: linear #F65D7E → #FBAE35
============================================ */

@font-face {
    font-family: "Mona Sans";
    src: url("../fonts/Mona_Sans/MonaSans-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mona Sans";
    src: url("../fonts/Mona_Sans/MonaSans-Italic-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* --- DESIGN TOKENS --- */
:root {
    --bg-base: #151534;
    --bg-mid: #32327F;
    --accent-pink: #F65D7E;
    --accent-yellow: #FBAE35;

    --gradient-bg: radial-gradient(ellipse at 65% -10%, #32327F 0%, #151534 60%);
    --gradient-accent: linear-gradient(135deg, #F65D7E 0%, #FBAE35 100%);

    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.09);
    --glass-border-hover: rgba(255, 255, 255, 0.18);

    --text-1: #FFFFFF;
    --text-2: rgba(255, 255, 255, 0.72);
    --text-3: rgba(255, 255, 255, 0.32);

    --font-body: "Mona Sans", system-ui, -apple-system, sans-serif;
    --font-display: "Mona Sans", system-ui, sans-serif;

    --nav-height: 94px;
    --container: 1200px;
    --section-py: 3.5rem;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.25s ease;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    background-image: var(--gradient-bg);
    background-attachment: fixed;
    color: var(--text-1);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(1.875rem, 4vw, 3.125rem); font-weight: 800; }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.625rem); font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; }
p { color: var(--text-2); font-size: 1.0625rem; line-height: 1.8; }

/* --- UTILITIES --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 5%; }

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.accent-line {
    width: 44px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.section-lead {
    font-size: 1.125rem;
    color: var(--text-2);
    max-width: 580px;
    margin-bottom: 3rem;
}

.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }
.text-center .accent-line { margin-left: auto; margin-right: auto; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(246, 93, 126, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(246, 93, 126, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--text-1);
    border: 1px solid var(--glass-border-hover);
    height: 45px;
    padding: 0 20px;
    border-radius: 50px;
    font-family: "Mona Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    box-sizing: border-box;
}
.btn-ghost:hover {
    background: var(--glass-bg);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-sm { height: 45px; padding: 0 20px; font-size: 14px; }
.btn-lg { height: 45px; padding: 0 20px; font-size: 14px; }

/* --- CARD / GLASS --- */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.35s var(--ease-out);
}
.card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}

/* --- TAGS / BADGES --- */
.tag {
    display: inline-flex;
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--glass-border);
    color: var(--text-2);
    background: var(--glass-bg);
    white-space: nowrap;
}

/* ============================================
   NAVIGATION
============================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 94px;
    padding: 0 5%;
    background: #141433;
    transition: background 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

#site-header .nav-inner {
    height: 100%;
}

#site-header.scrolled {
    padding: 0.875rem 5%;
    background: rgba(21, 21, 52, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--glass-border);
}

/* backdrop-filter creates a new containing block, which breaks the
   fixed-position full-screen mobile nav nested inside the header —
   drop it while the mobile nav is open so mobile-nav sizes to the viewport. */
#site-header.nav-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.nav-logo svg { height: 34px; width: auto; }

.nav-partner-badge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.nav-partner-divider {
    display: block;
    width: 1px;
    height: 22px;
    background: var(--glass-border);
}
.nav-partner-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-partner-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    margin-left: auto;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 450;
    color: var(--text-2);
    border-radius: 8px;
    transition: color var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text-1); }

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gradient-accent);
}

/* Dropdown */
.nav-item { position: relative; }

.chevron {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
    opacity: 0.5;
    flex-shrink: 0;
}
.nav-item:hover .chevron { transform: rotate(180deg); opacity: 0.9; }

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 190px;
    background: rgba(18, 18, 46, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.5rem;
    margin-top: 0.625rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s var(--ease-out), visibility 0.2s;
    pointer-events: none;
}

/* Bridge the gap so hover doesn't break when moving mouse down */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
    color: var(--text-2);
    border-radius: 10px;
    transition: all var(--transition);
    white-space: nowrap;
}
.dropdown-item:hover { color: var(--text-1); background: var(--glass-bg); }
.dropdown-item.active { color: var(--text-1); }

.nav-cta { margin-left: 1rem; }

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.375rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, #F65D7E 0%, #FBAE35 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 14px rgba(246, 93, 126, 0.35);
    text-decoration: none;
}
.btn-nav-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(246, 93, 126, 0.5);
}

/* ============================================
   MEGAMENU
============================================ */
.has-mega { position: relative; }

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 580px;
    background: rgba(14, 14, 38, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.25rem;
    margin-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s var(--ease-out), visibility 0.2s;
    pointer-events: none;
    z-index: 200;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -0.875rem;
    left: 0;
    right: 0;
    height: 0.875rem;
}

.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mega-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem 1.125rem;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mega-item:hover {
    background: var(--glass-bg);
    border-color: rgba(246, 93, 126, 0.2);
}

.mega-item-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.mega-item-title {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-1);
    line-height: 1.3;
}

.mega-item-desc {
    font-size: 0.8rem;
    color: var(--text-3);
    line-height: 1.5;
    margin-top: 0.125rem;
}

.mega-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 0.75rem 0;
}

.mega-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem 0.25rem;
}

.mega-footer-text {
    font-size: 0.8125rem;
    color: var(--text-3);
}

/* Mobile megamenu items */
.mobile-mega-sublabel {
    padding: 0.5rem 1.25rem 0.125rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(246, 93, 126, 0.7);
    margin-top: 0.25rem;
}

.mobile-mega-link {
    display: block;
    padding: 0.55rem 2rem;
    font-size: 0.9375rem;
    color: var(--text-2);
    border-radius: 10px;
    transition: all var(--transition);
}
.mobile-mega-link:hover { color: var(--text-1); }

/* Service page specific */
.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(246, 93, 126, 0.25);
    background: rgba(246, 93, 126, 0.07);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-pink);
    margin-bottom: 1.25rem;
}

.service-overview-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.service-overview-card {
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: all 0.35s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.service-overview-card:hover {
    border-color: rgba(246, 93, 126, 0.25);
    background: rgba(246, 93, 126, 0.04);
    transform: translateY(-4px);
}

.soc-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.soc-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.service-overview-card h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.service-overview-card p { font-size: 0.9375rem; flex: 1; }

.soc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-pink);
    transition: gap var(--transition);
}
.soc-link:hover { gap: 0.625rem; }

/* Service detail page */
.service-detail-hero {
    padding-top: calc(var(--nav-height) + 3.5rem);
    padding-bottom: 3rem;
    padding-left: 5%;
    padding-right: 5%;
}

.service-detail-body {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 5rem;
    align-items: start;
}

.sdm-content h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.sdm-content p { margin-bottom: 1.25rem; }
.sdm-content ul {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.sdm-content li { font-size: 0.9375rem; color: var(--text-2); list-style: disc; }

.sdm-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); }

.sdm-box {
    padding: 1.875rem;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    margin-bottom: 1.25rem;
}

.sdm-box h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-3);
    margin-bottom: 1rem;
}

.sdm-tag-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Process steps */
.process-steps {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.process-step {
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    position: relative;
}

.step-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; }

/* Services overview mega cards */
.services-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.services-mega-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.25rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.services-mega-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(246, 93, 126, 0.25);
    transform: translateY(-3px);
}

.smc-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smc-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.3;
    margin: 0;
}

.smc-desc {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.smc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.smc-list li {
    font-size: 0.825rem;
    color: var(--text-3);
    padding-left: 1rem;
    position: relative;
}

.smc-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
}

.smc-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-pink);
    margin-top: 0.25rem;
}

/* ── Clients strip ── */
.clients-section {
    padding: 3.5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}
.clients-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 2rem;
}
.client-logo {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
    cursor: default;
    padding: 0.5rem 4rem;
    border-right: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.client-logo:hover {
    color: rgba(255,255,255,0.45);
}

.marquee-item img {
    width: 90px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.marquee-item img:hover {
    opacity: 0.7;
}
.client-logo:hover {
    color: rgba(255,255,255,0.45);
}
.client-logo:hover { color: rgba(255,255,255,0.45); }

/* ── Insight card image variants ── */
.insight-card-img {
    position: relative;
    overflow: hidden;
}
.insight-card-img .insight-img-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}
.insight-card-img .insight-img-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    z-index: 2;
}
.insight-img-architecture {
    background:
        linear-gradient(135deg, #0d1b4b 0%, #1a2d6e 40%, #0f1e50 100%);
}
.insight-img-architecture::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(99,140,255,0.07) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(99,140,255,0.07) 29px);
}
.insight-img-architecture::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) rotate(15deg);
    width: 120px; height: 120px;
    border: 2px solid rgba(246,93,126,0.2);
    border-radius: 18px;
}
.insight-img-cloud {
    background: linear-gradient(135deg, #0c1a3a 0%, #1e2d5a 50%, #2a1060 100%);
}
.insight-img-cloud::before {
    content: '';
    position: absolute;
    top: 20%; left: 20%;
    width: 200px; height: 60px;
    background: rgba(251,174,53,0.06);
    border-radius: 60px;
    filter: blur(20px);
}
.insight-img-cloud::after {
    content: '';
    position: absolute;
    bottom: 20%; right: 15%;
    width: 140px; height: 40px;
    background: rgba(246,93,126,0.08);
    border-radius: 40px;
    filter: blur(16px);
}
.insight-img-team {
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1060 50%, #3d1a20 100%);
}
.insight-img-team::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246,93,126,0.15) 0%, transparent 70%);
}

/* ── Our Approach section ── */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.approach-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.25rem 2rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.approach-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(246,93,126,0.2);
}
.approach-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.5rem;
}
.approach-icon svg { width: 100%; height: 100%; }
.approach-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-1);
}
.approach-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.75;
    margin: 0;
}

/* ── Management team grid ── */
.mgmt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.mgmt-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.mgmt-card:hover {
    border-color: rgba(246,93,126,0.2);
    background: var(--glass-bg-hover);
}
.mgmt-photo {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(21,21,52,0.8), rgba(50,50,127,0.6));
}
.mgmt-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.mgmt-photo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-3);
}
.mgmt-photo-fallback::after {
    content: '👤';
}
.mgmt-info {
    padding: 1.5rem 1.75rem 2rem;
}
.mgmt-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.25rem;
}
.mgmt-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 0.875rem;
}
.mgmt-info p {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}
.mgmt-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.2s ease;
}
.mgmt-linkedin svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.mgmt-linkedin:hover { color: var(--accent-pink); }

/* ── Sub-service page layout ── */
.svc-sub-body {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: start;
}
.svc-sub-content h2 {
    font-size: 1.75rem;
    margin: 0 0 1.25rem;
}
.svc-sub-content p {
    font-size: 0.9375rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.svc-sub-content p:last-child { margin-bottom: 0; }
.svc-sub-points {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.svc-sub-points li {
    display: flex;
    gap: 0.875rem;
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.6;
}
.svc-sub-points li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-accent);
    margin-top: 0.55rem;
}
.svc-sub-visual {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
}
.svc-visual-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.svc-visual-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
/* Visual themes */
.svc-visual-strategy {
    background: linear-gradient(135deg, #0d1b4b 0%, #1a2d6e 50%, #0f1e50 100%);
}
.svc-visual-strategy::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 36px, rgba(99,140,255,0.05) 37px),
        repeating-linear-gradient(90deg, transparent, transparent 36px, rgba(99,140,255,0.05) 37px);
}
.svc-visual-strategy::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 140px; height: 140px;
    border: 1.5px solid rgba(246,93,126,0.18);
    border-radius: 24px;
    box-shadow: 0 0 60px rgba(246,93,126,0.08);
}
.svc-visual-engineering {
    background: linear-gradient(135deg, #0c1a2e 0%, #0f2a1a 50%, #1a2d0c 100%);
}
.svc-visual-engineering::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(99,255,140,0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251,174,53,0.08) 0%, transparent 50%);
}
.svc-visual-consulting {
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1060 50%, #1a0d3e 100%);
}
.svc-visual-consulting::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246,93,126,0.1) 0%, transparent 70%);
}
.svc-visual-design {
    background: linear-gradient(135deg, #2a0d1a 0%, #1a0d2a 50%, #0d1a2a 100%);
}
.svc-visual-design::before {
    content: '';
    position: absolute;
    inset: 2rem;
    border-radius: 18px;
    border: 1px solid rgba(251,174,53,0.12);
}
.svc-visual-design::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 80px; height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,174,53,0.15) 0%, transparent 70%);
}

@media (max-width: 1024px) {
    .svc-sub-body { grid-template-columns: 1fr; }
    .svc-sub-visual { position: static; aspect-ratio: 16/7; }
}

/* ── Service page: Industries + Technologies split ── */
.svc-detail-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.svc-list-header {
    margin-bottom: 2rem;
}
.svc-list-header h2 {
    font-size: 1.75rem;
    margin: 0.5rem 0 0.875rem;
}
.svc-list-header p {
    font-size: 0.9rem;
    color: var(--text-2);
    margin: 0;
}
.svc-industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.svc-industry-list li {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--glass-border);
}
.svc-industry-list li:first-child { padding-top: 0; }
.svc-list-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-accent);
    margin-top: 0.5rem;
}
.svc-industry-list strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 0.3rem;
}
.svc-industry-list p {
    font-size: 0.825rem;
    color: var(--text-2);
    margin: 0;
    line-height: 1.6;
}
.svc-tech-groups {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.svc-tech-group h5 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 0.75rem;
}
.tech-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 1024px) {
    .service-detail-body { grid-template-columns: 1fr; }
    .sdm-sidebar { position: static; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .service-overview-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .mgmt-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-detail-cols { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .mega-menu { width: calc(100vw - 2rem); min-width: 0; }
    .process-steps { grid-template-columns: 1fr; }
    .services-mega-grid { grid-template-columns: 1fr; }
    .mgmt-grid { grid-template-columns: 1fr; }
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-1);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 40, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    padding: 6rem 2rem 3rem;
    flex-direction: column;
    gap: 0.375rem;
    overflow-y: auto;
}
.mobile-nav.open { display: flex; }

.mobile-nav-link {
    display: block;
    padding: 0.875rem 1.25rem;
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-2);
    border-radius: 12px;
    transition: all var(--transition);
}
.mobile-nav-link:hover { color: var(--text-1); background: var(--glass-bg); }

.mobile-nav-sublabel {
    padding: 0.625rem 1.25rem 0.25rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-3);
    margin-top: 0.75rem;
}

.mobile-nav-sublink {
    display: block;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    color: var(--text-2);
    border-radius: 10px;
    transition: all var(--transition);
}
.mobile-nav-sublink:hover { color: var(--text-1); }

.mobile-nav-cta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 2rem;
    margin-left: 1.25rem;
}

/* ============================================
   FOOTER
============================================ */
#site-footer {
    padding: 5rem 0 2.5rem;
    border-top: none;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-wrap { margin-bottom: 1.25rem; }

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-3);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 280px;
}

.footer-socials { display: flex; gap: 0.75rem; }

.footer-social {
    width: 36px;
    height: 36px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-3);
    transition: all var(--transition);
}
.footer-social:hover {
    color: var(--text-1);
    border-color: rgba(246, 93, 126, 0.5);
    background: rgba(246, 93, 126, 0.08);
}

.footer-col h5 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-2);
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-1); }

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-copy { font-size: 0.875rem; color: var(--text-3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.875rem; color: var(--text-3); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-2); }

/* ============================================
   PARTNERS MARQUEE
============================================ */

.partners-strip {
    padding: 2.5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    text-align: center;
}

.partners-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-3);
    margin-bottom: 1.5rem;
}

.marquee-track-wrap {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 2.25rem;
    /* border-right: 1px solid var(--glass-border); */
    white-space: nowrap;
    color: var(--text-2);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.marquee-item:hover {
    color: var(--text-1);
}


.marquee-item svg {
    flex-shrink: 0;
    opacity: 0.85;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-25%); }
}

/* ============================================
   HERO SECTIONS
============================================ */
.hero-home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: var(--nav-height);
}

.hero-home-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text .section-lead { margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 0; }

.hero-graphic {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(246, 93, 126, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(251, 174, 53, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-graphic-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-graphic-inner .big-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.hero-graphic-inner p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ── Hero Slider ── */
.hero-slider-wrap {
    width: 420px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-slider-viewport {
    width: 420px;
    overflow: hidden;
    border-radius: 20px;
}

.hero-slider {
    display: flex;
    width: 420px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-svc-card {
    width: 420px;
    flex: 0 0 420px;
    scroll-snap-align: start;
    padding: 1.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.hero-svc-card-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.hero-d365-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

.hero-svc-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-svc-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 0.15rem;
}

.hero-svc-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 0;
}

.hero-svc-card-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0;
}

.hero-svc-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-svc-card-features li {
    font-size: 0.825rem;
    color: var(--text-2);
}

.hero-svc-card-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.hero-svc-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.svc-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    background: rgba(0,120,212,0.12);
    border: 1px solid rgba(0,120,212,0.25);
    color: #5BB5F5;
}
.svc-tag-blue  { background: rgba(0,137,214,0.12); border-color: rgba(0,137,214,0.25); color: #5BBFF5; }
.svc-tag-purple{ background: rgba(98,58,162,0.12);  border-color: rgba(98,58,162,0.3);  color: #a87ee0; }
.svc-tag-violet{ background: rgba(116,63,168,0.12); border-color: rgba(116,63,168,0.3); color: #c085f0; }

.hero-svc-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0078D4;
    text-decoration: none;
    transition: opacity 0.2s;
    margin-top: auto;
}
.hero-svc-card-link:hover { opacity: 0.75; }

/* Slider controls */
.hero-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.25rem;
}

.hero-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: rgba(255,255,255,0.75);
    border-color: transparent;
    width: 28px;
    border-radius: 4px;
}

.hero-slider-arrows {
    display: flex;
    gap: 0.4rem;
}

.slider-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: var(--text-1);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s;
}
.slider-arrow:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
}

/* Page hero (non-home) */
/* ── OUR STORY ── */
.story-section {
    padding: var(--section-py) 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.story-top-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--glass-border);
}

.story-top-left,
.story-top-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.story-top-left h2,
.story-top-right h2 {
    margin: 0.25rem 0 0.5rem;
    font-size: 1.6rem;
}

.story-top-left p,
.story-top-right p {
    color: var(--text-2);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

.story-top-right {
    padding-left: 2rem;
    border-left: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .story-top-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .story-top-right { padding-left: 0; border-left: none; border-top: 1px solid var(--glass-border); padding-top: 2rem; }
}

/* Split layout (reused for How We Work) */
.story-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
}

.story-year-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.25rem;
}

.story-since {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-3);
    margin-bottom: 0.25rem;
}

.story-year {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content-col h2 {
    margin: 0.5rem 0 1rem;
}

.story-content-col p {
    color: var(--text-2);
    max-width: 560px;
    margin-bottom: 0;
}

/* Timeline */
.story-timeline {
    position: relative;
    margin-bottom: 3.5rem;
}

.story-tl-track {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(1.1rem + 14px / 2); /* year height + half dot */
    height: 2px;
    z-index: 0;
}

.story-tl-line {
    position: absolute;
    inset: 0;
    background: var(--glass-border);
    border-radius: 2px;
}

.story-tl-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #62CFF6);
    border-radius: 2px;
    opacity: 0.5;
}

.story-tl-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.story-tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.story-tl-year {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-3);
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
}

.story-tl-item--active .story-tl-year,
.story-tl-item--now .story-tl-year {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
}

.story-tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.story-tl-item--active .story-tl-dot {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(246, 93, 126, 0.15);
}

.story-tl-item--now .story-tl-dot {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--accent), #62CFF6);
    border: none;
    box-shadow: 0 0 0 5px rgba(246, 93, 126, 0.15), 0 0 16px rgba(246, 93, 126, 0.3);
}

.story-tl-label {
    font-size: 0.72rem;
    color: var(--text-3);
    text-align: center;
    line-height: 1.4;
    margin-top: 0.65rem;
}

.story-tl-item--now .story-tl-label {
    color: var(--text-2);
    font-weight: 500;
}

@media (max-width: 768px) {
    .story-tl-label { display: none; }
}

/* Stats */
.story-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.story-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.story-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-stat-label {
    font-size: 0.8rem;
    color: var(--text-3);
}

@media (max-width: 768px) {
    .story-timeline-items { gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; }
    .story-tl-label { display: none; }
    .story-stats { flex-wrap: wrap; gap: 1.5rem; }
}

/* ── VALUES SPLIT ── */
.values-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.values-left {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}

.values-left h2 {
    margin: 0.5rem 0 1.25rem;
    font-size: 2rem;
}

.values-left p {
    color: var(--text-2);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 380px;
}

.values-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.values-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--glass-border);
    align-items: flex-start;
}

.values-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.values-item:first-child {
    padding-top: 0.5rem;
}

.values-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.values-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 0.35rem;
}

.values-item p {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .values-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .values-left { position: static; }
}

.simple-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.simple-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.simple-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.simple-gallery-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .simple-gallery { grid-template-columns: 1fr; }
}

.how-we-work {
    max-width: 720px;
}
.how-we-work h2 {
    margin: 0.5rem 0 1.25rem;
    font-size: 2rem;
}
.how-we-work p {
    color: var(--text-2);
    font-size: 1.05rem;
    line-height: 1.75;
}

.page-hero {
    padding-top: calc(var(--nav-height) + 3.5rem);
    padding-bottom: 4rem;
    padding-left: 5%;
    padding-right: 5%;
}

.page-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}

.page-hero-inner h1 { margin-bottom: 1.25rem; }
.page-hero-inner .section-lead { margin: 0 auto; max-width: 780px; }

/* ============================================
   SECTION BASE
============================================ */
section { padding: var(--section-py) 5%; }

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .accent-line { margin-left: auto; margin-right: auto; }
.section-header.centered .section-lead { margin-left: auto; margin-right: auto; }

/* ============================================
   HOME — STATS BAR
============================================ */
.stats-bar {
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.stat-item { text-align: center; }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stat-label { font-size: 0.875rem; color: var(--text-2); }

/* ============================================
   HOME — SERVICES GRID
============================================ */
.services-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(246, 93, 126, 0.1);
    border: 1px solid rgba(246, 93, 126, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 0.625rem; }
.service-card p { font-size: 0.9375rem; }

/* ── WHAT WE DO — NEW LAYOUT ── */
.wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.wwd-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.wwd-card:hover {
    border-color: rgba(255,255,255,0.18);
}

/* ── Header band ── */
.wwd-card-header {
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
}
.wwd-card-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
}

.wwd-card--blue .wwd-card-header {
    background: linear-gradient(135deg, rgba(30,103,243,0.18) 0%, rgba(98,207,246,0.10) 100%);
}
.wwd-card--blue .wwd-card-header::after {
    background: linear-gradient(90deg, rgba(30,103,243,0.6), rgba(98,207,246,0.3));
}

.wwd-card--teal .wwd-card-header {
    background: linear-gradient(135deg, rgba(0,212,245,0.18) 0%, rgba(27,255,220,0.10) 100%);
}
.wwd-card--teal .wwd-card-header::after {
    background: linear-gradient(90deg, rgba(0,212,245,0.6), rgba(27,255,220,0.3));
}

.wwd-card--orange .wwd-card-header {
    background: linear-gradient(135deg, rgba(255,147,80,0.18) 0%, rgba(246,93,126,0.10) 100%);
}
.wwd-card--orange .wwd-card-header::after {
    background: linear-gradient(90deg, rgba(255,147,80,0.6), rgba(246,93,126,0.3));
}

/* ── Icon ── */
.wwd-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}
.wwd-card--blue .wwd-card-icon {
    background: rgba(30,103,243,0.2);
    border: 1px solid rgba(98,207,246,0.3);
    color: #62CFF6;
}
.wwd-card--teal .wwd-card-icon {
    background: rgba(0,212,245,0.2);
    border: 1px solid rgba(27,255,220,0.3);
    color: #1BFFDC;
}
.wwd-card--orange .wwd-card-icon {
    background: rgba(255,147,80,0.2);
    border: 1px solid rgba(246,93,126,0.3);
    color: #FF9350;
}

/* ── Title ── */
.wwd-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.wwd-card--blue .wwd-title {
    background-image: linear-gradient(135deg, #62CFF6, #a8e0ff);
}
.wwd-card--teal .wwd-title {
    background-image: linear-gradient(135deg, #00D4F5, #1BFFDC);
}
.wwd-card--orange .wwd-title {
    background-image: linear-gradient(135deg, #FF9350, #F65D7E);
}

.wwd-tagline {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-2);
    margin: 0;
    font-style: italic;
}

/* ── Body ── */
.wwd-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    background: rgba(255,255,255,0.03);
}

.wwd-desc {
    font-size: 0.8125rem;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: auto;
}

.service-chip {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-2);
    background: transparent;
    border: 1px solid rgba(246, 93, 126, 0.45);
    border-radius: 20px;
    padding: 0.15rem 0.55rem;
    white-space: nowrap;
}

.wwd-card--blue .service-chip {
    border-color: rgba(30, 103, 243, 0.55);
}

.wwd-card--teal .service-chip {
    border-color: rgba(11, 226, 250, 0.45);
}

.wwd-card--orange .service-chip {
    border-color: rgba(255, 147, 80, 0.5);
}

@media (max-width: 1024px) {
    .wwd-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .wwd-grid { grid-template-columns: 1fr; gap: 1rem; }
    .wwd-card-header { padding: 1.25rem 1.25rem 1rem; }
    .wwd-card-body { padding: 1rem 1.25rem 1.25rem; }
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-pink);
    transition: gap var(--transition);
}
.card-arrow:hover { gap: 0.625rem; }

/* ============================================
   HOME — INDUSTRIES STRIP
============================================ */

/* Featured row — 2 highlighted chips */
.ind-featured-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 560px;
    margin: 0 auto 1rem;
}

.industry-chip--featured {
    border-color: rgba(246, 93, 126, 0.3) !important;
    background: rgba(246, 93, 126, 0.06) !important;
    padding: 1.75rem 1.5rem !important;
}

.industry-chip--featured .industry-chip-icon { font-size: 2.25rem !important; }
.industry-chip--featured h4 { font-size: 1rem !important; }

/* Main row — 5 chips */
.industries-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Secondary row — 3 subtler chips */
.ind-secondary-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.industry-chip--secondary {
    opacity: 0.6;
    padding: 1rem !important;
}

.industry-chip--secondary .industry-chip-icon { font-size: 1.25rem !important; margin-bottom: 0.35rem; }
.industry-chip--secondary h4 { font-size: 0.8rem !important; }

/* Base chip */
.industry-chip {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    text-align: center;
    transition: all 0.3s var(--ease-out);
    cursor: default;
}

.industry-chip:hover {
    border-color: rgba(246, 93, 126, 0.3);
    background: rgba(246, 93, 126, 0.05);
    transform: translateY(-3px);
    opacity: 1;
}

.industry-chip-icon { font-size: 1.75rem; margin-bottom: 0.625rem; }
.industry-chip h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0; }

/* ============================================
   HOME — INSIGHTS PREVIEW
============================================ */
.insights-preview-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.insight-card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-pink);
    margin-bottom: 0.75rem;
    display: block;
}
.insight-card-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(246, 93, 126, 0.12), rgba(251, 174, 53, 0.08));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.insight-card h3 { font-size: 1.125rem; margin-bottom: 0.625rem; line-height: 1.4; }
.insight-card-meta { font-size: 0.8rem; color: var(--text-3); margin-top: 1.25rem; }

/* ============================================
   CTA SECTION
============================================ */
.cta-section { padding: 3rem 5%; }

.cta-box {
    max-width: var(--container);
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(246, 93, 126, 0.1), rgba(251, 174, 53, 0.06));
    border: 1px solid rgba(246, 93, 126, 0.18);
    border-radius: 28px;
    padding: 3.5rem 4rem;
    text-align: center;
}
.cta-box h2 { margin-bottom: 1rem; }
.cta-box p { margin: 0 auto 2rem; max-width: 680px; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   SERVICES PAGE
============================================ */
.services-full-list {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-full-card {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: border-color 0.35s ease;
}
.service-full-card:hover { border-color: var(--glass-border-hover); }

.service-full-accent {
    padding: 3rem;
    background: linear-gradient(160deg, rgba(246, 93, 126, 0.12), rgba(251, 174, 53, 0.06));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    border-right: 1px solid var(--glass-border);
}

.service-full-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.service-full-accent h3 { font-size: 1.5rem; }

.service-full-body {
    padding: 3rem;
}

.service-full-body p { margin-bottom: 1.5rem; }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }

/* ============================================
   TECHNOLOGIES PAGE — HERO
============================================ */
.hero-home--compact {
    min-height: 70vh;
}

.tech-featured-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.tech-featured-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-featured-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.tech-featured-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.tech-featured-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-1);
    margin: 0;
}

.tech-featured-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}

.tech-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--glass-border);
}

.tech-featured-tags span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-2);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 0.15rem 0.6rem;
}

.tech-featured-link {
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

/* ============================================
   TECHNOLOGIES PAGE — HERO VISUAL
============================================ */
.tech-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 460px;
}

.tech-hero-group {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.tech-hero-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-3);
    display: block;
    margin-bottom: 0.6rem;
}

.tech-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tech-hero-pills span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-1);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
}

/* ============================================
   TECHNOLOGIES PAGE
============================================ */
.tech-layout {
    max-width: var(--container);
    margin: 0 auto;
}

.tech-category-section { margin-bottom: 4rem; }

.tech-category-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 1.25rem;
    display: block;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.125rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-2);
    transition: all var(--transition);
}
.tech-pill:hover {
    border-color: rgba(246, 93, 126, 0.4);
    color: var(--text-1);
    background: rgba(246, 93, 126, 0.07);
    transform: translateY(-1px);
}
.tech-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-accent);
    flex-shrink: 0;
}
a.tech-pill-link {
    text-decoration: none;
    cursor: pointer;
    border-color: rgba(246, 93, 126, 0.35);
    color: var(--accent);
}
a.tech-pill-link:hover {
    border-color: rgba(246, 93, 126, 0.7);
    background: rgba(246, 93, 126, 0.1);
    color: var(--accent);
    transform: translateY(-1px);
}

/* ============================================
   TECHNOLOGIES — MBA FEATURED SECTION
============================================ */
.mba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.mba-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    text-decoration: none;
    color: inherit;
}

.mba-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-3px);
}

.mba-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mba-card-logo {
    width: 120px;
}

.mba-card-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.mba-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mba-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-1);
    margin: 0;
}

.mba-card-desc {
    font-size: 0.9375rem;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.mba-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.mba-card-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-2);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0.2rem 0.65rem;
}

.mba-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .mba-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INDUSTRIES PAGE
============================================ */
.industries-full-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.industry-full-card { padding: 2.5rem; border-radius: 20px; }
.industry-full-card .ind-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.industry-full-card h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.industry-full-card .ind-desc { font-size: 0.9375rem; margin-bottom: 1.25rem; }

.ind-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
}
.ind-bullets li {
    font-size: 0.9rem;
    color: var(--text-2);
    padding-left: 1.25rem;
    position: relative;
}
.ind-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-pink);
}

/* ============================================
   ABOUT PAGE
============================================ */
.about-split {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-values-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.value-card { text-align: center; }

.value-num {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.value-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; }

.team-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.team-card { text-align: center; }
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(246, 93, 126, 0.2), rgba(251, 174, 53, 0.15));
    border: 2px solid rgba(246, 93, 126, 0.2);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.team-card h4 { font-size: 1.0625rem; margin-bottom: 0.25rem; }
.team-card .team-role { font-size: 0.875rem; color: var(--accent-pink); font-weight: 500; }
.team-card p { font-size: 0.875rem; margin-top: 0.75rem; }

/* ============================================
   PARTNERS PAGE
============================================ */
.partners-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.partner-card {
    aspect-ratio: 2/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-3);
    transition: all var(--transition);
    text-align: center;
}
.partner-card:hover {
    border-color: rgba(246, 93, 126, 0.25);
    color: var(--text-1);
    background: rgba(246, 93, 126, 0.04);
    transform: translateY(-3px);
}

/* ============================================
   CAREERS PAGE
============================================ */
.positions-list {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.position-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 2.5rem;
}

.position-info h3 { font-size: 1.25rem; margin-bottom: 0.625rem; }
.position-meta { display: flex; gap: 0.625rem; flex-wrap: wrap; }

.pos-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    color: var(--text-2);
}

.pos-badge.type-badge {
    border-color: rgba(246, 93, 126, 0.3);
    color: var(--accent-pink);
    background: rgba(246, 93, 126, 0.07);
}

.pos-badge.loc-badge {
    border-color: rgba(0, 120, 212, 0.3);
    color: #5BB5F5;
    background: rgba(0, 120, 212, 0.07);
}

.location-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.location-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-2);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
}

.location-tab:hover {
    border-color: rgba(246, 93, 126, 0.4);
    color: var(--text-1);
}

.location-tab.active {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    border-color: transparent;
    color: #fff;
    font-weight: 600;
}

.tab-count {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.8;
}

/* ============================================
   WHAT WE OFFER — CAREERS
============================================ */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .offer-grid { grid-template-columns: 1fr; }
}

.offer-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), background var(--transition);
}
.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-accent);
}
.offer-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

.offer-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(246, 93, 126, 0.1);
    border: 1px solid rgba(246, 93, 126, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-pink);
    margin-bottom: 1.25rem;
}

.offer-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.offer-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   PARTNERS PAGE
============================================ */
.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.partner-logo-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.75rem 2rem;
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.partner-logo-tile:nth-child(4n) {
    border-right: none;
}
.partner-logo-tile:nth-last-child(-n+4) {
    border-bottom: none;
}

.partner-logo-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 0.03em;
    transition: color var(--transition);
}
.partner-logo-tile:hover .partner-logo-name {
    color: var(--text-2);
}

/* How We Work grid */
.how-we-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.hww-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.25rem 2.25rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), background var(--transition);
}
.hww-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 16px 0 0 16px;
}
.hww-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

.hww-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.25rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hww-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.875rem;
}

.hww-desc {
    font-size: 0.9375rem;
    color: var(--text-2);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .partner-logos-grid { grid-template-columns: repeat(3, 1fr); }
    .partner-logos-grid .partner-logo-tile:nth-child(4n) { border-right: revert; }
    .partner-logos-grid .partner-logo-tile:nth-child(3n) { border-right: none; }
    .partner-logos-grid .partner-logo-tile:nth-last-child(-n+4) { border-bottom: revert; }
    .partner-logos-grid .partner-logo-tile:nth-last-child(-n+3) { border-bottom: none; }
    .how-we-work-grid { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 600px) {
    .partner-logos-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-logos-grid .partner-logo-tile:nth-child(3n) { border-right: revert; }
    .partner-logos-grid .partner-logo-tile:nth-child(2n) { border-right: none; }
    .partner-logos-grid .partner-logo-tile:nth-last-child(-n+3) { border-bottom: revert; }
    .partner-logos-grid .partner-logo-tile:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============================================
   CAREER SINGLE
============================================ */
.career-single-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

.career-single-meta { display: flex; gap: 0.625rem; flex-wrap: wrap; margin: 1.5rem 0 3rem; }

.career-body h3 { font-size: 1.3rem; margin: 2.5rem 0 1rem; }
.career-body p { margin-bottom: 1rem; }
.career-body ul {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.career-body ul li { font-size: 0.9375rem; color: var(--text-2); list-style: disc; }

.career-apply {
    margin-top: 3rem;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(246, 93, 126, 0.08), rgba(251, 174, 53, 0.05));
    border: 1px solid rgba(246, 93, 126, 0.15);
    text-align: center;
}
.career-apply h3 { margin-bottom: 0.75rem; }
.career-apply p { margin-bottom: 1.5rem; }

/* ============================================
   CASE STUDIES
============================================ */
.case-studies-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.case-industry {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-pink);
    margin-bottom: 0.75rem;
    display: block;
}

.case-card.card { padding: 1.5rem; }

.case-img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(0.9);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.case-card:hover .case-img img {
    transform: scale(1.04);
    filter: brightness(0.95) saturate(1);
}

.case-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.case-card p { font-size: 0.875rem; }
.case-industry { margin-bottom: 0.5rem; }

.case-results {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.result-stat-num {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.result-stat-label { font-size: 0.78rem; color: var(--text-3); }

/* Case Study Single */
.case-single-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5%;
}

.case-single-header { max-width: 760px; margin-bottom: 3rem; }

.case-single-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

.case-content h2 { font-size: 1.625rem; margin: 2.5rem 0 1rem; }
.case-content p { margin-bottom: 1.25rem; }

.case-sidebar-box {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    margin-bottom: 1.25rem;
}
.case-sidebar-box h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-3);
    margin-bottom: 1rem;
}

.sidebar-tag-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ============================================
   BLOG
============================================ */
.blog-featured {
    max-width: var(--container);
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.blog-featured-img {
    background: linear-gradient(135deg, rgba(246, 93, 126, 0.15), rgba(251, 174, 53, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    min-height: 320px;
    border-right: 1px solid var(--glass-border);
}

.blog-featured-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body .blog-tag { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-pink); margin-bottom: 1rem; display: block; }
.blog-featured-body h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.blog-featured-body .blog-meta { font-size: 0.8rem; color: var(--text-3); margin-top: 1.5rem; }

.blog-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.blog-card.card { padding: 1.5rem; }
.blog-card .blog-tag { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-pink); margin-bottom: 0.5rem; display: block; }
.blog-card-img {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(0.9);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.04);
    filter: brightness(0.95) saturate(1);
}
.blog-card h3 { font-size: 1.075rem; line-height: 1.4; margin-bottom: 0.5rem; }
.blog-card-meta { font-size: 0.8rem; color: var(--text-3); margin-top: 0.875rem; display: flex; justify-content: space-between; align-items: center; }

/* Blog Single */
.blog-single-wrap {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 5%;
}

.blog-single-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-3);
    font-size: 0.875rem;
    margin: 1.5rem 0 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.blog-single-body { color: var(--text-2); line-height: 1.9; }
.blog-single-body h2 { color: var(--text-1); font-size: 1.5rem; margin: 2.5rem 0 1rem; font-family: var(--font-display); }
.blog-single-body h3 { color: var(--text-1); font-size: 1.2rem; margin: 2rem 0 0.75rem; font-family: var(--font-display); }
.blog-single-body p { margin-bottom: 1.5rem; }
.blog-single-body ul { padding-left: 1.5rem; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; list-style: disc; }
.blog-single-body li { color: var(--text-2); font-size: 1.0625rem; }
.blog-single-body blockquote {
    border-left: 3px solid var(--accent-pink);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(246, 93, 126, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

/* ============================================
   PORTFOLIO
============================================ */
.portfolio-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.portfolio-card { overflow: hidden; padding: 0; }

.portfolio-img {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, rgba(50, 50, 127, 0.5), rgba(246, 93, 126, 0.15));
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.portfolio-info { padding: 2rem; }
.portfolio-type {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
    display: block;
}
.portfolio-info h3 { font-size: 1.25rem; margin-bottom: 0.625rem; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

/* ============================================
   CONTACT
============================================ */
.contact-layout {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h2 { font-size: 2.25rem; margin-bottom: 1rem; }

.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(246, 93, 126, 0.1);
    border: 1px solid rgba(246, 93, 126, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.contact-detail-text h5 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-3);
    margin-bottom: 0.25rem;
}

.contact-detail-text a,
.contact-detail-text p {
    font-size: 0.9375rem;
    color: var(--text-2);
    transition: color var(--transition);
    margin: 0;
}
.contact-detail-text a:hover { color: var(--text-1); }

.contact-form-wrap {
    padding: 3rem;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

/* --- LOAD MORE --- */
.load-more-wrap {
    text-align: center;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
}

.load-more-btn {
    min-width: 160px;
}

.load-more-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.load-more-btn.hidden {
    display: none;
}

/* --- CONTACT OFFICE TABS --- */
.office-tabs {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.office-tab {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-3);
    padding: 0.5rem 0 0.75rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
    margin-bottom: -1px;
    font-family: var(--font-body);
}

.office-tab:hover {
    color: var(--text-2);
}

.office-tab.active {
    color: var(--text-1);
    border-bottom-color: var(--accent-pink);
}

/* --- CONTACT GALLERY --- */
.contact-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 0.75rem;
    margin-top: 3rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
    transition: transform 0.5s var(--ease-out), filter 0.5s ease;
    filter: brightness(0.8) saturate(0.9);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.95) saturate(1.1);
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--tall img {
    min-height: 100%;
    height: 100%;
}

.gallery-item--wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .contact-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item--tall { grid-row: span 1; }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item img { min-height: 160px; }
}

@media (max-width: 480px) {
    .contact-gallery { grid-template-columns: 1fr; }
    .gallery-item--wide { grid-column: span 1; }
}

/* --- OFFICES GRID --- */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.office-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), transform var(--transition);
    padding: 0 !important;
}

.office-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
}

.office-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.office-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-out);
    filter: brightness(0.75) saturate(0.85);
}

.office-card:hover .office-img {
    transform: scale(1.04);
}

.office-flag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.office-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.office-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-country {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.office-city {
    font-size: 0.75rem;
    color: var(--text-3);
    padding-left: 0.5rem;
    border-left: 1px solid var(--glass-border);
}

.office-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 0;
}

.office-desc {
    font-size: 0.9375rem;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}

.office-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    list-style: none;
    padding: 0;
    margin: 0.25rem 0;
}

.office-highlights li {
    font-size: 0.875rem;
    color: var(--text-2);
}

.office-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.875rem;
    color: var(--text-3);
    margin-top: auto;
}

@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
    .office-img-wrap {
        height: 180px;
    }
}

.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.125rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-control::placeholder { color: var(--text-3); }

.form-control:focus {
    outline: none;
    border-color: rgba(246, 93, 126, 0.5);
    background: rgba(246, 93, 126, 0.04);
}

select.form-control option { background: #1a1a3e; color: #fff; }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.08s; }
.fade-up-d2 { transition-delay: 0.16s; }
.fade-up-d3 { transition-delay: 0.24s; }
.fade-up-d4 { transition-delay: 0.32s; }
.fade-up-d5 { transition-delay: 0.40s; }
.fade-up-d6 { transition-delay: 0.48s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero-home-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-split { grid-template-columns: 1fr; gap: 3rem; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-full-grid { grid-template-columns: 1fr; }
    .service-full-card { grid-template-columns: 1fr; }
    .service-full-accent { border-right: none; border-bottom: 1px solid var(--glass-border); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .case-studies-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-img { min-height: 220px; border-right: none; border-bottom: 1px solid var(--glass-border); }
    .portfolio-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .case-single-body { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .insights-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-py: 2.5rem; }
    .nav-links-wrap { display: none; }
    .nav-cta { display: none; }
    .nav-partner-badge { display: none; }
    .nav-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-bar-inner { justify-content: center; gap: 2.5rem; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .case-studies-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 3rem 2rem; }
    #site-footer { padding: 3rem 0 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { text-align: center; }
    .footer-logo-wrap { display: flex; justify-content: center; }
    .footer-desc { margin-left: auto; margin-right: auto; }
    .footer-socials { justify-content: center; }
    .footer-col { text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .insights-preview-grid { grid-template-columns: 1fr; }
    .industries-strip { grid-template-columns: repeat(3, 1fr); }
    .contact-form-wrap { padding: 2rem; }
    .case-img { height: 180px; }
    .client-logo { padding: 0.6rem 0.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    .about-values-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-strip { grid-template-columns: repeat(2, 1fr); }
    .cta-box { padding: 2.5rem 1.5rem; }
}

/* ============================================
   LIGHT / DARK THEME SYSTEM
============================================ */
[data-theme="light"] {
    --bg-base: #f4f6fb;
    --bg-mid: #dce5f7;
    --gradient-bg: radial-gradient(ellipse at 65% -10%, #dce5f7 0%, #f4f6fb 60%);
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-bg-hover: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(13, 13, 43, 0.09);
    --glass-border-hover: rgba(13, 13, 43, 0.2);
    --text-1: #0d0d2b;
    --text-2: rgba(13, 13, 43, 0.62);
    --text-3: rgba(13, 13, 43, 0.36);
}

[data-theme="light"] body {
    background-color: var(--bg-base);
    background-image: var(--gradient-bg);
}

[data-theme="light"] #site-header.scrolled {
    background: rgba(244, 246, 251, 0.92);
    border-bottom-color: rgba(13, 13, 43, 0.09);
}

[data-theme="light"] .nav-link { color: rgba(13, 13, 43, 0.7); }
[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active { color: #0d0d2b; }

[data-theme="light"] .mega-menu {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(13, 13, 43, 0.1);
    box-shadow: 0 20px 60px rgba(13, 13, 43, 0.14);
}
[data-theme="light"] .mega-item:hover { background: rgba(246, 93, 126, 0.05); }
[data-theme="light"] .mega-item-desc { color: rgba(13, 13, 43, 0.55); }

[data-theme="light"] .nav-dropdown {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(13, 13, 43, 0.1);
    box-shadow: 0 12px 40px rgba(13, 13, 43, 0.12);
}
[data-theme="light"] .dropdown-item { color: rgba(13, 13, 43, 0.7); }
[data-theme="light"] .dropdown-item:hover { background: rgba(246, 93, 126, 0.05); color: #0d0d2b; }

[data-theme="light"] .nav-toggle span { background: #0d0d2b; }

[data-theme="light"] .mobile-nav {
    background: rgba(244, 246, 251, 0.98);
    border-top-color: rgba(13, 13, 43, 0.1);
}
[data-theme="light"] .mobile-nav-link,
[data-theme="light"] .mobile-nav-sublink { color: rgba(13, 13, 43, 0.75); }
[data-theme="light"] .mobile-nav-sublabel { color: rgba(13, 13, 43, 0.38); }

[data-theme="light"] .btn-ghost {
    color: #0d0d2b;
    border-color: rgba(13, 13, 43, 0.22);
}
[data-theme="light"] .btn-ghost:hover {
    background: rgba(13, 13, 43, 0.06);
    border-color: rgba(13, 13, 43, 0.32);
}

[data-theme="light"] .card {
    box-shadow: 0 2px 12px rgba(13, 13, 43, 0.06);
}
[data-theme="light"] .card:hover {
    box-shadow: 0 8px 32px rgba(13, 13, 43, 0.1);
}

[data-theme="light"] .service-overview-card:hover {
    background: rgba(246, 93, 126, 0.06);
    box-shadow: 0 8px 32px rgba(13, 13, 43, 0.09);
}

[data-theme="light"] .form-control {
    background: rgba(13, 13, 43, 0.04);
    color: var(--text-1);
    border-color: rgba(13, 13, 43, 0.12);
}
[data-theme="light"] .form-control:focus {
    background: rgba(246, 93, 126, 0.04);
    border-color: rgba(246, 93, 126, 0.4);
}
[data-theme="light"] select.form-control option {
    background: #f4f6fb;
    color: #0d0d2b;
}

[data-theme="light"] .site-footer {
    border-top-color: rgba(13, 13, 43, 0.09);
}

[data-theme="light"] .stats-bar {
    border-top-color: rgba(13, 13, 43, 0.09);
    border-bottom-color: rgba(13, 13, 43, 0.09);
}

[data-theme="light"] .svc-industry-list li { border-bottom-color: rgba(13, 13, 43, 0.07); }
[data-theme="light"] .process-step { border-bottom-color: rgba(13, 13, 43, 0.07); }

/* ============================================
   SECTION VARIANTS
============================================ */
.section-alt {
    background: rgba(255, 255, 255, 0.032);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
[data-theme="light"] .section-alt {
    background: rgba(13, 13, 43, 0.028);
}

.section-light {
    background: rgba(255, 255, 255, 0.075);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
[data-theme="light"] .section-light {
    background: #ffffff;
    border-top-color: rgba(13, 13, 43, 0.07);
    border-bottom-color: rgba(13, 13, 43, 0.07);
}

/* ============================================
   THEME TOGGLE BUTTON
============================================ */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-2);
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
}
.theme-toggle:hover {
    background: var(--glass-bg-hover);
    color: var(--text-1);
    border-color: var(--glass-border-hover);
    transform: rotate(20deg);
}
.theme-toggle svg { pointer-events: none; }

/* ============================================
   SERVICE VISUAL — PHOTOS
============================================ */
.svc-visual-strategy {
    background:
        linear-gradient(135deg, rgba(13,27,75,0.85) 0%, rgba(26,45,110,0.85) 50%, rgba(15,30,80,0.92) 100%),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=900&q=70') center/cover no-repeat;
}
.svc-visual-engineering {
    background:
        linear-gradient(135deg, rgba(12,26,46,0.85) 0%, rgba(15,42,26,0.85) 50%, rgba(26,45,12,0.92) 100%),
        url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=900&q=70') center/cover no-repeat;
}
.svc-visual-consulting {
    background:
        linear-gradient(135deg, rgba(26,13,46,0.85) 0%, rgba(45,16,96,0.85) 50%, rgba(26,13,62,0.92) 100%),
        url('https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?auto=format&fit=crop&w=900&q=70') center/cover no-repeat;
}
.svc-visual-design {
    background:
        linear-gradient(135deg, rgba(42,13,26,0.85) 0%, rgba(26,13,42,0.85) 50%, rgba(13,26,42,0.92) 100%),
        url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=900&q=70') center/cover no-repeat;
}

/* ============================================
   PHOTO STRIP (Homepage)
============================================ */
.photo-strip-wrap {
    max-width: var(--container);
    margin: 0 auto;
}
.photo-strip {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 0.875rem;
}
.photo-strip-item {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    border: 1px solid var(--glass-border);
}
.photo-strip-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}
.photo-strip-item:hover img { transform: scale(1.05); }
.photo-strip-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.03em;
}

/* ============================================
   ABOUT PAGE PHOTO
============================================ */
.about-photo-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}
[data-theme="light"] .about-photo-wrap {
    box-shadow: 0 20px 60px rgba(13, 13, 43, 0.12);
}
.about-photo-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* ============================================
   SERVICE PAGE HERO PHOTOS
============================================ */
.svc-hero-photo {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}
[data-theme="light"] .svc-hero-photo {
    box-shadow: 0 16px 48px rgba(13, 13, 43, 0.1);
}
.svc-hero-photo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .photo-strip { grid-template-columns: 1fr; }
    .photo-strip-item img { height: 220px; }
    .about-photo-wrap img { height: 320px; }
    .svc-hero-photo img { height: 220px; }
}
