/* ═══════════════════════════════════════════════
   ZIEERS SYSTEMS — Unified Design System (Charcoal Edition)
   ═══════════════════════════════════════════════ */

/* ── CSS Variables / Design Tokens ── */
:root {
    /* Charcoal/Dark Color Palette */
    --cream: #232E29;
    --warm-white: #1A2420;
    --ink: #D4EEE2;
    --charcoal: #A8CABB;
    --muted: #6B9E88;
    --accent: #10B981;
    --accent-light: #1C3D30;
    --gold: #0ECF96;
    --line: #2D4038;
    --teal: #065F46;
    --teal-light: #1E3028;
    --teal-dark: #022C22;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;

    --section-pad: 5rem 4rem;
    --section-pad-mobile: 3rem 1.5rem;

    --ease-fast: 0.2s ease;
    --ease-normal: 0.3s ease;
    --ease-slow: 0.55s ease;

    /* Shadows use black instead of ink-green so they work on light backgrounds */
    --shadow-card: 0 8px 32px rgba(0,0,0,0.20);
    --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.28);
    --shadow-sm: 0 4px 16px rgba(0,0,0,0.15);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 68px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
}

a { color: var(--accent); text-decoration: none; transition: color var(--ease-fast); }
a:hover { color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Navigation ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    /* Dark semi-transparent nav — matches charcoal warm-white */
    background: rgba(26,36,32,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 0 4rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--ink);
    text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    transition: color var(--ease-fast);
    cursor: pointer;
    padding: 0.5rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 4px;
    transition: background var(--ease-fast) !important;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--cream) !important; }

/* Mobile Nav */
.mob-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--ink);
    padding: 0.5rem;
}
.mob-nav {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--warm-white);
    z-index: 999;
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid var(--line);
    overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
}
.mob-nav a:hover { background: var(--cream); color: var(--accent); }

/* ── Navigation Branding Updates ── */
.nav-brand {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--ink);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    gap: 0;
}

.logo-text span { color: var(--accent); }

/* Hide text logo when image is present */
.nav-logo .logo-text { display: none; }

.nav-tagline {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.03em;
    padding-left: 0.75rem;
    border-left: 1px solid var(--line);
    white-space: nowrap;
}

@media (max-width: 991px) {
    .nav-brand { gap: 0.5rem; }
    .nav-tagline { display: none; }
    .logo-img { height: 34px; }
}
@media (max-width: 640px) {
    .logo-img { height: 30px; }
}

/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    background: var(--ink);
    color: var(--cream);
    padding: 0.85rem 2rem;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background var(--ease-fast), transform 0.15s ease;
    text-decoration: none;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--ink);
    padding: 0.85rem 2rem;
    border: 1.5px solid var(--line);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: border-color var(--ease-fast), color var(--ease-fast);
    text-decoration: none;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-white {
    display: inline-block;
    background: #fff;
    color: var(--teal);
    padding: 0.9rem 2.25rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    font-family: var(--font-body);
    transition: background var(--ease-fast), transform 0.15s ease;
    text-decoration: none;
}
.btn-white:hover { background: #6EE7B7; color: var(--teal-dark); transform: translateY(-2px); }

/* ── Section Tags & Titles ── */
.section-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.section-tag::before { 
    content: '\2014';
    font-family: var(--font-body);
    font-weight: normal;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

/* ── CTA Band ── */
.cta-band {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 4.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-band h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    max-width: 560px;
    line-height: 1.25;
}
.cta-band h2 em { color: #6EE7B7; font-style: italic; }

/* ── Page Hero (for services page) ── */
.page-hero {
    
    padding: 5rem 4rem 4rem;
    border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
}
.page-hero .eyebrow::before { 
    content: '\2014';
    font-family: var(--font-body);
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    max-width: 700px;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--ink);
}
.page-hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.page-hero p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ── Dark Page Hero ──
   Hardcoded dark background so white text stays visible in charcoal theme */
.page-hero-dark {
    background: var(--warm-white);
    padding: 5rem 4rem 4rem;
    border-bottom: 1px solid rgba(45,64,56,0.8);
}
.page-hero-dark .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #6EE7B7;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.page-hero-dark .eyebrow::before { 
    content: '\2014';
    font-family: var(--font-body);
}

.page-hero-dark h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    max-width: 700px;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--ink);
}
.page-hero-dark h1 em {
    font-style: italic;
    color: #6EE7B7;
}
.page-hero-dark p {
    font-size: 1rem;
    color: rgba(212,238,226,0.65);
    max-width: 600px;
    line-height: 1.7;
}

