/* ============================================================
   TECHEBIZ — DESIGN SYSTEM
   Concept: the "process line" — a systems/workflow trace that
   runs through the page with square junction nodes at each
   section start. Encodes what the company actually sells:
   connected, automated business processes.
   ============================================================ */

:root {
  /* Color */
  --navy: #0D1B3D;
  --navy-soft: #15275C;
  --paper: #FAFAF8;
  --paper-dim: #F1F0EC;
  --pink: #FC5185;
  --pink-deep: #E23A6C;
  --blue: #0769FF;
  --cyan: #20C7F9;
  --slate: #5B6472;
  --slate-light: #8B93A0;
  --line: #E3E7EF;
  --line-dark: #233768;
  --white: #FFFFFF;

  /* Color — v2 enterprise-consulting system (used on homepage) */
  --e-deep: #0A2540;
  --e-blue: #0B5FFF;
  --e-teal: #0F9B8E;
  --e-emerald: #0FA968;
  --e-bg: #FFFFFF;
  --e-card: #F5F7FA;
  --e-card-border: #E7EAF0;
  --e-text: #16213A;
  --e-body: #4B5768;
  --e-shadow-sm: 0 6px 18px rgba(10,37,64,0.06);
  --e-shadow-md: 0 16px 40px rgba(10,37,64,0.10);
  --e-shadow-lg: 0 28px 64px rgba(10,37,64,0.16);
  --e-radius: 20px;
  --e-radius-sm: 12px;

  /* Type */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Scale */
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
  --step-3: clamp(2.25rem, 1.8rem + 2vw, 3.5rem);
  --step-4: clamp(3rem, 2.2rem + 3.5vw, 5rem);

  --container: 1200px;
  --radius: 3px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--navy);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { color: var(--slate); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--e-blue);
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.9rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Process line & junction nodes ---------- */
.section {
  position: relative;
  padding: 5rem 0;
}

.section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--line);
  transform: translateX(-599px);
  z-index: 0;
}

.section.on-dark::before { background: var(--line-dark); }

.section .junction {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-604px, -6px);
  width: 11px;
  height: 11px;
  background: var(--paper);
  border: 2px solid var(--pink);
  z-index: 1;
}
.section.on-dark .junction { background: var(--navy); border-color: var(--pink); }

@media (max-width: 1260px) {
  .section::before, .section .junction { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.95rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--e-blue);
  color: var(--white);
  box-shadow: var(--e-shadow-sm);
}
.btn-primary:hover { background: var(--e-deep); box-shadow: var(--e-shadow-md); transform: translateY(-1px); }
.btn-ghost {
  border-color: var(--e-card-border);
  color: var(--e-text);
  background: var(--white);
}
.btn-ghost:hover { border-color: var(--e-blue); color: var(--e-blue); }
.on-dark .btn-ghost { border-color: rgba(255,255,255,0.3); color: var(--paper); background: transparent; }
.on-dark .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn::after { content: '→'; transition: transform 0.15s ease; }
.btn:hover::after { transform: translateX(3px); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.text-amber { color: var(--pink-deep); }

.hero { padding: 4.5rem 0 5rem; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 46ch;
  margin: 1.5rem 0 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.1rem; }
.hero-stats span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0.3rem; }
.hero-visual svg { width: 100%; height: auto; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ---------- Problems ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}
.problem-item {
  background: var(--paper);
  padding: 1.6rem 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.problem-item span::before { content: '· '; color: var(--pink-deep); }

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

/* ---------- Pillars ---------- */
.pillars { background: var(--navy); color: var(--paper); }
.pillars h2 { color: var(--paper); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 2.5rem;
}
.pillar-card {
  background: var(--navy-soft);
  border: 1px solid var(--line-dark);
  padding: 2rem;
}
.pillar-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--pink);
  letter-spacing: 0.08em;
}
.pillar-card h3 { margin: 0.8rem 0 0.7rem; font-size: 1.35rem; }
.pillar-card p { color: var(--slate-light); font-size: 0.92rem; }

.pillar-grid-5 { grid-template-columns: repeat(3, 1fr); }
.pillar-grid-5 .pillar-card:nth-child(4),
.pillar-grid-5 .pillar-card:nth-child(5) { grid-column: span 1; }

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

/* ---------- Outcomes ---------- */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 2rem;
  margin-top: 2.5rem;
}
.outcome-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.outcome-num { color: var(--pink); font-weight: 700; }

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

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
.why-lead { margin-top: 1.2rem; max-width: 40ch; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem 2rem; }
.why-item { border-top: 1px solid var(--line); padding-top: 1rem; }
.why-item h4 { margin-bottom: 0.5rem; }
.why-item p { font-size: 0.92rem; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
}

