/* ═══════════════════════════════════════════════════════════
   ZADSOL GROUP — Design System v2
   Slate base · Indigo (Software) · Teal (Automation)
   ═══════════════════════════════════════════════════════════ */

:root,
[data-theme="group"] {
  --accent:      #818CF8;
  --accent-dark: #6366F1;
  --accent-light:#C7D2FE;
  --accent-soft: #EEF2FF;
  --accent-glow: rgba(129, 140, 248, 0.2);
  --accent-rgb:  129, 140, 248;
  --hero-grad:   linear-gradient(145deg, #0B1120 0%, #1E1B4B 40%, #0F172A 100%);
}

[data-theme="software"] {
  --accent:      #6366F1;
  --accent-dark: #4338CA;
  --accent-light:#A5B4FC;
  --accent-soft: #EEF2FF;
  --accent-glow: rgba(99, 102, 241, 0.22);
  --accent-rgb:  99, 102, 241;
  --hero-grad:   linear-gradient(145deg, #0B1120 0%, #312E81 50%, #0B1120 100%);
}

[data-theme="automation"] {
  --accent:      #0D9488;
  --accent-dark: #0F766E;
  --accent-light:#5EEAD4;
  --accent-soft: #CCFBF1;
  --accent-glow: rgba(13, 148, 136, 0.22);
  --accent-rgb:  13, 148, 136;
  --hero-grad:   linear-gradient(145deg, #0B1120 0%, #134E4A 50%, #0B1120 100%);
}

:root {
  --bg-deep:     #0B1120;
  --bg-dark:     #111827;
  --bg-surface:  #1F2937;
  --bg-muted:    #F4F6FA;
  --bg-white:    #FFFFFF;
  --text:        #111827;
  --text-secondary: #4B5563;
  --text-muted:  #9CA3AF;
  --text-inverse:#F9FAFB;
  --border:      rgba(17, 24, 39, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   22px;
  --shadow:      0 4px 24px rgba(17, 24, 39, 0.06);
  --shadow-lg:   0 24px 60px rgba(17, 24, 39, 0.12);
  --font-display:'Outfit', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-muted);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────── */
.z-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px); height: 76px;
  background: rgba(11, 17, 32, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}
.z-nav-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.35rem;
  color: var(--text-inverse); letter-spacing: -0.02em;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.z-nav-logo mark {
  background: none; color: var(--accent-light);
  font-weight: 800;
}
.z-nav-logo small {
  font-weight: 400; font-size: 0.85rem;
  color: rgba(255,255,255,0.45); margin-left: 2px;
}
.z-nav-links { display: flex; align-items: center; gap: 2px; }
.z-nav-links a {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none;
  padding: 9px 14px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.z-nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.z-nav-cta {
  margin-left: 10px; padding: 10px 20px;
  background: var(--accent); color: #fff;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius-sm);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.z-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
  background: var(--accent-dark);
}
.z-nav-toggle {
  display: none; background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark); color: #fff;
  font-size: 1.2rem; cursor: pointer;
  padding: 8px 12px; border-radius: var(--radius-sm);
}
.z-nav-mobile {
  display: none; position: absolute; top: 76px; left: 0; right: 0;
  background: var(--bg-dark); border-bottom: 1px solid var(--border-dark);
  padding: 12px 20px; flex-direction: column; gap: 4px;
}
.z-nav-mobile.open { display: flex; }
.z-nav-mobile a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  padding: 12px 14px; font-size: 0.9rem; font-weight: 500;
  border-radius: var(--radius-sm);
}
.z-nav-mobile a:hover { background: rgba(255,255,255,0.05); color: #fff; }

/* ── HERO / COVER ────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--hero-grad);
  color: var(--text-inverse);
  padding: clamp(100px, 14vw, 160px) clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--accent-glow) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 40%, transparent);
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero-inner--center { max-width: 900px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-light);
  margin-bottom: 20px; display: inline-block;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title em { color: var(--accent-light); font-style: normal; }
.hero-desc {
  font-size: 1.05rem; font-weight: 400;
  color: rgba(255,255,255,0.62);
  max-width: 560px; line-height: 1.75;
}
.hero-inner--center .hero-desc { margin: 0 auto 32px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0; }
.hero-inner--center .hero-tags { justify-content: center; }
.hero-tag {
  font-family: var(--font-mono); font-size: 0.68rem;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-inner--center .hero-actions { justify-content: center; }

.cover-nav {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 60px);
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.5rem;
  color: var(--text-inverse); letter-spacing: -0.02em;
}
.logo-mark span { color: var(--accent-light); }
.cover-badge {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.1);
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none; display: inline-flex;
  align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 8px 28px var(--accent-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff; border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); box-shadow: none; }
.btn-outline {
  background: transparent;
  color: var(--accent); border: 1.5px solid rgba(var(--accent-rgb), 0.45);
}
.btn-outline:hover { background: var(--accent-soft); box-shadow: none; }
.btn-sm { padding: 10px 18px; font-size: 0.78rem; }
.btn-white {
  background: #fff; color: var(--accent-dark);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }

/* ── GATEWAY ─────────────────────────────────── */
#gateway-screen {
  position: fixed; inset: 0; z-index: 50;
  overflow-y: auto; background: var(--bg-deep);
  transition: opacity 0.6s ease;
}
#gateway-screen.hidden-gw { opacity: 0; pointer-events: none; }

.gateway-hero {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 60px) clamp(32px, 5vw, 48px);
  text-align: center; position: relative;
}
.gateway-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99,102,241,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(13,148,136,0.12) 0%, transparent 55%);
}
.gateway-hero > * { position: relative; z-index: 1; }
.gateway-brand {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -0.04em; color: #fff; margin-bottom: 16px;
}
.gateway-brand span {
  background: linear-gradient(90deg, #A5B4FC, #5EEAD4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gateway-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.5);
  max-width: 520px; margin: 0 auto;
}

.gateway-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 1060px;
  margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px) clamp(40px, 6vw, 64px);
}
.gateway-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  display: flex; flex-direction: column;
}
.gateway-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
}
.gateway-card--software { --card-accent: 99, 102, 241; }
.gateway-card--software:hover { border-color: rgba(99,102,241,0.4); box-shadow: 0 20px 50px rgba(99,102,241,0.12); }
.gateway-card--automation { --card-accent: 13, 148, 136; }
.gateway-card--automation:hover { border-color: rgba(13,148,136,0.4); box-shadow: 0 20px 50px rgba(13,148,136,0.12); }