/* ── Advanced Hero (legacy) ──
   Hardcoded dark background so white text stays visible in charcoal theme */
.adv-hero {
    padding: 5rem 4rem 4rem;
    background: var(--warm-white);
}
.adv-hero .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);  /* Changed to match other pages */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.adv-hero .eyebrow::before {
    content: '\2014';
    font-family: var(--font-body);
}

.adv-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    max-width: 700px;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1rem;
}

.adv-hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.adv-hero p {
    font-size: 1rem;
    color: var(--muted);  /* Changed to match other pages */
    max-width: 600px;
    line-height: 1.7;
}
/* ── About Hero ── */
.about-hero {
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: var(--warm-white);
}
.about-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    color: var(--ink);
}
.about-hero h1 em {
    font-style: italic;
    color: var(--accent);
}
.about-hero p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* About Manifesto - keep as is, it's working */
.about-manifesto {
    background: var(--ink);
    border-radius: 12px;
    padding: 2.5rem;
    color: var(--cream);
}
.about-manifesto .quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    margin-bottom: -0.5rem;
    display: block;
}
.about-manifesto blockquote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--cream);
    font-style: italic;
}
.about-manifesto .source {
    font-size: 0.78rem;
    color: rgba(5,46,22,0.45);
    margin-top: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.about-content-section {
    padding: 5rem 4rem;
    background: var(--cream);
}
.about-content-section .container {
    max-width: 860px;
    margin: 0 auto;
}
.about-content-section p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted);
    text-align: justify;
    margin-bottom: 16px;
}

/* ── Services Container ── */
.services-container {
    padding: 4rem;
  background: var(--cream);
}

/* ── Service Block Styles ── */
.service-block {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s;
    background: var(--warm-white);
}
.service-block:hover { box-shadow: var(--shadow-card); }

.service-block-header {
    display: grid;
    grid-template-columns: auto 1fr 140px auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.service-block-header:hover { border-bottom-color: var(--line); }
.service-block.open .service-block-header { border-bottom: 1px solid var(--line); }

.svc-letter {
    width: 48px;
    height: 48px;
    background: var(--ink);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
}
.svc-header-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--ink);
}
.svc-header-info p { font-size: 0.82rem; color: var(--muted); }

.svc-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    background: var(--accent-light);
    color: var(--accent);
    letter-spacing: 0.05em;
    white-space: nowrap;
    width: 130px;
    text-align: center;
    justify-self: center;
}
.svc-arrow {
    font-size: 1.2rem;
    color: var(--muted);
    transition: transform 0.3s ease, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    user-select: none;
}
.service-block.open .svc-arrow { transform: rotate(180deg); color: var(--accent); }
.service-block-header:hover .svc-arrow { color: var(--accent); }

.service-block-body {
    display: none;
    padding: 2rem;
    background: var(--cream);
}
.service-block.open .service-block-body { display: block; }

/* ── Features List ── */
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.855rem;
    color: var(--charcoal);
    line-height: 1.5;
}
.feature-item::before {
    content: '\2014';
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 0.1em;
    flex-shrink: 0;
}

/* ── Tech Chips ── */
.tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.tech-chip {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    padding: 0.25rem 0.65rem;
    background: var(--ink);
    color: var(--cream);
    border-radius: 4px;
    letter-spacing: 0.03em;
}

/* ── Insight Box ── */
.insight-box {
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    padding: 0.85rem 1.25rem;
    font-size: 0.83rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 1.25rem;
}

/* ── Packages Section ──
   Uses var(--ink) = light background in charcoal; text must be dark */
.packages-section {
    background: var(--ink);
    padding: 4rem;
    
}
.packages-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
}
/* Dark text on light --ink background */
.packages-section .sub {
    color: rgba(5,46,22,0.55);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.pkg-card {
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.15);
    border-radius: 8px;
    padding: 1.5rem;
    transition: background 0.2s, border-color 0.2s;
}
.pkg-card:hover {
    background: rgba(16,185,129,0.10);
    border-color: rgba(16,185,129,0.35);
}
.pkg-duration {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.pkg-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
}
/* Dark text on light --ink background */
.pkg-card p { font-size: 0.78rem; color: rgba(5,46,22,0.55); line-height: 1.55; }