/* ---------- Industries ---------- */
.industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.industry-row span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  border: 1px solid var(--line);
  padding: 0.6rem 1.1rem;
  color: var(--navy);
}

/* ---------- Engagement ---------- */
.engagement { background: var(--navy); color: var(--paper); }
.engagement h2 { color: var(--paper); }
.engage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.engage-card {
  border-top: 2px solid var(--pink);
  padding-top: 1.1rem;
}
.engage-card h4 { color: var(--paper); margin-bottom: 0.5rem; font-size: 1.05rem; }
.engage-card p { color: var(--slate-light); font-size: 0.88rem; }

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

/* ---------- CTA band ---------- */
.cta-band { background: var(--paper-dim); text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner p { margin: 1rem 0 2rem; font-size: 1.05rem; }

/* ============================================================
   INNER PAGE COMPONENTS
   ============================================================ */

/* Page hero (smaller than homepage hero) */
.page-hero { padding: 4rem 0 3.5rem; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: var(--step-3); max-width: 18ch; }
.page-hero .hero-sub { margin-top: 1.2rem; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-light);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--pink-deep); }

/* Value / card grids */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.value-card { border: 1px solid var(--line); padding: 1.6rem; }
.value-card .num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--pink-deep); display: block; margin-bottom: 0.7rem; }
.value-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .value-grid { grid-template-columns: 1fr; } }

/* Vision / Mission blocks */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.vm-card { background: var(--paper-dim); padding: 2.2rem; border-left: 3px solid var(--pink); }
.vm-card h3 { margin-bottom: 0.8rem; }
@media (max-width: 800px) { .vm-grid { grid-template-columns: 1fr; } }

/* Two column with lead + list */
.split-lead { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
@media (max-width: 900px) { .split-lead { grid-template-columns: 1fr; } }

/* Solution / audience cards */
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.solution-card { border: 1px solid var(--line); padding: 2rem; position: relative; }
.solution-card::before { content: ''; position: absolute; top: -1px; left: -1px; width: 24px; height: 24px; border-top: 2px solid var(--pink); border-left: 2px solid var(--pink); }
.solution-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.solution-tags span { font-family: var(--font-mono); font-size: 0.7rem; border: 1px solid var(--line); padding: 0.3rem 0.6rem; color: var(--slate); }
@media (max-width: 800px) { .solution-grid { grid-template-columns: 1fr; } }

/* Service detail blocks (used on services.php) */
.service-detail { padding: 4rem 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start; }
.service-detail-tag { font-family: var(--font-mono); font-size: 0.75rem; color: var(--pink-deep); letter-spacing: 0.08em; }
.service-detail h2 { margin: 0.6rem 0 1rem; font-size: var(--step-2); }
.example-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem 1.5rem; margin-top: 1.5rem; }
.example-grid div { font-size: 0.92rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.example-grid div::before { content: '›'; color: var(--pink-deep); margin-right: 0.6rem; font-weight: 700; }
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; } .example-grid { grid-template-columns: 1fr; } }

/* Industry cards */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.5rem; }
.industry-card { border: 1px solid var(--line); padding: 1.8rem; }
.industry-card h4 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.industry-card p { font-size: 0.88rem; }
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .industry-grid { grid-template-columns: 1fr; } }

/* Case study cards */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.case-card { border: 1px solid var(--line); display: flex; flex-direction: column; }
.case-card-top { background: var(--navy); color: var(--paper); padding: 2rem 1.6rem; }
.case-card-top span { font-family: var(--font-mono); font-size: 0.7rem; color: var(--cyan); }
.case-card-top h4 { margin-top: 0.6rem; font-size: 1.15rem; }
.case-card-body { padding: 1.6rem; flex: 1; }
.case-card-body p { font-size: 0.88rem; }
.case-placeholder-note { font-family: var(--font-mono); font-size: 0.72rem; color: var(--slate-light); margin-top: 0.8rem; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }

