/* BASE CSS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b2a;
  --navy2: #1a2e42;
  --brand: #052959;
  --brand-hover: #041f44;
  --text: #1a1a2e;
  --text-muted: #5a6474;
  --text-light: #8892a0;
  --bg: #ffffff;
  --bg2: #f7f9fc;
  --bg3: #eef2f7;
  --border: #dde3ec;
  --gold: #f5a623;
  --radius: 6px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); font-size: 15px; line-height: 1.6; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--brand);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.9rem; height: 58px;
}
.nav-logo {
  display: inline-flex; align-items: center; justify-content: flex-start;
  height: 58px; width: 142px; flex-shrink: 0;
}
.nav-logo img {
  width: auto; height: 40px; max-width: 142px; object-fit: contain;
}
.nav-logo .logo-dark { display: none; }
.site-nav.nav-light .logo-light { display: none; }
.site-nav.nav-light .logo-dark { display: block; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a {
  color: rgba(255,255,255,0.92); font-size: 15px; font-weight: 600;
  padding: 0 18px; height: 58px; display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; border-color: rgba(255,255,255,0.95); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-icons { display: none; gap: 16px; }
.nav-icons svg { width: 24px; height: 24px; fill: none; stroke: rgba(255,255,255,0.86); stroke-width: 1.9; cursor: pointer; transition: stroke 0.15s; }
.nav-icons svg:hover { stroke: #fff; }
.btn-ai {
  background: transparent;
  color: #fff; font-size: 14px; font-weight: 400;
  padding: 9px 20px; border-radius: 999px; border: 2px solid #ffffff; cursor: pointer;
  display: flex; align-items: center; gap: 10px; transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  animation: nsbaAiBorderPulse 4s ease-in-out infinite;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}
.btn-ai:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18), inset 0 0 0 1px rgba(255,255,255,0.24);
}
.btn-ai-dot {
  display: none;
}
.btn-ai-dot::before,
.btn-ai-dot::after {
  content: ''; position: absolute; left: 50%; top: 50%; width: 16px; height: 2px;
  background: linear-gradient(90deg, #ffffff, #dbe6f4); border-radius: 2px; transform: translate(-50%, -50%) rotate(45deg);
}
.btn-ai-dot::after { transform: translate(-50%, -50%) rotate(-45deg); width: 10px; }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy2);
  min-height: 440px; display: flex; align-items: center;
}
.hero-slider {
  isolation: isolate;
  background: #061a33;
}
.hero-slide {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 5.5s ease;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,41,89,0.98) 0%, rgba(5,41,89,0.82) 34%, rgba(5,41,89,0.2) 68%, rgba(5,41,89,0.08) 100%),
    linear-gradient(180deg, rgba(5,41,89,0.1) 0%, rgba(5,41,89,0.42) 100%);
  z-index: 1;
}
.hero-slider .hero-bg,
.hero-slider .hero-cloud {
  display: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #0d1b2a 0%, var(--brand-hover) 40%, var(--brand) 70%, #021f46 100%);
}
.hero-cloud {
  position: absolute; bottom: 0; right: 0; width: 65%;
  height: 100%; overflow: hidden;
}
.cloud-shape {
  position: absolute; bottom: -30px; right: -20px;
  width: 110%; height: 280px;
  background: linear-gradient(180deg, rgba(150,200,255,0.15) 0%, rgba(80,150,220,0.25) 100%);
  border-radius: 60% 40% 0 0 / 50% 60% 0 0;
}
.hero-content { position: relative; z-index: 2; padding: 3.5rem 2rem 3.5rem 3rem; max-width: 520px; }
.hero-tag { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.hero h1 { color: #fff; font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.5px; }
.hero p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 380px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; font-size: 13.5px; font-weight: 600;
  padding: 10px 22px; border-radius: var(--radius); border: none; cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--brand-hover); }
.hero-dots { display: flex; gap: 8px; margin-top: 28px; }
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.28);
  border: 0; cursor: pointer; padding: 0; transition: background 0.18s, transform 0.18s;
}
.hero-dot:hover { background: rgba(255,255,255,0.65); transform: scale(1.18); }
.hero-dot.active { background: #fff; }

/* GARTNER BANNER */
.gartner-banner {
  background: var(--navy); color: #fff;
  padding: 18px 3rem; display: flex; align-items: center; gap: 2rem;
}
.gartner-logo { display: flex; flex-direction: column; }
.gartner-logo .g1 { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }
.gartner-logo .g2 { font-size: 18px; font-weight: 700; color: #fff; }
.gartner-logo .g2 span { color: #ffffff; }
.gartner-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.star { color: var(--gold); font-size: 14px; }
.gartner-text { font-size: 13px; color: rgba(255,255,255,0.75); }
.gartner-link { color: #ffffff; font-size: 13px; cursor: pointer; }
.gartner-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* SECTIONS */
.section { padding: 5rem 3rem; }
.section-center { text-align: center; }
.section h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 14px; line-height: 1.7; max-width: 620px; margin: 0 auto 2.5rem; }

/* HOME RICH SECTIONS */
.home-capabilities {
  padding: 5rem 3rem 4.5rem;
  background: #ffffff;
}
.home-section-head {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
}
.home-section-head span,
.home-story-copy > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.home-section-head h2,
.home-story-copy h2 {
  color: var(--text);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.home-section-head p,
.home-story-copy p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}
.home-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.home-capability-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.home-capability-card:hover {
  transform: translateY(-3px);
  border-color: rgba(5,41,89,0.34);
  box-shadow: 0 18px 42px rgba(5,41,89,0.12);
}
.home-capability-media {
  height: 150px;
  overflow: hidden;
  background: var(--bg3);
}
.home-capability-media img,
.home-highlight-card img,
.home-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-capability-body {
  padding: 18px 18px 20px;
  text-align: left;
}
.home-capability-body h3,
.home-highlight-card h3,
.home-story-points h3 {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
}
.home-capability-body p,
.home-highlight-card p,
.home-story-points p {
  color: var(--text-muted);
  font-size: 12.8px;
  line-height: 1.65;
}
.home-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 3rem;
  align-items: center;
  padding: 5rem 3rem;
  background: var(--bg2);
}
.home-story-media {
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(5,41,89,0.14);
}
.home-story-copy {
  max-width: 560px;
}
.home-story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.home-story-points div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}
.home-story-points strong {
  display: inline-flex;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
}
.home-highlights {
  padding: 5rem 3rem;
  background: var(--navy);
}
.home-highlights .home-section-head h2 {
  color: #fff;
}
.home-highlights .home-section-head p {
  color: rgba(255,255,255,0.62);
}
.home-highlights .home-section-head span {
  color: rgba(255,255,255,0.74);
}
.home-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.home-highlight-card {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #1c2b3a;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.home-highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.28);
}
.home-highlight-card img {
  height: 150px;
  opacity: 0.82;
}
.home-highlight-card div {
  padding: 18px;
}
.home-highlight-card h3 {
  color: #fff;
  font-size: 15px;
}
.home-highlight-card p {
  color: rgba(255,255,255,0.64);
  font-size: 13px;
}
.home-card-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.home-pathways {
  padding: 5rem 3rem;
  background: #fff;
}
.home-pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.home-pathway-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,249,252,0.96)),
    radial-gradient(circle at 20% 10%, rgba(5,41,89,0.12), transparent 34%);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.home-pathway-card:hover {
  transform: translateY(-3px);
  border-color: rgba(5,41,89,0.32);
  box-shadow: 0 18px 42px rgba(5,41,89,0.1);
}
.home-pathway-card strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}
.home-pathway-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}
.home-consultation {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 3rem;
  align-items: start;
  padding: 5rem 3rem;
  background: var(--bg2);
}
.home-consultation-copy {
  max-width: 560px;
}
.home-consultation-copy > span,
.home-cta span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.home-consultation-copy h2,
.home-cta h2 {
  color: var(--text);
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.home-consultation-copy p,
.home-cta p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}
.home-consultation-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.home-consultation-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.home-consultation-list strong {
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}
.home-consultation-list span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}
.home-booking-form {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(5,41,89,0.1);
}
.home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4.5rem 3rem;
  background:
    linear-gradient(90deg, rgba(5,41,89,0.98), rgba(4,31,68,0.9)),
    url('assets/home-idea-to-launch.png') center/cover;
}
.home-cta > div:first-child {
  max-width: 720px;
}
.home-cta span,
.home-cta h2 {
  color: #fff;
}
.home-cta p {
  color: rgba(255,255,255,0.72);
}
.home-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* TABS */
.tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 2.5rem; }
.tab {
  padding: 7px 20px; border-radius: 100px; font-size: 13.5px; font-weight: 500;
  cursor: pointer; border: 1.5px solid var(--border); background: transparent;
  color: var(--text-muted); transition: all 0.15s;
}
.tab.active { background: var(--text); color: #fff; border-color: var(--text); }
.tab:hover:not(.active) { border-color: #bbb; color: var(--text); }

/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--bg2); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); cursor: pointer; transition: border-color 0.15s;
}
.product-card:hover { border-color: var(--brand); }
.product-img {
  width: 100%; height: 150px; display: flex; align-items: center; justify-content: center;
  background: var(--bg3); overflow: hidden;
}
.prod-visual { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-label { padding: 14px 16px; font-size: 13.5px; font-weight: 600; color: var(--text); }
.product-img svg { width: 100%; height: 100%; }

/* NAS illustration */
.nas-box { width: 65px; height: 85px; background: #1e2d3d; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nas-slot { width: 50px; height: 10px; background: #2c3e50; border-radius: 3px; border: 1px solid #3a4f60; display: flex; align-items: center; padding: 0 4px; gap: 3px; }
.nas-slot-led { width: 5px; height: 5px; border-radius: 50%; background: #26a65b; }
.nas-bottom { width: 50px; height: 14px; background: #2c3e50; border-radius: 3px; margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.nas-btn { width: 8px; height: 8px; border-radius: 50%; background: #3a4f60; }
.monitor-icon { position: relative; }
.monitor-screen { width: 70px; height: 46px; background: #1e2d3d; border-radius: 4px; border: 3px solid #2c3e50; overflow: hidden; }
.monitor-rows { display: flex; flex-direction: column; gap: 4px; padding: 6px; }
.monitor-row { height: 5px; background: var(--brand); border-radius: 2px; opacity: 0.7; }
.monitor-stand { width: 20px; height: 10px; background: #2c3e50; margin: 0 auto; }
.monitor-base { width: 35px; height: 4px; background: #2c3e50; margin: 0 auto; border-radius: 2px; }

/* AI ADVISOR */
.ai-section {
  background: linear-gradient(135deg, #fff8f0 0%, #f0f4ff 100%);
  padding: 5rem 3rem; text-align: center;
}
.ai-icon {
  width: 52px; height: 52px; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.ai-icon svg { width: 28px; height: 28px; fill: #fff; }
.ai-search {
  max-width: 520px; margin: 0 auto 1rem;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 100px;
  padding: 10px 16px 10px 20px;
}
.ai-search input {
  flex: 1; border: none; outline: none; font-size: 14px; color: var(--text); font-family: 'Inter', sans-serif;
  background: transparent;
}
.ai-toggle {
  width: 36px; height: 20px; border-radius: 100px; background: var(--brand);
  position: relative; cursor: pointer; flex-shrink: 0;
}
.ai-toggle::after {
  content: ''; position: absolute; right: 3px; top: 3px;
  width: 14px; height: 14px; border-radius: 50%; background: #fff;
}
.ai-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 560px; margin: 0 auto 2rem; }
.chip {
  padding: 6px 14px; background: rgba(255,255,255,0.85); border: 1px solid var(--border);
  border-radius: 100px; font-size: 12.5px; color: var(--text-muted); cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.ai-disclaimer { font-size: 11.5px; color: var(--text-light); }
.ai-disclaimer a { color: var(--brand); }

/* CUSTOMERS */
.customers-section { padding: 5rem 3rem; text-align: center; }
.customers-section h2 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.customers-section p { color: var(--text-muted); font-size: 14px; max-width: 580px; margin: 0 auto 3rem; }
.logo-strip {
  display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.logo-item {
  display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700;
  color: var(--text-muted); letter-spacing: -0.2px;
}
.logo-item .dot { width: 10px; height: 10px; border-radius: 50%; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border: 1.5px solid var(--brand); border-radius: 100px;
  color: var(--brand); font-size: 13.5px; font-weight: 600; cursor: pointer;
  background: transparent; transition: all 0.15s;
}
.btn-outline:hover { background: var(--brand); color: #fff; }

/* LATEST */
.latest-section { background: var(--navy); padding: 5rem 3rem; }
.latest-section h2 { color: #fff; font-size: 26px; font-weight: 700; text-align: center; margin-bottom: 2.5rem; }
.latest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.latest-card {
  background: #1c2b3a; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07); cursor: pointer; transition: border-color 0.15s;
}
.latest-card:hover { border-color: var(--brand); }
.latest-img {
  width: 100%; height: 130px; background: #243447;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.latest-img-label {
  position: absolute; top: 10px; left: 10px;
  background: var(--brand); color: #fff; font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 4px;
}
.latest-img-icon { font-size: 36px; }
.latest-body { padding: 14px 16px; }
.latest-title { color: #fff; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.latest-desc { color: rgba(255,255,255,0.55); font-size: 12.5px; line-height: 1.6; }

/* TOOLS ROW */
.tools-section {
  padding: 5rem 3rem;
  background:
    linear-gradient(180deg, rgba(247,249,252,0.96), #ffffff 70%),
    radial-gradient(circle at 18% 10%, rgba(5,41,89,0.1), transparent 28%);
  border-bottom: 1px solid var(--border);
}
.tools-head {
  margin-bottom: 2rem;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.tool-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  min-height: 190px;
  padding: 22px;
  align-items: start;
  cursor: pointer;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.tool-item::after {
  content: '';
  position: absolute;
  right: -34px;
  top: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(5,41,89,0.06);
  transition: transform 0.18s ease, background 0.18s ease;
}
.tool-item:hover {
  transform: translateY(-3px);
  border-color: rgba(5,41,89,0.28);
  box-shadow: 0 18px 42px rgba(5,41,89,0.1);
}
.tool-item:hover::after {
  transform: scale(1.18);
  background: rgba(5,41,89,0.1);
}
.tool-circle {
  position: relative;
  z-index: 1;
  width: 58px; height: 58px; border-radius: 16px;
  background: rgba(5,41,89,0.08); border: 1px solid rgba(5,41,89,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  color: var(--brand);
}
.tool-circle svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tool-copy {
  position: relative;
  z-index: 1;
}
.tool-item:hover .tool-circle { border-color: var(--brand); background: var(--brand); color: #fff; }
.tool-label {
  font-size: 15px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}
.tool-copy p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.tool-copy span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

/* FOOTER */
footer { background: #fff; padding: 3rem; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.footer-col a { display: block; font-size: 12.5px; color: var(--text-muted); margin-bottom: 9px; transition: color 0.12s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: var(--text-light); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 12px; color: var(--text-light); transition: color 0.12s; }
.footer-links a:hover { color: var(--brand); }
.social-icons { display: flex; gap: 14px; }
.social-icon {
  width: 30px; height: 30px; border-radius: 50%; background: var(--bg2);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-muted); cursor: pointer; transition: all 0.15s;
}
.social-icon:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.mobile-app-nav { display: none; }

/* BASE RESPONSIVE */
@media (max-width: 900px) {
  .home-capability-grid,
  .home-highlight-grid,
  .home-pathway-grid,
  .services-showcase-grid,
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-story,
  .home-consultation,
  .service-model { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}


/* ADDITIONS FOR INNER PAGES */

/* Page banner (inner hero, same gradient, no cloud visual) */
.page-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #0d1b2a 0%, var(--brand-hover) 40%, var(--brand) 70%, #021f46 100%);
  padding: 4rem 3rem; text-align: center;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,41,89,0.95), rgba(5,41,89,0.68), rgba(5,41,89,0.28)),
    url('assets/hero-ai-ventures.png') center/cover;
  opacity: 0.62;
}
.page-banner::after {
  content: ''; position: absolute; inset: auto 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}
.page-banner-tag,
.page-banner h1,
.page-banner p { position: relative; z-index: 1; }
.page-banner-tag { font-size: 11px; color: rgba(255,255,255,0.58); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.page-banner h1 { color: #fff; font-size: 36px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; }
.page-banner p { color: rgba(255,255,255,0.76); font-size: 14px; max-width: 680px; margin: 0 auto; line-height: 1.7; }

/* Product card description (used in services page) */
.product-desc { padding: 0 16px 14px; font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }
.product-more { display: block; padding: 0 16px 14px; font-size: 12.5px; font-weight: 600; color: var(--brand); }

/* Services page refresh */
.services-showcase {
  padding: 5rem 3rem;
  background: #fff;
}
.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-feature-card {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.service-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(5,41,89,0.34);
  box-shadow: 0 18px 42px rgba(5,41,89,0.12);
}
.service-feature-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}
.service-feature-card div {
  padding: 18px;
}
.service-feature-card span,
.service-model-copy > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-feature-card h3,
.service-model-copy h2 {
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
}
.service-feature-card p,
.service-model-copy p,
.service-model-card p,
.industry-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}
.service-model {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 3rem;
  background: var(--bg2);
}
.service-model-copy h2 {
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.4px;
}
.service-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-model-card {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.service-model-card strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}
.services-industries {
  padding: 5rem 3rem;
  background: #fff;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.industry-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(5,41,89,0.34);
  box-shadow: 0 18px 42px rgba(5,41,89,0.1);
}
.industry-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,41,89,0.08);
  color: var(--brand);
}
.industry-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-card strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

/* Section bg-alt */
.section-alt { background: var(--bg2); }

/* CTA band */
.cta-band { background: linear-gradient(90deg, var(--brand) 0%, var(--brand-hover) 100%); padding: 3.5rem 3rem; text-align: center; }
.cta-band h2 { color: #fff; font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 22px; }
.btn-ghost-w,
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 100px;
  color: #fff; font-size: 13.5px; font-weight: 600; cursor: pointer;
  background: transparent; transition: all 0.15s;
}
.btn-ghost-w:hover,
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Venture section (dark, mirrors latest-section) */
.venture-section { background: var(--navy); padding: 5rem 3rem; }
.venture-section h2 { color: #fff; font-size: 26px; font-weight: 700; text-align: center; margin-bottom: 10px; }
.venture-section .section-sub { color: rgba(255,255,255,0.55); text-align: center; }
.venture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.venture-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg); padding: 20px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.venture-card:hover { border-color: rgba(5,41,89,0.42); background: rgba(5,41,89,0.07); }
.venture-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 20px; }
.venture-name { color: #fff; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.venture-tag { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 4px; display: inline-block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.venture-desc { color: rgba(255,255,255,0.48); font-size: 12.5px; line-height: 1.6; }
.venture-status { display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 600; }
.venture-status-dot { width: 6px; height: 6px; border-radius: 50%; }

/* Full ventures page */
.venture-hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap; }
.v-stat { text-align: center; }
.v-stat-num { font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.v-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.ventures-section { background: var(--navy); padding: 5.5rem 3.5rem; }
.ventures-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1180px; margin: 0 auto; }
.venture-full-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg); padding: 22px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.venture-full-card:hover { border-color: rgba(5,41,89,0.42); background: rgba(5,41,89,0.07); }
.sector-nav { display: flex; justify-content: center; gap: 8px; margin-bottom: 3rem; flex-wrap: wrap; }
.sector-btn {
  padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15); background: transparent; color: rgba(255,255,255,0.6);
  transition: all 0.15s;
}
.sector-btn:hover,
.sector-btn.active { background: rgba(5,41,89,0.16); border-color: rgba(5,41,89,0.42); color: #ffffff; }
.invest-section { padding: 5rem 3.5rem; }
.invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.invest-text h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 14px; }
.invest-text p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.invest-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.invest-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.invest-points li::before { content: '\2713'; color: var(--brand); font-weight: 700; flex-shrink: 0; }
.invest-card-preview {
  background: linear-gradient(135deg,#070e1c,#0d1635);
  border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Plans grid (pricing) */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.plan-card { background: var(--bg); border-radius: var(--radius-lg); padding: 28px; border: 1.5px solid var(--border); position: relative; }
.plan-card.featured { border-color: var(--brand); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-size: 11.5px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.plan-price { font-size: 36px; font-weight: 700; color: var(--text); letter-spacing: -1px; margin-bottom: 4px; }
.plan-price sup { font-size: 18px; vertical-align: top; margin-top: 6px; display: inline-block; }
.plan-price small { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.plan-period { font-size: 12px; color: var(--text-light); margin-bottom: 20px; }
.plan-features { list-style: none; margin-bottom: 22px; }
.plan-features li { font-size: 13px; color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid var(--bg3); display: flex; align-items: center; gap: 8px; }
.plan-features li:last-child { border-bottom: none; }
.plan-check { color: #26a65b; font-size: 14px; flex-shrink: 0; }

/* Stats row (about page) */
.stats-row { background: var(--navy); color: #fff; display: flex; }
.stat-item { flex: 1; padding: 2rem 2.5rem; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 30px; font-weight: 700; color: #fff; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* About page */
.mission-section { padding: 5.5rem 3.5rem; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.mission-text h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; }
.mission-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.mission-visual {
  background: linear-gradient(135deg, #08111f, #0d1e38);
  border-radius: var(--radius-lg); padding: 36px; border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 16px;
}
.mission-visual-label { font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; }
.mission-visual-title { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.3; }
.mission-visual-sub { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.mission-visual-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.mv-stat { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 14px; border: 1px solid rgba(255,255,255,0.07); }
.mv-stat-num { font-size: 22px; font-weight: 800; color: #fff; }
.mv-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.about-stats-row {
  background: var(--navy); padding: 3rem 3.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.about-stat { padding: 1.5rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.about-stat:last-child { border-right: none; }
.about-stat-num { font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 6px; }
.about-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.location-section { padding: 5.5rem 3.5rem; background: var(--bg2); }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; max-width: 1000px; margin: 0 auto; }
.location-card {
  background: var(--navy); border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.location-flag { font-size: 13px; font-weight: 700; letter-spacing: 1px; color: #ffffff; text-transform: uppercase; }
.location-name { color: #fff; font-size: 20px; font-weight: 800; }
.location-address { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; }
.location-detail { display: flex; align-items: center; gap: 10px; }
.location-detail svg { width: 16px; height: 16px; fill: none; stroke: #ffffff; stroke-width: 1.8; flex-shrink: 0; }
.location-detail span { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.location-map-placeholder {
  background: linear-gradient(135deg, #0d1e38, #132840);
  border-radius: var(--radius-lg); height: 280px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.location-map-placeholder svg { width: 48px; height: 48px; fill: none; stroke: rgba(5,41,89,0.42); stroke-width: 1.5; }
.location-map-placeholder span { font-size: 14px; color: rgba(255,255,255,0.4); }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.team-card { background: var(--bg2); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); text-align: center; transition: border-color 0.15s; }
.team-card:hover { border-color: var(--brand); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; color: #fff; }
.team-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.team-bio { font-size: 12.5px; color: var(--text-light); line-height: 1.6; }

/* Value cards */
.value-grid,
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: var(--bg2); border-radius: var(--radius-lg); padding: 26px 20px; border: 1px solid var(--border); text-align: center; }
.value-icon { font-size: 14px; font-weight: 800; color: var(--brand); margin-bottom: 12px; letter-spacing: 0.6px; }
.value-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.value-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* Contact */
.contact-section { padding: 5.5rem 3.5rem; }
.contact-wrapper { max-width: 1100px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field,
.field { display: flex; flex-direction: column; gap: 6px; }
.form-field label,
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-field input, .form-field select, .form-field textarea,
.field input, .field select, .field textarea {
  padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--text); font-family: 'Inter', sans-serif;
  background: var(--bg); transition: border-color 0.15s; outline: none; resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus,
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); }
.form-field select,
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%235a6474' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
.form-row-2,
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { padding: 13px 32px; background: var(--brand); color: #fff; border: none; border-radius: var(--radius); font-size: 14.5px; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.15s; width: 100%; }
.form-submit:hover { background: var(--brand-hover); }
.success-note { display: none; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: var(--radius); padding: 14px 18px; color: #065f46; font-size: 14px; font-weight: 500; margin-top: 8px; }
.contact-info { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 24px; }
.contact-info h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.contact-info p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.contact-detail-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--bg2); border-radius: var(--radius-lg); padding: 22px; border: 1px solid var(--border); margin-bottom: 14px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; }
.contact-detail-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(5,41,89,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 17px; height: 17px; fill: none; stroke: var(--brand); stroke-width: 1.8; }
.contact-detail-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-detail-text span { font-size: 13px; color: var(--text-muted); }
.quick-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.quick-link {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer;
  transition: all 0.15s;
}
.quick-link:hover { border-color: var(--brand); color: var(--brand); background: rgba(5,41,89,0.04); }
.quick-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }

/* FAQ */
.faq-section { padding: 5rem 3.5rem; background: var(--bg2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--bg); border-radius: var(--radius-lg); padding: 22px 24px; border: 1px solid var(--border); }
.faq-q { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.faq-a { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* RESPONSIVE ADDITIONS */
@media (max-width: 900px) {
  .venture-grid { grid-template-columns: repeat(2, 1fr); }
  .ventures-full-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .mission-grid { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .location-grid { grid-template-columns: 1fr; }
  .invest-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .value-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 28px; }
}
@media (max-width: 600px) {
  .venture-grid { grid-template-columns: 1fr; }
  .ventures-full-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .value-grid, .values-grid { grid-template-columns: 1fr; }
  .form-row-2, .form-row { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 24px; }
  .tools-grid { grid-template-columns: 1fr; }
  .tool-item { grid-template-columns: 52px minmax(0, 1fr); min-height: 0; padding: 18px; }
  .tool-circle { width: 52px; height: 52px; border-radius: 14px; }
  .section, .mission-section, .location-section, .invest-section, .contact-section, .faq-section, .ventures-section { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* SHARED MEGA NAV + PAGE SYSTEM */
.site-nav { position: sticky; top: 0; z-index: 1000; background: var(--brand); box-shadow: 0 1px 0 rgba(255,255,255,0.08); }
.site-nav.nav-light { background: #fff; box-shadow: 0 1px 0 rgba(13,27,42,0.08); }
.site-nav.nav-light .nav-item > a { color: var(--text); }
.site-nav.nav-light .nav-item > a:hover,
.site-nav.nav-light .nav-item > a.active,
.site-nav.nav-light .nav-item:focus-within > a { color: var(--brand); }
.site-nav.nav-light .btn-ai { color: var(--text); border-color: transparent; }
.site-nav.nav-light .nav-toggle { border-color: rgba(13,27,42,0.18); }
.site-nav.nav-light .nav-toggle span { background: rgba(13,27,42,0.8); }
.nav-links { height: 100%; }
.nav-item { height: 58px; display: flex; align-items: center; }
.nav-item > a {
  color: rgba(255,255,255,0.92); font-size: 15px; font-weight: 600;
  padding: 0 18px; height: 58px; display: flex; align-items: center;
  border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s;
}
.nav-item > a:hover,
.nav-item > a.active,
.nav-item:focus-within > a { color: #fff; border-color: rgba(255,255,255,0.95); }
.mega-menu {
  position: absolute; left: 0; right: 0; top: 58px;
  background: #fff; border-top: 1px solid rgba(13,27,42,0.08);
  box-shadow: 0 18px 34px rgba(13,27,42,0.12);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner {
  width: 100%; max-width: none; margin: 0; padding: 34px 5vw 34px 12vw;
  display: grid; grid-template-columns: minmax(220px, 0.7fr) minmax(520px, 1.6fr) minmax(280px, 0.8fr); gap: 34px;
  min-height: 430px;
}
.mega-inner > div:first-child {
  border-right: 1px solid #dde3ec; padding-right: 28px;
}
.mega-inner > div:first-child::after {
  content: 'Explore NSBA offerings, solutions, resources, and contact paths from one full-width menu.';
  display: block; margin-top: 28px; padding-top: 22px; border-top: 1px solid #dde3ec;
  color: var(--text-light); font-size: 13px; line-height: 1.7;
}
.mega-inner::after {
  content: 'NSBA Studio\A Creative, digital, and AI venture pathways tailored for UAE and Qatar teams.';
  white-space: pre-line; align-self: stretch;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px; padding: 28px;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.02), rgba(13,27,42,0.72)),
    linear-gradient(135deg, #0d1b2a 0%, var(--brand) 46%, var(--brand) 100%);
  color: #fff; border-radius: var(--radius-lg);
  font-size: 14px; line-height: 1.65; font-weight: 500;
}
.mega-kicker { color: var(--brand); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.mega-title { color: var(--text); font-size: 24px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.mega-desc { color: var(--text-muted); font-size: 14px; line-height: 1.75; }
.mega-grid { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 0 42px; align-content: start; }
.mega-link {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 12px 10px; border-radius: 0;
  color: var(--text); font-size: 15px; font-weight: 700;
  border: 0; border-bottom: 1px solid #dde3ec; transition: color 0.15s, background 0.15s, padding-left 0.15s;
}
.nav-links .mega-link,
.nav-links .mega-link.active {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px;
  height: auto; min-height: 0; padding: 12px 10px;
  color: var(--text); font-size: 15px; font-weight: 700; line-height: 1.35;
  border: 0; border-bottom: 1px solid #dde3ec;
}
.mega-link small,
.nav-links .mega-link small { display: block; width: 100%; color: var(--text-muted); font-size: 13px; font-weight: 400; margin-top: 0; line-height: 1.55; text-align: left; }
.mega-link:hover,
.mega-link:focus-visible { background: #f7f9fc; color: var(--brand); padding-left: 16px; outline: none; }
.nav-links .mega-link:hover,
.nav-links .mega-link:focus-visible { color: var(--brand); }
.mega-link:hover small,
.mega-link:focus-visible small { color: #4a5568; }
.nav-toggle {
  display: none; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); background: transparent; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 18px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: transform 0.18s, opacity 0.18s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.template-section { padding: 5rem 3rem; }
.template-wrap { max-width: 1120px; margin: 0 auto; }
.rich-page-section { background: #fff; }
.rich-intro {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 3rem; align-items: center; margin-bottom: 4rem;
}
.rich-intro h2,
.rich-section-title {
  font-size: 28px; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 12px; color: var(--text);
}
.rich-section-title { text-align: center; margin-bottom: 14px; }
.rich-intro p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 14px; }
.rich-visual {
  position: relative; min-height: 280px; border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 72% 22%, rgba(245,166,35,0.24), transparent 26%),
    linear-gradient(135deg, #061a33 0%, var(--brand) 58%, #0d1b2a 100%);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
}
.rich-visual::before,
.rich-visual::after {
  content: ''; position: absolute; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%; inset: 44px; transform: rotate(-12deg);
}
.rich-visual::after { inset: 88px 64px; opacity: 0.5; transform: rotate(18deg); }
.rich-visual-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 86px; height: 86px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 20px; font-weight: 800;
  border: 1px solid rgba(255,255,255,0.24); box-shadow: 0 18px 46px rgba(0,0,0,0.22);
}
.rich-visual span {
  position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #f5a623;
  box-shadow: 0 0 0 9px rgba(245,166,35,0.1);
}
.rich-visual span:nth-child(2) { left: 20%; top: 28%; }
.rich-visual span:nth-child(3) { right: 18%; top: 36%; background: #8fd8ff; box-shadow: 0 0 0 9px rgba(143,216,255,0.1); }
.rich-visual span:nth-child(4) { left: 28%; bottom: 22%; background: #fff; box-shadow: 0 0 0 9px rgba(255,255,255,0.08); }
.rich-visual span:nth-child(5) { right: 28%; bottom: 18%; }
.rich-image-panel {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(5,41,89,0.12);
  background: var(--navy);
}
.rich-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}
.rich-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,41,89,0.05), rgba(5,41,89,0.42));
}
.rich-image-panel figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(5,41,89,0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.template-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.template-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.template-card:hover,
.product-card:hover,
.latest-card:hover,
.venture-full-card:hover,
.team-card:hover,
.value-card:hover {
  transform: translateY(-4px); box-shadow: 0 14px 34px rgba(13,27,42,0.12);
}
.template-eyebrow { color: var(--brand); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.template-card h3 { font-size: 17px; line-height: 1.35; margin-bottom: 8px; color: var(--text); }
.template-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.rich-card { position: relative; overflow: hidden; padding-top: 62px; }
.rich-card::after {
  content: ''; position: absolute; right: -30px; top: -30px; width: 90px; height: 90px;
  border-radius: 50%; background: rgba(5,41,89,0.06);
}
.rich-icon {
  position: absolute; top: 20px; left: 20px;
  width: 34px; height: 34px; border-radius: 9px; background: var(--brand);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
}
.process-band { background: var(--bg2); padding: 5rem 3rem; }
.process-list { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.process-num { color: var(--brand); font-size: 12px; font-weight: 800; margin-bottom: 8px; }
.process-step h3 { font-size: 15px; margin-bottom: 6px; }
.process-step p { font-size: 12.5px; color: var(--text-muted); line-height: 1.65; }
.rich-deliverables {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 2rem;
}
.rich-deliverables div {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; min-height: 142px;
}
.rich-deliverables strong { display: block; color: var(--text); font-size: 14px; margin-bottom: 8px; }
.rich-deliverables span { display: block; color: var(--text-muted); font-size: 12.5px; line-height: 1.65; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero-content,
.page-banner > * { animation: nsbaFadeUp 0.65s ease both; }
.hero-cloud { animation: nsbaDrift 11s ease-in-out infinite alternate; }
@keyframes nsbaAiBorderPulse {
  0%, 100% { border-color: #ffffff; }
  33% { border-color: #8fd8ff; }
  66% { border-color: #f5a623; }
}
@keyframes nsbaFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nsbaDrift { from { transform: translateX(0); } to { transform: translateX(16px); } }

@media (prefers-reduced-motion: reduce) {
  .btn-ai { animation: none; border-color: #ffffff; }
}

@media (max-width: 980px) {
  nav.site-nav { height: auto; min-height: 58px; flex-wrap: wrap; padding: 0 1rem; }
  .nav-logo { width: 126px; }
  .nav-logo img { height: 36px; max-width: 126px; }
  .nav-toggle { display: flex; }
  .nav-links {
    order: 3; width: 100%; display: none; height: auto; flex-direction: column; align-items: stretch;
    padding: 12px 0 18px;
  }
  .nav-open .nav-links { display: flex; }
  .nav-item { height: auto; display: block; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-item > a { height: auto; padding: 13px 4px; border-bottom: none; justify-content: space-between; }
  .mega-menu {
    position: static; opacity: 1; visibility: visible; transform: none; display: none;
    box-shadow: none; border-top: none; background: rgba(255,255,255,0.04);
  }
  .nav-item.is-open .mega-menu { display: block; }
  .mega-inner { padding: 18px 14px; grid-template-columns: 1fr; gap: 16px; min-height: 0; }
  .mega-inner > div:first-child { border-right: none; padding-right: 0; }
  .mega-inner > div:first-child::after,
  .mega-inner::after { display: none; }
  .mega-kicker { color: #ffffff; }
  .mega-title { color: #fff; font-size: 18px; }
  .mega-desc { color: rgba(255,255,255,0.58); font-size: 13px; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-link { color: rgba(255,255,255,0.86); border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }
  .mega-link small { color: rgba(255,255,255,0.45); }
  .mega-link:hover, .mega-link:focus-visible { background: rgba(5,41,89,0.12); color: #fff; }
  .nav-icons { display: none; }
  .template-grid, .process-list { grid-template-columns: 1fr 1fr; }
  .rich-intro { grid-template-columns: 1fr; }
  .rich-deliverables { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .template-grid, .process-list { grid-template-columns: 1fr; }
  .rich-deliverables { grid-template-columns: 1fr; }
  .rich-visual { min-height: 220px; }
  .template-section, .process-band { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 760px) {
  :root { --mobile-shell-bottom: 86px; }
  html { scroll-padding-top: 72px; }
  body {
    background: var(--brand);
    padding-bottom: calc(var(--mobile-shell-bottom) + env(safe-area-inset-bottom));
    overflow-x: hidden;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: ''; position: fixed; inset: 72px 0 0;
    background: rgba(5,41,89,0.5); backdrop-filter: blur(2px); z-index: 998;
  }
  nav.site-nav {
    position: sticky; top: 0; min-height: 72px; height: 72px;
    padding: 0 18px; flex-wrap: nowrap; border-radius: 0;
    background: var(--brand); border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: none;
  }
  .nav-logo { width: 138px; height: 72px; }
  .nav-logo img { height: 42px; max-width: 138px; object-fit: contain; }
  .nav-logo .logo-light { display: block; }
  .nav-logo .logo-dark { display: none; }
  .nav-right { gap: 8px; margin-left: auto; flex-shrink: 0; }
  .nav-icons {
    display: flex; gap: 8px; order: 1;
  }
  .nav-icons svg {
    width: 44px; height: 44px; padding: 11px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
    stroke: rgba(255,255,255,0.84); stroke-width: 1.8;
    flex: 0 0 44px;
  }
  .nav-icons svg:nth-child(1) {
    display: block;
  }
  .nav-icons svg:nth-child(2) {
    display: block;
  }
  .nav-icons::before {
    content: 'AR'; order: 3; width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.84); font-size: 12px; font-weight: 700;
    flex: 0 0 44px;
  }
  .nav-icons svg:nth-child(1) { order: 1; }
  .nav-icons svg:nth-child(2) { order: 2; }
  .btn-ai {
    display: none;
  }
  .nav-toggle {
    display: flex; order: 4; width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16);
    flex: 0 0 44px;
  }
  .nav-links {
    position: fixed; z-index: 999; left: 0; right: 0; top: 72px; bottom: var(--mobile-shell-bottom);
    width: auto; max-height: none; overflow-y: auto;
    display: none; flex-direction: column; align-items: stretch;
    padding: 24px 24px 56px; border-radius: 0; background: var(--brand);
    box-shadow: none;
    border: 0; border-top: 1px solid rgba(255,255,255,0.12);
    scrollbar-color: rgba(255,255,255,0.32) transparent;
  }
  .nav-open .nav-links { display: flex; }
  .nav-item { border-top: 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .nav-item:last-child { border-bottom: 0; }
  .nav-item > a {
    padding: 18px 0; min-height: 58px; border-bottom: 0;
    border-radius: 0; font-size: 18px; color: #fff;
  }
  .nav-item > a::after {
    content: '+'; margin-left: auto; color: rgba(255,255,255,0.45); font-weight: 400;
  }
  .nav-item:not(.has-mega) > a::after { content: ''; }
  .nav-item.is-open > a { background: transparent; color: #fff; }
  .nav-item.is-open > a::after { content: '-'; }
  .mega-menu {
    margin: 0 0 18px; border-radius: 0; background: transparent;
    border: 0;
  }
  .mega-inner { padding: 8px 0 4px; }
  .mega-kicker { color: rgba(255,255,255,0.78); font-size: 10px; }
  .mega-title { color: #fff; font-size: 20px; }
  .mega-desc { color: rgba(255,255,255,0.72); font-size: 13px; line-height: 1.6; }
  .mega-link,
  .nav-links .mega-link,
  .nav-links .mega-link.active {
    padding: 15px 4px; font-size: 17px; color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.22);
  }
  .mega-link small,
  .nav-links .mega-link small { color: rgba(255,255,255,0.62); font-size: 12.5px; line-height: 1.45; }
  .mega-link:hover,
  .mega-link:focus-visible,
  .nav-links .mega-link:hover,
  .nav-links .mega-link:focus-visible {
    background: transparent; color: #fff; padding-left: 4px;
  }

  .mobile-app-nav {
    position: fixed !important; z-index: 1001; left: 0; right: 0; top: auto !important; bottom: 0 !important;
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0;
    min-height: calc(78px + env(safe-area-inset-bottom));
    padding: 7px 18px calc(9px + env(safe-area-inset-bottom));
    border-radius: 0; background: rgba(5,41,89,0.98);
    border-top: 1px solid rgba(255,255,255,0.11);
    box-shadow: 0 -16px 36px rgba(5,41,89,0.34);
    backdrop-filter: blur(16px);
  }
  .mobile-app-nav a {
    min-width: 0; height: 58px; border-radius: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; color: rgba(255,255,255,0.64); font-size: 10.5px; font-weight: 700;
    line-height: 1.1;
  }
  .mobile-app-nav span { display: block; line-height: 1.1; }
  .mobile-app-nav svg {
    width: 20px; height: 20px; fill: none; stroke: currentColor;
    stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
  }
  .mobile-app-nav a.active {
    background: transparent; color: #ffffff; box-shadow: none;
  }
  .mobile-app-nav a.active svg { stroke: #ffffff; }
  .mobile-app-nav a.active span { color: #ffffff; }
  .mobile-app-nav a + a { border-left: 1px solid rgba(255,255,255,0.07); }

  .hero {
    min-height: calc(100dvh - 156px);
    align-items: center;
    text-align: center;
  }
  .hero-content {
    width: 100%; max-width: 390px; margin: 0 auto; padding: 3.2rem 1.45rem 2.5rem;
  }
  .hero-tag {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; letter-spacing: 0; text-transform: none; margin: 0 auto 24px;
    color: rgba(255,255,255,0.75); background: rgba(22,139,255,0.14);
    border-radius: 999px; padding: 7px 14px;
  }
  .hero-tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: #168bff; margin-right: 8px;
  }
  .hero h1 { font-size: 43px; line-height: 1.05; letter-spacing: -0.2px; margin-bottom: 22px; }
  .hero p {
    font-size: 17px; line-height: 1.55; max-width: 100%; margin: 0 auto 32px;
    color: rgba(255,255,255,0.68);
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5,41,89,0.78) 0%, rgba(5,41,89,0.78) 44%, rgba(5,41,89,0.92) 100%),
      linear-gradient(90deg, rgba(5,41,89,0.34), rgba(5,41,89,0.16));
  }
  .hero-slide { background-position: 58% center; opacity: 0; }
  .btn-primary,
  .btn-outline,
  .btn-ghost,
  .btn-ghost-w { min-height: 44px; justify-content: center; }
  .hero .btn-primary {
    border-radius: 999px; min-height: 50px; padding: 13px 24px; background: #168bff;
    font-size: 16px; font-weight: 700; box-shadow: 0 14px 34px rgba(22,139,255,0.22);
  }
  .hero-dots { margin-top: 22px; }
  .hero-dots { justify-content: center; }

  .gartner-banner {
    padding: 24px 1.25rem calc(34px + var(--mobile-shell-bottom)); display: grid; grid-template-columns: 1fr; gap: 12px;
    background: #081523;
  }
  .gartner-divider { display: none; }
  .gartner-stars { margin-bottom: 2px; }

  .section,
  .home-capabilities,
  .home-story,
  .home-highlights,
  .home-pathways,
  .home-consultation,
  .home-cta,
  .tools-section,
  .services-showcase,
  .service-model,
  .services-industries,
  .template-section,
  .process-band,
  .ai-section,
  .customers-section,
  .latest-section,
  .venture-section,
  .ventures-section,
  .contact-section,
  .faq-section,
  .mission-section,
  .location-section,
  .invest-section {
    padding: 3.25rem 1.15rem;
  }
  .home-section-head {
    margin-bottom: 1.6rem;
    text-align: left;
  }
  .home-section-head h2,
  .home-story-copy h2,
  .home-consultation-copy h2,
  .home-cta h2,
  .service-model-copy h2 {
    font-size: 25px;
    line-height: 1.16;
    letter-spacing: 0;
  }
  .home-section-head p,
  .home-story-copy p,
  .home-consultation-copy p,
  .home-cta p {
    font-size: 13.5px;
  }
  .home-capability-grid,
  .home-highlight-grid,
  .home-pathway-grid,
  .services-showcase-grid,
  .service-model-grid,
  .industry-grid,
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-capability-card,
  .home-highlight-card,
  .home-pathway-card,
  .service-feature-card,
  .service-model-card,
  .industry-card {
    min-height: 0;
    border-radius: 14px;
  }
  .home-capability-media,
  .home-highlight-card img {
    height: 168px;
  }
  .home-story {
    gap: 1.4rem;
  }
  .home-story-media {
    min-height: 260px;
    border-radius: 14px;
  }
  .home-story-points {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;
  }
  .home-story-points div {
    padding: 14px;
    border-radius: 14px;
  }
  .home-consultation {
    gap: 1.6rem;
  }
  .home-consultation-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px;
    border-radius: 14px;
  }
  .home-booking-form {
    padding: 18px;
    border-radius: 14px;
  }
  .home-booking-form .form-row-2 {
    grid-template-columns: 1fr;
  }
  .home-cta {
    display: grid;
    gap: 1.5rem;
    padding-bottom: calc(3.6rem + var(--mobile-shell-bottom));
  }
  .home-cta-actions {
    justify-content: stretch;
  }
  .home-cta-actions a {
    width: 100%;
  }
  .tools-head {
    text-align: left;
  }
  .tool-item {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
    border-radius: 14px;
  }
  .tool-circle {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  .tool-copy p {
    font-size: 12.8px;
  }
  .section h2,
  .customers-section h2,
  .latest-section h2,
  .venture-section h2,
  .rich-section-title,
  .rich-intro h2 { font-size: 23px; letter-spacing: 0; }
  .section-sub { font-size: 13px; margin-bottom: 1.8rem; }
  .tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .tab { flex: 0 0 auto; }

  .product-grid,
  .latest-grid,
  .venture-grid,
  .ventures-full-grid,
  .values-grid,
  .value-grid,
  .team-grid,
  .template-grid,
  .process-list,
  .rich-deliverables,
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .product-card,
  .latest-card,
  .venture-card,
  .venture-full-card,
  .template-card,
  .process-step,
  .value-card,
  .team-card,
  .plan-card,
  .faq-item,
  .contact-info,
  .contact-form {
    border-radius: 14px;
  }
  .product-img,
  .latest-img { min-height: 150px; }
  .logo-strip { gap: 1rem; justify-content: flex-start; }
  .logo-item { width: calc(50% - 0.5rem); font-size: 13px; }

  .page-banner {
    padding: 4.25rem 1.25rem 3.25rem; text-align: left;
  }
  .page-banner h1 { font-size: 30px; line-height: 1.15; }
  .page-banner p { margin: 0; font-size: 13.5px; max-width: none; }
  .rich-intro { gap: 1.5rem; margin-bottom: 2.5rem; }
  .rich-visual { min-height: 210px; border-radius: 18px; }
  .rich-image-panel,
  .rich-image-panel img {
    min-height: 230px;
    border-radius: 14px;
  }
  .rich-card { padding: 62px 20px 22px; }
  .process-step { padding: 18px; }

  .plans-grid { max-width: none; }
  .contact-form,
  .contact-info { padding: 20px; }
  .quick-links { display: grid; grid-template-columns: 1fr; }
  .quick-link { border-radius: 12px; }
  .form-field input,
  .form-field select,
  .form-field textarea,
  .field input,
  .field select,
  .field textarea {
    min-height: 44px; font-size: 16px;
  }

  .cta-band { padding: 3rem 1.25rem calc(3.6rem + var(--mobile-shell-bottom)); }
  .cta-band h2 { font-size: 23px; }
  footer {
    padding: 2.6rem 1.2rem calc(2.4rem + var(--mobile-shell-bottom));
    background: #fff;
  }
  .footer-cols { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .social-icons { padding-bottom: 4px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 38px; }
  nav.site-nav { padding: 0 12px; }
  .nav-logo { width: 106px; }
  .nav-logo img { max-width: 106px; height: 34px; }
  .nav-icons { gap: 5px; }
  .nav-icons svg,
  .nav-icons::before,
  .nav-toggle { width: 38px; height: 38px; flex-basis: 38px; }
  .nav-icons svg { padding: 9px; }
  .mobile-app-nav a { font-size: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