/* ── Values Section ── */
.values-section {
    padding: 5rem 4rem;
    background: var(--warm-white);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.value-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
}
.value-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── Capability Section ── */
.capability-section {
    padding: 5rem 4rem;
    background: var(--cream);
}
.capability-section .sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    text-align: center;
}
.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.cap-card {
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.75rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: border-color 0.2s, transform 0.2s;
}
.cap-card:hover { border-color: var(--accent); transform: translateX(4px); }
.cap-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--ink);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cap-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--ink);
}
.cap-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── Vertical / Leadership Section ── */
.leadership-section {
    padding: 5rem 4rem;
    background: var(--warm-white);
}
.leadership-section .sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    text-align: center;
}
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.vert-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.vert-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.vert-card .vert-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.vert-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--ink);
}
.vert-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* ── Leadership Team ── */
.leadership-team {
    padding: 5rem 4rem;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.leader-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}
.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--accent);
}
.leader-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.leader-card:hover .leader-img { transform: scale(1.03); }
.leader-info {
    padding: 1.8rem 1.5rem 1.5rem;
    text-align: center;
    background: var(--warm-white);
}
.leader-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.4rem;
    letter-spacing: -0.3px;
}
.leader-role {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    background: var(--accent-light);
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
}
.leader-thought {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--charcoal);
    font-style: italic;
    position: relative;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--line);
}
.leader-thought::before {
    content: "\201C";
    font-size: 1.8rem;
    color: var(--accent);
    opacity: 0.5;
    font-family: serif;
    position: absolute;
    top: -0.3rem;
    left: 0;
}
.leader-quote-text {
    display: block;
    margin-top: 0.25rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .leadership-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 640px) {
    .leadership-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ── Advanced Grid ── */
.adv-container { 
  padding: 4rem; 
 background: var(--cream);
}
.adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: var(--cream);
}
.adv-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--warm-white);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--accent);
}
.adv-card-top {
    padding: 1.75rem 2rem 1.25rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    
}
/* Badge: dark teal-light bg needs visible light text */
.adv-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    background: var(--teal-light);
    color: #6EE7B7;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.adv-badge.hot { background: var(--accent-light); color: var(--accent); }
.adv-card-top h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--ink);
}
.adv-card-top .tagline { font-size: 0.8rem; color: var(--muted); }
.adv-card-body { padding: 1.5rem 2rem; }

/* ── Revenue Section ── */
.revenue-section {
    padding: 4rem;
    background: var(--warm-white);
}
.revenue-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.revenue-section .sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 2.5rem; }
.revenue-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.rev-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.rev-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.rev-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.rev-card h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--ink); }
.rev-card p { font-size: 0.76rem; color: var(--muted); line-height: 1.5; }

/* ── GTM Section ── */
.gtm-section { padding: 4rem; }
.gtm-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.gtm-section .sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 2.5rem; }
.gtm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gtm-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.75rem;
    position: relative;
}
.gtm-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--line);
    position: absolute;
    top: 1rem; right: 1.25rem;
    line-height: 1;
}
.gtm-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--ink); }
.gtm-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── Careers Page ── */
.careers-hero {
    background: linear-gradient(135deg, #052E16 0%, #065F46 50%, #022C22 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.careers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.careers-hero .container { position: relative; z-index: 1; }
.careers-hero .careers-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #6EE7B7;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}
.careers-hero .careers-eyebrow::before { 
    content: '\2014';
    font-family: var(--font-body);
}

.careers-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}
.careers-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.careers-section { padding: 60px 4rem; }
.careers-section.alt { background: var(--cream); }
.careers-section .container { max-width: 860px; margin: 0 auto; }
.careers-section p { font-size: 0.95rem; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }

/* Culture Cards */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.culture-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.culture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}
.culture-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}
.culture-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 0; }

/* Openings */
.openings-list { margin-top: 32px; }
.opening-item {
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.opening-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.opening-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.opening-info span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}
.badge-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.badge-fulltime { background: var(--accent-light); color: var(--accent); }
.badge-intern { background: var(--accent-light); color: var(--accent); }

.placement-card {
    background: var(--ink);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: var(--cream);
    margin-top: 32px;
}
.placement-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}
.placement-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }

/* ── Contact Page ── */
.contact-hero {
    background: linear-gradient(135deg, #052E16 0%, #065F46 50%, #022C22 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero .contact-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #6EE7B7;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}
.contact-hero .contact-eyebrow::before { 
    content: '\2014';
    font-family: var(--font-body);
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.75rem;
}
.contact-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-grid-section { padding: 60px 4rem; background: var(--warm-white); }
.contact-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-panel { display: flex; flex-direction: column; gap: 16px; }
.info-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s, transform 0.2s;
}
.info-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.info-card-icon {
    width: 44px;
    height: 44px;
    background: var(--ink);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    
}
.info-card-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
    
}
.info-card-value {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
    
}
.info-card-value a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
.info-card-value a:hover { color: var(--accent); }