/* Insights / blog cards */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.insight-card { border: 1px solid var(--line); padding: 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; }
.insight-cat { font-family: var(--font-mono); font-size: 0.7rem; color: var(--pink-deep); text-transform: uppercase; }
.insight-card h4 { font-size: 1.1rem; }
.insight-card p { font-size: 0.88rem; }
.insight-meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--slate-light); margin-top: auto; }
.newsletter-box { background: var(--navy); color: var(--paper); padding: 2.5rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; margin-top: 3rem; }
.newsletter-box h4 { color: var(--paper); margin-bottom: 0.4rem; }
.newsletter-box p { color: var(--slate-light); }
.newsletter-form { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.newsletter-form input { padding: 0.85rem 1rem; border: 1px solid var(--line-dark); background: var(--navy-soft); color: var(--paper); font-family: var(--font-mono); font-size: 0.85rem; min-width: 220px; }
@media (max-width: 900px) { .insight-grid { grid-template-columns: 1fr; } }

/* Careers */
.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.5rem; }
.perk-card { text-align: left; padding: 1.6rem; border: 1px solid var(--line); }
.job-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.job-item { display: flex; justify-content: space-between; align-items: center; padding: 1.6rem 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; gap: 0.8rem; }
.job-item h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.job-meta { font-family: var(--font-mono); font-size: 0.75rem; color: var(--slate-light); }
@media (max-width: 800px) { .perk-grid { grid-template-columns: 1fr; } }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.contact-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-form label { display: block; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate); margin-bottom: 0.5rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line); background: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--navy);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--pink); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button { justify-self: start; }
.contact-info-item { display: flex; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.contact-info-item .tag { font-family: var(--font-mono); font-size: 0.7rem; color: var(--pink-deep); text-transform: uppercase; min-width: 90px; }
.form-success { background: var(--paper-dim); border-left: 3px solid var(--cyan); padding: 1.2rem 1.5rem; font-family: var(--font-mono); font-size: 0.85rem; margin-bottom: 1.5rem; }
.form-error { background: #FCEAEE; border-left: 3px solid var(--pink-deep); padding: 1.2rem 1.5rem; font-family: var(--font-mono); font-size: 0.85rem; margin-bottom: 1.5rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--e-shadow-sm);
  border-bottom-color: var(--e-card-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; }

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 6px;
}

.main-nav { display: flex; align-items: center; gap: 2.2rem; }
.main-nav ul { display: flex; list-style: none; gap: 2.2rem; }
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--e-body);
  transition: color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--e-deep); }
.main-nav a.active { color: var(--e-blue); font-weight: 600; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

@media (max-width: 900px) {
  .main-nav { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; gap: 1.5rem; transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 1.4rem; width: 100%; }
  .main-nav ul li { border-bottom: 1px solid var(--line); padding-bottom: 1.4rem; }
  .nav-toggle { display: block; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--paper-dim);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.7rem; }
.footer-grid a { color: var(--paper-dim); opacity: 0.8; transition: opacity 0.15s ease; }
.footer-grid a:hover { opacity: 1; color: var(--pink); }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slate-light);
  flex-wrap: wrap;
  gap: 1rem;
}
.social-links { display: flex; gap: 1rem; }
.social-links a { color: var(--paper-dim); }
.social-links a:hover { color: var(--pink); }

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

/* ============================================================
   V2 — ENTERPRISE CONSULTING HOMEPAGE COMPONENTS
   Premium, minimal, trust-first. No circuit motifs, no dark
   futuristic themes. Rounded cards, soft shadow, generous space.
   ============================================================ */

.v2 { background: var(--e-bg); }
.v2-section { padding: 6.5rem 0; }
.v2-section.tight { padding: 4.5rem 0; }
.v2-section h2 { color: var(--e-text); font-size: var(--step-3); max-width: 20ch; }
.v2-section .lead { color: var(--e-body); font-size: 1.1rem; max-width: 56ch; margin-top: 1rem; }
.v2-head { margin-bottom: 3rem; }
.v2-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.v2-head.center h2, .v2-head.center .lead { margin-left: auto; margin-right: auto; }
.v2-head.center .eyebrow { justify-content: center; }

/* ---------- Hero ---------- */
.v2-hero { padding: 5rem 0 3rem; background: linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 60%); }
.v2-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
.v2-hero h1 { font-size: var(--step-4); color: var(--e-text); max-width: 14ch; }
.v2-hero .sub { font-size: 1.2rem; color: var(--e-text); font-weight: 500; margin: 1.3rem 0 0.8rem; max-width: 40ch; }
.v2-hero .support { font-size: 1rem; color: var(--e-body); max-width: 46ch; margin-bottom: 2.2rem; }
.v2-badges { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2.2rem; }
.v2-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--e-card-border);
  border-radius: 999px; padding: 0.55rem 1.1rem; font-size: 0.82rem; font-weight: 600; color: var(--e-text);
  box-shadow: var(--e-shadow-sm);
}
.v2-badge .dot2 { width: 7px; height: 7px; border-radius: 50%; background: var(--e-emerald); }