.gateway-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; font-weight: 800; margin-bottom: 20px;
}
.gateway-card--software .gateway-card-icon { background: rgba(99,102,241,0.15); }
.gateway-card--automation .gateway-card-icon { background: rgba(13,148,136,0.15); }

.gateway-card-label {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 10px;
}
.gateway-card--software .gateway-card-label { color: #A5B4FC; }
.gateway-card--automation .gateway-card-label { color: #5EEAD4; }

.gateway-card-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.45rem;
  color: #fff; margin-bottom: 12px; letter-spacing: -0.02em;
}
.gateway-card-desc {
  font-size: 0.92rem; color: rgba(255,255,255,0.52);
  line-height: 1.7; flex: 1; margin-bottom: 24px;
}
.gateway-card-actions { display: flex; flex-direction: column; gap: 10px; }
.gateway-card-actions .btn { width: 100%; }

/* ── GATEWAY FOOTER ──────────────────────────── */
.gateway-footer {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid var(--border-dark);
  padding: clamp(40px, 6vw, 56px) clamp(20px, 5vw, 60px) 28px;
}
.gateway-footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px; max-width: 1060px; margin: 0 auto 32px;
}
.gateway-footer-brand {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.5rem; color: #fff; margin-bottom: 12px;
}
.gateway-footer-brand span {
  background: linear-gradient(90deg, #A5B4FC, #5EEAD4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gateway-footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 280px; }
.gateway-footer-col h4 {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 14px;
}
.gateway-footer-col ul { list-style: none; }
.gateway-footer-col li { font-size: 0.85rem; color: rgba(255,255,255,0.45); padding: 4px 0; }
.gateway-footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.gateway-footer-col a:hover { color: #A5B4FC; }
.gateway-footer-bottom {
  max-width: 1060px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.gateway-footer-bottom span {
  font-family: var(--font-mono); font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
}

/* ── SECTIONS ────────────────────────────────── */
.section { padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 60px); }
.section-white { background: var(--bg-white); }
.section-muted { background: var(--bg-muted); }
.section-dark {
  background: var(--bg-dark); color: var(--text-inverse);
}
.section-deep {
  background: var(--bg-deep); color: var(--text-inverse);
}

.section-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 20px; color: var(--text);
}
.section-dark .section-title,
.section-deep .section-title { color: var(--text-inverse); }
.section-title em { color: var(--accent); font-style: normal; }
.section-intro {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 640px; line-height: 1.75;
}
.section-head { margin-bottom: 48px; }
.section-head--row {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 20px;
}

/* ── STATS ───────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 1060px; margin: -40px auto 0;
  padding: 0 clamp(20px, 5vw, 60px);
  position: relative; z-index: 2;
}
.stat-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900; font-size: 2.75rem;
  color: var(--accent); line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* ── CARDS GRID ──────────────────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--accent-rgb), 0.2);
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.card:hover::after { transform: scaleX(1); }

.card-num {
  font-family: var(--font-display);
  font-weight: 900; font-size: 2.75rem;
  color: var(--accent); line-height: 1;
  margin-bottom: 12px; letter-spacing: -0.03em;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  color: var(--text); margin-bottom: 12px;
}
.card-list { list-style: none; font-size: 0.85rem; color: var(--text-secondary); }
.card-list li { padding: 5px 0; padding-left: 16px; position: relative; }
.card-list li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}

/* VM cards */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.vm-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.vm-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.vm-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.vm-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

/* Project cards */
.project-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-icon {
  font-size: 2.25rem; font-weight: 800;
  margin-bottom: 16px; line-height: 1;
}
.project-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
  margin-bottom: 10px; color: var(--text);
}
.project-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.scope-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.scope-tag {
  font-size: 0.68rem; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-dark);
}