.contact-form-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.contact-form-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    
}
.contact-form-card .form-subtitle { font-size: 0.9rem; color: var(--muted); margin-bottom: 28px;  }

/* Locate Section */
.locate-section { padding: 60px 4rem; background: var(--cream); }
.locate-section .container { max-width: 1100px; margin: 0 auto; }
.locate-section .section-title { text-align: center; margin-bottom: 32px; }
.locate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.map-wrapper, .office-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    
}
.map-wrapper iframe, .office-image-wrapper img {
    width: 100%; height: 400px; border: none; display: block; object-fit: cover;
}

/* ── Internship Page ── */
.intern-hero {
    background: linear-gradient(135deg, #052E16 0%, #065F46 50%, #022C22 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.intern-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.intern-hero .container { position: relative; z-index: 1; }
.intern-hero .intern-hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #6EE7B7;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}
.intern-hero .intern-hero-eyebrow::before { 
    content: '\2014';
    font-family: var(--font-body);
}

.intern-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}
.intern-hero h1 em { color: #6EE7B7; font-style: italic; }
.intern-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.intern-section { padding: 60px 4rem; }
.intern-section.alt { background: var(--cream); }

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin: 32px 0;
}
.offering-card {
    background: var(--warm-white);;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}
.offering-icon { font-size: 2rem; margin-bottom: 12px; }
.offering-text { font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; color: var(--charcoal); }

.highlight-box {
    background: var(--ink);
    border: 1px solid rgba(212,238,226,0.1);
    border-radius: 12px;
    padding: 28px;
    margin-top: 32px;
    color: var(--cream);
}
.highlight-item {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.highlight-item:last-child { margin-bottom: 0; }
.highlight-item strong { color: var(--accent); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.benefit-card {
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.benefit-icon { font-size: 2.2rem; margin-bottom: 16px; }
.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ink);
}
.benefit-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.domains-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.domain-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.domain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}
.domain-icon { font-size: 2rem; margin-bottom: 10px; }
.domain-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.domain-card p { font-size: 0.78rem; color: var(--muted); }

.application-section { padding: 60px 4rem; background: var(--cream); }
.app-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.app-form-container h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: var(--ink);
}
.app-form-container .form-subtitle { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 32px; }

/* Form Elements */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-group label .req { color: var(--accent); }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--warm-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B9E88' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.file-upload-wrap {
    border: 2px dashed var(--line);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
.file-upload-wrap:hover { border-color: var(--accent); background: rgba(16,185,129,0.02); }
.file-upload-wrap input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.file-upload-wrap .file-label { font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent); font-weight: 500; }
.file-upload-wrap .file-hint { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
}
.submit-btn:hover { background: var(--accent); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.msg-ok, .msg-err {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-top: 16px;
    display: none;
    text-align: center;
    font-weight: 500;
}
.msg-ok { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); color: #059669; }
.msg-err { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); color: #dc2626; }

.contact-info-box {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}
.contact-info-box h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.contact-info-box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.contact-info-box .email-link { font-family: var(--font-mono); font-size: 0.9rem; color: var(--accent); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.contact-info-box .email-link:hover { color: var(--ink); }

/* Gallery Section */
.gallery-section { padding: 60px 4rem; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.gallery-item { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s; aspect-ratio: 4/3; }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Inquiry Tags */
.inquiry-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.inquiry-tag {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--warm-white);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}
.inquiry-tag:hover, .inquiry-tag.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

/* ── Footer ──
   Hardcoded dark background so rgba(247,254,251,…) text stays visible */
footer {
    background: #0F1C17;
    color: var(--ink);
    padding: 3rem 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    border-top: 1px solid rgba(45,64,56,0.8);
}
.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--ink);
}
.footer-brand h3 span { color: var(--accent); }
.footer-brand p { font-size: 0.82rem; color: rgba(212,238,226,0.5); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(212,238,226,0.4);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(212,238,226,0.7);
    text-decoration: none;
    transition: color var(--ease-fast);
    cursor: pointer;
}
.footer-col ul li a:hover { color: var(--ink); }