/* Dashboard mockup — CSS-built, not an illustration */
.v2-dash {
  position: relative;
  background: var(--white);
  border: 1px solid var(--e-card-border);
  border-radius: var(--e-radius);
  box-shadow: var(--e-shadow-lg);
  padding: 1.6rem;
  min-height: 380px;
}
.v2-dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.v2-dash-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--e-text); }
.v2-dash-dots { display: flex; gap: 6px; }
.v2-dash-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--e-card-border); }
.v2-dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.v2-dash-card { background: var(--e-card); border-radius: var(--e-radius-sm); padding: 1rem 1.1rem; }
.v2-dash-card .label { font-size: 0.72rem; font-weight: 600; color: var(--e-body); text-transform: uppercase; letter-spacing: 0.03em; }
.v2-dash-card .value { font-family: var(--font-display); font-size: 1.5rem; color: var(--e-text); margin-top: 0.3rem; }
.v2-bars { display: flex; align-items: flex-end; gap: 6px; height: 46px; margin-top: 0.7rem; }
.v2-bars span { flex: 1; background: var(--e-blue); border-radius: 3px 3px 0 0; opacity: 0.85; }
.v2-float-card {
  position: absolute; background: var(--white); border: 1px solid var(--e-card-border);
  border-radius: var(--e-radius-sm); box-shadow: var(--e-shadow-md); padding: 0.8rem 1.1rem;
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 600; color: var(--e-text);
}
.v2-float-card .ic { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-float-1 { top: -18px; right: -14px; }
.v2-float-1 .ic { background: rgba(15,169,104,0.12); color: var(--e-emerald); }
.v2-float-2 { bottom: -16px; left: -18px; }
.v2-float-2 .ic { background: rgba(11,95,255,0.12); color: var(--e-blue); }

@media (max-width: 980px) {
  .v2-hero-grid { grid-template-columns: 1fr; }
  .v2-dash { max-width: 460px; margin: 2rem auto 0; }
}

/* ---------- Trust bar ---------- */
.v2-trust { background: var(--e-card); padding: 2.6rem 0; border-top: 1px solid var(--e-card-border); border-bottom: 1px solid var(--e-card-border); }
.v2-trust-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.v2-stat { text-align: left; }
.v2-stat .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--e-deep); display: flex; align-items: baseline; gap: 2px; }
.v2-stat .num .suffix { font-size: 1.3rem; }
.v2-stat .caption { font-size: 0.85rem; color: var(--e-body); margin-top: 0.2rem; }
.v2-trust-note { font-size: 0.75rem; color: var(--slate-light); margin-top: 1.5rem; text-align: center; }