/* Why cards */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  transition: background 0.25s, border-color 0.25s;
}
.why-card:hover {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.25);
}
.why-icon {
  font-size: 1.85rem; font-weight: 800;
  margin-bottom: 12px; line-height: 1;
}
.why-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff; margin-bottom: 8px;
}
.why-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.55; }

/* Industries */
.industries-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.industry-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 0.82rem; font-weight: 500;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}
.chip.active {
  background: var(--accent); border-color: var(--accent);
  color: #fff; font-weight: 600;
}

/* Expertise */
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.expertise-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, background 0.25s;
}
.expertise-block:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.06);
}
.expertise-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff; margin-bottom: 16px;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-family: var(--font-mono); font-size: 0.68rem;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  color: var(--accent-light);
}
.expertise-list { list-style: none; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.expertise-list li { padding: 6px 0; padding-left: 18px; position: relative; }
.expertise-list li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-light);
}

/* ── CONTACT ─────────────────────────────────── */
.contact-split {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 24px; max-width: 1060px; margin: 0 auto;
}
.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-panel {
  background: var(--hero-grad);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  color: #fff; display: flex; flex-direction: column; justify-content: space-between;
}
.contact-panel-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1; margin-bottom: 32px;
}
.contact-panel-title em { color: var(--accent-light); font-style: normal; }
.contact-item { margin-bottom: 22px; }
.contact-item-label {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 4px;
}
.contact-item-val { font-size: 0.95rem; color: rgba(255,255,255,0.85); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text); background: var(--bg-muted);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-input:focus {
  outline: none; border-color: var(--accent);
  background: #fff; box-shadow: 0 0 0 3px var(--accent-glow);
}
textarea.form-input { resize: vertical; min-height: 120px; }

.contact-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-duo-main {
  background: var(--bg-surface);
  padding: clamp(40px, 5vw, 56px);
  color: #fff;
}
.contact-duo-side {
  background: var(--bg-deep);
  padding: clamp(40px, 5vw, 56px);
  color: #fff;
}
.commitment-quote {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.25rem;
  line-height: 1.4; margin-bottom: 24px;
  padding-left: 20px; border-left: 3px solid var(--accent);
}
.commitment-list { list-style: none; }
.commitment-list li {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  padding: 10px 0; border-bottom: 1px solid var(--border-dark);
  display: flex; align-items: center; gap: 10px;
}
.commitment-list li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}

/* ── PROFILE NAV ─────────────────────────────── */
.profile-nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 60px);
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}
.profile-nav a {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none;
  padding: 8px 14px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.profile-nav a:hover { color: var(--accent-light); border-color: rgba(var(--accent-rgb), 0.3); background: rgba(var(--accent-rgb), 0.08); }
.profile-nav-links { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── FOOTERS ─────────────────────────────────── */
.page-footer {
  background: var(--bg-deep);
  padding: 24px clamp(20px, 5vw, 60px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--border-dark);
}
.page-footer span {
  font-family: var(--font-mono); font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
}
.page-footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
.page-footer a:hover { color: var(--accent-light); }

/* ── PLATFORM / MISC ─────────────────────────── */
.platform-section { display: none; }
.platform-section.active { display: block; }
.floating-back {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  display: none; align-items: center; gap: 8px;
  background: var(--bg-dark); color: #fff;
  border: 1px solid var(--border-dark);
  padding: 14px 20px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.82rem; text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s, border-color 0.2s;
}
.floating-back.visible { display: flex; }
.floating-back:hover { transform: translateY(-2px); border-color: rgba(var(--accent-rgb), 0.4); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background: rgba(11, 17, 32, 0.75); backdrop-filter: blur(8px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; max-width: 400px; width: 90%;
  text-align: center; box-shadow: var(--shadow-lg);
}
.modal-box h3 {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.5rem; margin-bottom: 10px;
}
.modal-box p { color: var(--text-secondary); margin-bottom: 24px; }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .z-nav-links, .z-nav-cta { display: none; }
  .z-nav-toggle { display: block; }
  .gateway-cards, .vm-grid, .cards-grid, .cards-grid--4,
  .cards-grid--2, .projects-grid, .contact-split,
  .contact-duo, .industries-layout, .expertise-grid,
  .why-grid, .stats-row, .gateway-footer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { margin-top: 0; }
}

.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 960px) { .projects-grid { grid-template-columns: 1fr; } }