/* Footer Bottom ── Hardcoded dark to match footer */
.footer-bottom {
    background: #0F1C17;
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(45,64,56,0.8);
    font-size: 0.78rem;
    color: rgba(212,238,226,0.45);
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 40px; height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 50;
    opacity: 0;
    transition: opacity var(--ease-normal);
    text-decoration: none;
}
.scroll-top.show { opacity: 1; }
.scroll-top:hover { background: var(--ink); color: var(--cream); }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--ease-slow), transform var(--ease-slow);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ── Home Page Hero ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 68px);
    align-items: center;
    padding: 4rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.13) 0%, transparent 70%);
    pointer-events: none;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }
.hero-visual { position: relative; display: flex; flex-direction: column; gap: 1rem; }

.metric-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInFromLeft 0.5s ease forwards;
    opacity: 0;
}

.metric-card:nth-child(1) { animation-delay: 0s; }
.metric-card:nth-child(2) { animation-delay: 0.15s; }
.metric-card:nth-child(3) { animation-delay: 0.30s; }
.metric-card:nth-child(4) { animation-delay: 0.45s; }

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.metric-icon {
    width: 44px; height: 44px;
    background: var(--ink);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.metric-label { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.2rem; font-family: var(--font-mono); }
.metric-value { font-size: 1rem; font-weight: 600; color: var(--ink); }

/* Stats Strip ── Uses var(--ink) = light in charcoal; text must be dark */
.stats-strip {
    background: var(--ink);
    color: var(--cream);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 4rem;
    gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--cream);
    display: block;
}
.stat-num span { color: var(--accent); }
/* Dark text on light --ink background */
.stat-desc {
    font-size: 0.8rem;
    color: rgba(5,46,22,0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.25rem;
    font-family: var(--font-mono);
}

/* Positioning Section */
.positioning {
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    border-bottom: 1px solid var(--line);
}
.positioning-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.pos-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.5rem;
    background: var(--cream);
    transition: border-color 0.2s, transform 0.2s;
}
.pos-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.pos-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.pos-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--ink);
}
.pos-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* Services Preview */
.services-preview {
    padding: 5rem 4rem;
    background: var(--cream);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.svc-card {
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--ease-normal);
}
.svc-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.svc-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--ink);
}
.svc-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* Utility Classes */
.text-center { text-align: center; }
.text-justify { text-align: justify; }

/* ═══════════════════════════════════════════════
   ZIG-ZAG LEADERSHIP LAYOUT (Full Width)
   ═══════════════════════════════════════════════ */
.leadership-team-zigzag {
    padding: 5rem 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    width: 100%;
    overflow-x: hidden;
}
.leaders-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0; padding: 0;
}
.leader-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--warm-white);
    transition: all 0.3s ease;
    width: 100%;
    margin: 0; padding: 0;
}
.leader-row .leader-left {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 100%);
    width: 100%;
    margin: 0;
}
.leader-row .leader-right {
    padding: 3rem 4rem;
    background: var(--warm-white);
    width: 100%;
}
.leader-row.reverse { direction: rtl; }
.leader-row.reverse .leader-left {
    direction: ltr;
    background: linear-gradient(135deg, var(--cream) 0%, var(--teal-light) 100%);
}
.leader-row.reverse .leader-right { direction: ltr; text-align: left; }
.leader-row:not(:last-child) { border-bottom: 1px solid var(--line); }
.leader-img-large {
    width: 220px; height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}
.leader-row:hover .leader-img-large { transform: scale(1.02); }
.leader-name-large {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.25rem;
}
.leader-role-large {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    background: var(--accent-light);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-top: 0.5rem;
}
.leader-quote-large {
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--charcoal);
    font-style: italic;
    font-weight: 500;
    max-width: 90%;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}
.leader-quote-large .quote-open {
    font-size: 3.5rem;
    color: var(--accent);
    opacity: 0.4;
    font-family: serif;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    margin-right: 0.25rem;
    vertical-align: middle;
}
.leader-quote-large .quote-close {
    font-size: 3.5rem;
    color: var(--accent);
    opacity: 0.4;
    font-family: serif;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    margin-left: 0.25rem;
    vertical-align: -0.4em;
}
.leader-quote-text { display: inline; }
.leader-row.reverse .leader-quote-large { text-align: left; }

/* ═══════════════════════════════════════════════
   AUTOFILL FIX - Force consistent styling
   ═══════════════════════════════════════════════ */

/* Force autofilled inputs to match manual input styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--warm-white) inset !important;
    box-shadow: 0 0 0 1000px var(--warm-white) inset !important;
    -webkit-text-fill-color: var(--ink) !important;
    caret-color: var(--ink) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* For Firefox autofill */