/* ---------- Challenge cards ---------- */
.v2-challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.v2-challenge-card {
  background: var(--e-card); border-radius: var(--e-radius); padding: 1.9rem;
  border: 1px solid transparent; transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.v2-challenge-card:hover { box-shadow: var(--e-shadow-md); transform: translateY(-3px); border-color: var(--e-card-border); background: var(--white); }
.v2-challenge-card .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(11,95,255,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.v2-challenge-card h4 { font-size: 1.05rem; color: var(--e-text); margin-bottom: 0.4rem; }
.v2-challenge-card p { font-size: 0.88rem; color: var(--e-body); }
@media (max-width: 900px) { .v2-challenge-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .v2-challenge-grid { grid-template-columns: 1fr; } }

/* ---------- Capability cards ---------- */
.v2-cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.v2-cap-card {
  background: var(--white); border: 1px solid var(--e-card-border); border-radius: var(--e-radius);
  padding: 2.1rem; box-shadow: var(--e-shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex; flex-direction: column;
}
.v2-cap-card:hover { box-shadow: var(--e-shadow-md); transform: translateY(-3px); }
.v2-cap-card .ic { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; }
.v2-cap-card h3 { font-size: 1.2rem; color: var(--e-text); margin-bottom: 0.6rem; }
.v2-cap-card p { font-size: 0.92rem; color: var(--e-body); margin-bottom: 1rem; }
.v2-cap-card .outcome { font-size: 0.82rem; font-weight: 600; color: var(--e-teal); margin-top: auto; margin-bottom: 1.2rem; }
.v2-cap-card .cap-link { font-size: 0.88rem; font-weight: 600; color: var(--e-blue); display: inline-flex; align-items: center; gap: 0.4rem; }
.v2-cap-card .cap-link::after { content: '→'; transition: transform 0.15s ease; }
.v2-cap-card:hover .cap-link::after { transform: translateX(3px); }
@media (max-width: 980px) { .v2-cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .v2-cap-grid { grid-template-columns: 1fr; } }

/* ---------- Industry cards v2 ---------- */
.v2-industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.v2-industry-card {
  background: var(--e-card); border-radius: var(--e-radius); padding: 1.6rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.v2-industry-card:hover { background: var(--white); box-shadow: var(--e-shadow-md); }
.v2-industry-card h4 { font-size: 1rem; color: var(--e-text); margin-bottom: 0.7rem; }
.v2-industry-card p { font-size: 0.82rem; color: var(--e-body); margin-bottom: 1rem; }
.v2-industry-card a { font-size: 0.8rem; font-weight: 600; color: var(--e-blue); }
@media (max-width: 980px) { .v2-industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .v2-industry-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Why Techebiz v2 ---------- */
.v2-why-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center; }
.v2-why-panel {
  background: var(--e-deep); border-radius: var(--e-radius); padding: 2.8rem;
  color: var(--white); min-height: 360px; display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--e-shadow-lg);
}
.v2-why-panel .quote { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.35; }
.v2-why-panel .attribution { margin-top: 1.4rem; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.v2-benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2rem; }
.v2-benefit { display: flex; gap: 0.9rem; align-items: flex-start; }
.v2-benefit .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(11,95,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v2-benefit h4 { font-size: 1rem; color: var(--e-text); margin-bottom: 0.3rem; }
.v2-benefit p { font-size: 0.86rem; color: var(--e-body); }
@media (max-width: 980px) { .v2-why-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .v2-benefit-grid { grid-template-columns: 1fr; } }

/* ---------- Process timeline ---------- */
.v2-process { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; position: relative; }
.v2-process::before { content: ''; position: absolute; top: 22px; left: 5%; right: 5%; height: 1px; background: var(--e-card-border); z-index: 0; }
.v2-step { position: relative; z-index: 1; text-align: center; }
.v2-step .step-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 2px solid var(--e-blue); color: var(--e-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: var(--font-display); font-weight: 700; }
.v2-step h4 { font-size: 0.95rem; color: var(--e-text); margin-bottom: 0.4rem; }
.v2-step p { font-size: 0.8rem; color: var(--e-body); }
@media (max-width: 900px) { .v2-process { grid-template-columns: repeat(3, 1fr); row-gap: 2.5rem; } .v2-process::before { display: none; } }
@media (max-width: 560px) { .v2-process { grid-template-columns: 1fr 1fr; } }

/* ---------- Case study cards v2 ---------- */
.v2-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.v2-case-card {
  background: var(--white); border: 1px solid var(--e-card-border); border-radius: var(--e-radius);
  overflow: hidden; box-shadow: var(--e-shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.v2-case-card:hover { box-shadow: var(--e-shadow-md); transform: translateY(-3px); }
.v2-case-top { background: var(--e-deep); padding: 1.8rem; color: var(--white); }
.v2-case-top .tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--e-teal); }
.v2-case-top h4 { color: var(--white); font-size: 1.15rem; margin-top: 0.5rem; }
.v2-case-body { padding: 1.6rem 1.8rem 1.9rem; }
.v2-case-row { margin-bottom: 0.9rem; }
.v2-case-row .k { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: var(--e-teal); display: block; margin-bottom: 0.2rem; }
.v2-case-row .v { font-size: 0.88rem; color: var(--e-body); }
@media (max-width: 900px) { .v2-case-grid { grid-template-columns: 1fr; } }

/* ---------- Insights v2 ---------- */
.v2-insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.v2-insight-card { background: var(--white); border: 1px solid var(--e-card-border); border-radius: var(--e-radius); padding: 1.8rem; box-shadow: var(--e-shadow-sm); }
.v2-insight-card .cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; color: var(--e-blue); }
.v2-insight-card h4 { font-size: 1.05rem; color: var(--e-text); margin: 0.6rem 0; }
.v2-insight-card p { font-size: 0.86rem; color: var(--e-body); }
@media (max-width: 900px) { .v2-insight-grid { grid-template-columns: 1fr; } }

/* ---------- Final CTA v2 ---------- */
.v2-final-cta {
  background: linear-gradient(135deg, var(--e-deep) 0%, #0F3A6E 100%);
  border-radius: var(--e-radius); padding: 4.5rem 3rem; text-align: center; color: var(--white);
}
.v2-final-cta h2 { color: var(--white); max-width: 26ch; margin: 0 auto; }
.v2-final-cta p { color: rgba(255,255,255,0.75); max-width: 52ch; margin: 1.1rem auto 2.2rem; }
.v2-final-cta .btn-ghost { border-color: rgba(255,255,255,0.35); color: var(--white); background: transparent; }
.v2-final-cta .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ---------- Icon helper ---------- */
.v2-svg-icon { width: 22px; height: 22px; }