input:-moz-autofill,
textarea:-moz-autofill {
    background-color: var(--warm-white) !important;
    color: var(--ink) !important;
}

/* Ensure border stays consistent on autofill */
input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 1000px var(--warm-white) inset, 0 0 0 3px rgba(16,185,129,0.08) !important;
}

/* ── Contact Page Styles ── */
.inquiry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.inquiry-tag {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--cream);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}

.inquiry-tag:hover,
.inquiry-tag.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

.contact-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 10px;
    margin-bottom: 16px;
    transition: border-color 0.2s, transform 0.2s;
}

.info-card:hover {
    transform: translateY(-2px);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-card-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-form-card {
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

/* Contact Page Responsive */
@media (max-width: 991px) {
    .contact-grid-inner {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .mob-btn { display: flex; align-items: center; }

    .hero { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; min-height: auto; }
    .hero-visual { display: none; }

    .positioning { grid-template-columns: 1fr; padding: var(--section-pad-mobile); }
    .positioning-right { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .values-grid, .cap-grid, .verticals-grid { grid-template-columns: 1fr; }
    .features-list { grid-template-columns: 1fr; }

    .about-hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
    .contact-grid-inner { grid-template-columns: 1fr; }
    .locate-grid { grid-template-columns: 1fr; }

    .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.5rem; }
    .services-preview, .page-hero, .page-hero-dark { padding: 3rem 1.5rem; }

    .cta-band { flex-direction: column; padding: 3rem 1.5rem; text-align: center; }

    footer { grid-template-columns: 1fr 1fr; padding: 2.5rem 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.25rem 1.5rem; }

    nav { padding: 0 1.5rem; }

    .adv-container, .revenue-section, .gtm-section,
    .capability-section, .leadership-section, .values-section,
    .about-content-section, .contact-grid-section, .locate-section,
    .intern-section, .application-section, .gallery-section,
    .services-container { padding: 2.5rem 1.5rem; }
    .adv-hero { padding: 3rem 1.5rem; }

    .packages-grid, .revenue-grid { grid-template-columns: repeat(2, 1fr); }
    .adv-grid, .gtm-grid, .offerings-grid, .domains-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .culture-grid { grid-template-columns: 1fr; }

    .packages-section { padding: 2.5rem 1.5rem; }

    .leadership-team-zigzag { padding: 3rem 0; }
    .leader-row {
        grid-template-columns: 1fr;
        gap: 0;
        direction: ltr !important;
        border-bottom: 1px solid var(--line);
    }
    .leader-row.reverse { direction: ltr; }
    .leader-left { padding: 2rem; }
    .leader-right { padding: 2rem; text-align: center; }
    .leader-quote-large { max-width: 100%; margin: 0 auto; text-align: center; padding: 0.5rem; }
    .leader-img-large { width: 160px; height: 160px; }
}

@media (max-width: 640px) {
    .stats-strip { grid-template-columns: 1fr; }
    .packages-grid, .revenue-grid { grid-template-columns: 1fr; }
    .adv-grid, .gtm-grid, .offerings-grid, .domains-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 24px; }
    .app-form-container { padding: 24px; }
    .opening-item { flex-direction: column; gap: 12px; text-align: center; }
    .map-wrapper iframe, .office-image-wrapper img { height: 300px; }
    .leader-img-large { width: 140px; height: 140px; }
    .leader-name-large { font-size: 1.3rem; }
    .leader-quote-large { font-size: 1rem; }
    .leader-left { padding: 1.5rem; }
    .leader-right { padding: 1.5rem; }
    .quote-open, .quote-close { font-size: 2rem !important; }
}
/* ── Q&A Identity Block ── */
.identity-block {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.identity-question {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.identity-answer {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: var(--ink);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ── Home Page Manifesto (Styled like About Page) ── */
.home-manifesto {
    background: var(--ink);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    margin: 2rem 4rem;
    color: var(--cream);
    text-align: center;
}

.home-manifesto-question {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.home-manifesto-answer {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--cream);
    font-style: italic;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.home-manifesto-answer .quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    margin: 0 0.1rem;
    display: inline-block;
    font-family: serif;
    font-style: normal;
}

/* Responsive */
@media (max-width: 991px) {
    .home-manifesto {
        margin: 2rem 1.5rem;
        padding: 2rem 1.5rem;
    }
    .home-manifesto-answer .quote-mark {
        font-size: 2rem;
    }
}