
/* ════════════════════════════════════════
   15.6" LAPTOP  (1366 × 768 viewport)
   Hero fits without scroll on load
════════════════════════════════════════ */
/* ════════════════════════════════════════
   15.6" LAPTOP  (1366 × 768 viewport)
   Hero fills screen without scroll.
   Available height ≈ 768 − 104px header = 664px
════════════════════════════════════════ */
@media (min-width: 1025px) and (max-width: 1440px) {
  /* Hero outer — on laptop, constrain to viewport so it fits */
  .hero-section { padding-top: 104px; padding-bottom: 32px; min-height: 100vh; }

  /* H1 — big enough to read, small enough to fit */
  .hero-text h1 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); line-height: 1.08; margin-bottom: 14px; }

  /* Subtitle */
  .hero-sub { font-size: 14px; line-height: 1.65; margin-bottom: 18px; }

  /* Badge */
  .hero-badge { margin-bottom: 16px; font-size: 10.5px; padding: 6px 14px; }

  /* CTAs */
  .hero-ctas { margin-bottom: 16px; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { padding: 12px 22px; font-size: 13.5px; }

  /* Trust row */
  .hero-trust-row { padding-top: 12px; }

  /* Proof bar */
  .hero-proof { margin-top: 24px; padding: 16px 0; }
  .hp-num { font-size: 1.55rem; }
  .hp-sep { height: 36px; }
  .hp-item { padding: 0 18px; }

  /* Right visual */
  .hero-visual { width: 380px; height: 310px; }
  .hv-code { width: 330px; }
  .hv-stats { width: 220px; padding: 14px; }
  .hvs-v { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════
   ZEALICON — CUSTOM SOFTWARE DEVELOPMENT PAGE
   styles.css — Light/White theme (matches homepage)
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS — extracted from actual homepage ── */
:root {
  /* Core palette */
  --white:        #ffffff;
  --bg-page:      #ffffff;
  --bg-light:     #F5F7FA;
  --bg-lighter:   #EEF2F8;
  --bg-navy:      #0A1628;
  --bg-navy2:     #0D1B3E;
  --bg-navy3:     #111F45;

  /* Brand colours */
  --primary:      #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light:#EFF6FF;
  --primary-glow: rgba(37,99,235,0.10);
  --orange:       #F56713;
  --orange-dark:  #E05500;
  --orange-light: #FFF4EE;

  /* Text */
  --text-dark:    #1A2332;
  --text-body:    #4B5563;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;

  /* Borders */
  --border:       #E5E7EB;
  --border2:      #D1D5DB;

  /* Spacing */
  --section-pad:  64px;

  /* Border radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;

  /* Font */
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.10);
  --shadow-card: 0 2px 12px rgba(0,0,0,.06);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg-page); color: var(--text-body); line-height: 1.75; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
::selection { background: rgba(37,99,235,.15); color: var(--primary); }

/* ═══════════════════════════════════════
   SITE HEADER — white navbar (exact homepage)
═══════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform 0.35s ease;
}

#site-header.scrolled { transform: translateY(-40px); }

/* Top bar */
.top-bar {
  height: 40px;
  background: var(--bg-navy);
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

/* Main nav — white background */
.nav-main {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.custom-logo { display: block; }

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--r-sm);
}

.navbar-toggler-icon { opacity: 0.6; }

.nav-main .nav-link {
  color: var(--text-dark);
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 14px !important;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-main .nav-link:hover { color: var(--primary); }

.chevron-icon { font-size: 14px; transition: transform 0.3s; }

/* CTA nav button */
.btn-nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--r-md) !important;
  padding: 9px 20px !important;
  margin-left: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background 0.3s, transform 0.3s !important;
}

.btn-nav-cta:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ── Mega Menu ── */
.mega-wrapper { position: relative; }

.mega-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: -20px;
  width: 680px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

.mega-wrapper:hover .mega-menu,
.mega-menu.mobile-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  padding: 16px;
}

.mega-svc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background 0.2s;
}

.mega-svc-item:hover,
.mega-svc-item.active-svc { background: var(--bg-light); }

.ms-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.mega-svc-item h5 { font-size: 12px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.mega-svc-item p { font-size: 11px; color: var(--text-muted); margin: 0; line-height: 1.4; }

.mega-cta {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mega-cta strong { color: var(--text-dark); font-size: 13px; }
.mega-cta p { font-size: 11px; color: var(--text-muted); margin: 3px 0 0; }

.mega-cta a {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  transition: color 0.2s;
}

.mega-cta a:hover { color: var(--primary-dark); }

@media (max-width: 991px) {
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    width: 100%;
    border-radius: var(--r-lg);
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s, visibility 0.4s;
    pointer-events: none;
    box-shadow: var(--shadow-md);
  }
  .mega-menu.mobile-open { visibility: visible; max-height: 600px; pointer-events: all; }
  .mega-menu-inner { grid-template-columns: 1fr 1fr; }
  .btn-nav-cta { margin-left: 0 !important; margin-top: 8px; }
}




/* ═══════════════════════════════════════
   BREADCRUMB — white bg, below marquee
   Matches screenshot: Home › Services › Current (blue)
═══════════════════════════════════════ */
.page-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.bc-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 12px 24px;
  margin: 0;
  font-size: 13px;
}

.bc-list li {
  display: flex;
  align-items: center;
}

.bc-list a {
  color: var(--text-body);
  font-weight: 500;
  transition: color 0.2s;
  padding: 2px 0;
}

.bc-list a:hover {
  color: var(--primary);
}

/* Arrow separator › */
.bc-sep {
  color: var(--text-light);
  font-size: 14px;
  margin: 0 8px;
  font-weight: 400;
  line-height: 1;
}

/* Current page — blue, bold */
.bc-list li[aria-current="page"] {
  color: var(--primary);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   HERO SECTION — dark navy (matches homepage)
═══════════════════════════════════════ */
.hero-section {
  position: relative;
  background: var(--bg-navy);
  padding-top: 108px;
  padding-bottom: 56px;
  overflow: hidden;
  /* Fill at least full viewport so marquee is true 2nd fold */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-orb-1 {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12), transparent 65%);
  pointer-events: none;
}

.hero-orb-2 {
  position: absolute;
  bottom: -50px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,103,19,.08), transparent 65%);
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }

/* Hero H1 */
.hero-text h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 640px;
  margin-bottom: 18px;
}

.hero-hl {
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.hero-sub strong { color: var(--white); }

/* Hero CTAs */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.3);
  color: #fff;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-hero-outline:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}

/* Trust row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.htr-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

.htr-item iconify-icon { color: #22C55E; font-size: 14px; }
.htr-sep { width: 1px; height: 14px; background: rgba(255,255,255,.15); }

/* ── Hero Code Visual ── */
.hero-right { display: flex; align-items: center; justify-content: center; }

.hero-visual { position: relative; width: 420px; height: 360px; }

.hv-code {
  position: absolute;
  top: 0; left: 0;
  width: 380px;
  background: #0D1117;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.hvc-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hvc-dots { display: flex; gap: 6px; }
.hvc-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hvc-dots span:nth-child(1) { background: #FF5F57; }
.hvc-dots span:nth-child(2) { background: #FEBC2E; }
.hvc-dots span:nth-child(3) { background: #28C840; }
.hvc-fname { font-size: 11px; color: rgba(255,255,255,.3); font-family: monospace; }

.hvc-pre {
  padding: 16px;
  font-family: 'Courier New', Consolas, monospace;
  font-size: 12px;
  line-height: 2;
  color: rgba(255,255,255,.5);
  white-space: pre;
  margin: 0;
}

.c-cm  { color: rgba(255,255,255,.2); font-style: italic; }
.c-kw  { color: #C084FC; }
.c-fn  { color: #60A5FA; }
.c-str { color: #86EFAC; }
.c-var { color: #F9FAFB; }
.c-bool { color: #FCA5A5; }

.hv-stats {
  position: absolute;
  bottom: 14px; right: 0;
  width: 250px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.hvs-col { flex: 1; text-align: center; }
.hvs-v { display: block; font-size: 1.4rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.hvs-l { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.hvs-div { width: 1px; height: 36px; background: var(--border); }

.hv-pill {
  position: absolute;
  top: -14px; right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 100px;
  font-size: 11px;
  color: #22C55E;
  font-weight: 600;
  white-space: nowrap;
}

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s infinite;
}

/* ── Hero Proof Bar ── */
.hero-proof {
  display: flex;
  align-items: center;
  margin-top: 36px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
  gap: 6px;
}

.hp-item { text-align: center; padding: 0 24px; }
.hp-num { font-size: 1.85rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 5px; }
.hp-num span { color: #60A5FA; }
.hp-lbl { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 0.07em; }
.hp-sep { width: 1px; height: 42px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ═══════════════════════════════════════
   MARQUEE (exact from homepage)
═══════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--bg-navy2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}

@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}

.marquee-item strong { color: rgba(255,255,255,.85); }
.marquee-item .fa-star { color: #F59E0B; }
.marquee-item .fa-trophy { color: #F59E0B; }
.marquee-item .fa-shield-halved { color: #22C55E; }
.marquee-item .fa-bolt { color: #60A5FA; }
.marquee-sep { color: rgba(255,255,255,.2); padding: 0 4px; font-size: 14px; }

/* ═══════════════════════════════════════
   SHARED LAYOUT UTILITIES
═══════════════════════════════════════ */
.section-pad { padding: var(--section-pad) 0; }

.bg-light-z { background: var(--bg-light); }

.section-label {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 7px;
}

.section-label::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin-right: 8px;
}

.section-label.justify-content-center::before { display: none; }

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

h3 {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.body-text { font-size: 14.5px; color: var(--text-body); line-height: 1.75; }
.body-text strong { color: var(--text-dark); }

.section-desc { max-width: 560px; font-size: 14px; color: var(--text-body); margin-top: 6px; }

/* Reveal animation — visible by default, animated when JS fires */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* JS adds .js-ready to body when loaded, then enables animation */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.js-ready .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Icon colour classes (exact from homepage) */
.ic {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ic-rose    { background: rgba(251,113,133,.12); color: #F43F5E; }
.ic-emerald { background: rgba(52,211,153,.12);  color: #10B981; }
.ic-amber   { background: rgba(245,158,11,.12);  color: #F59E0B; }
.ic-sky     { background: rgba(56,189,248,.12);  color: #0EA5E9; }
.ic-navy    { background: rgba(99,102,241,.12);  color: #6366F1; }
.ic-violet  { background: rgba(167,139,250,.12); color: #8B5CF6; }
.ic-teal    { background: rgba(45,212,191,.12);  color: #14B8A6; }

/* ═══════════════════════════════════════
   WHAT-IS GRID
═══════════════════════════════════════ */
.wi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.wi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: all 0.3s;
}

.wi-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(37,99,235,.08);
  transform: translateY(-3px);
}

.wi-icon { font-size: 22px; margin-bottom: 12px; }
.wi-card h3 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.wi-card p { font-size: 12.5px; color: var(--text-body); margin: 0; line-height: 1.65; }

/* ═══════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
  height: 100%;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--orange));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after { transform: scaleX(1); }

.svc-icon { margin-bottom: 18px; }

.service-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }

.service-card p { font-size: 13.5px; color: var(--text-body); margin-bottom: 16px; line-height: 1.7; }

.svc-list { list-style: none; margin-bottom: 20px; }

.svc-list li {
  font-size: 12px;
  color: var(--text-body);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-list li::before { content: '›'; color: var(--primary); font-weight: 700; font-size: 14px; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.25s;
}

.svc-link:hover { gap: 10px; }

/* ═══════════════════════════════════════
   WHY US — exact from homepage
═══════════════════════════════════════ */
.why-item {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 0.3s;
}

.why-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.why-item h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.why-item p { font-size: 13px; color: var(--text-body); line-height: 1.75; margin: 0; }

/* ═══════════════════════════════════════
   COMPARISON TABLE (exact from homepage)
═══════════════════════════════════════ */
.table-section { overflow-x: auto; }

.comp-container { overflow-x: auto; }

.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comp-table th {
  padding: 13px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--border);
  background: var(--bg-light);
  color: var(--text-muted);
}

.comp-table th:nth-child(2) {
  color: var(--primary);
  background: var(--primary-light);
}

.comp-table td {
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

.comp-table td:first-child { font-weight: 600; color: var(--text-dark); }
.comp-table td:nth-child(2) { background: rgba(37,99,235,.03); }
.comp-table tr:hover td { background: var(--bg-light); }
.comp-table tr:hover td:nth-child(2) { background: rgba(37,99,235,.05); }
.comp-table tr:last-child td { border-bottom: none; }

.check   { color: #10B981; font-weight: 600; }
.cross   { color: var(--text-light); }
.neutral { color: var(--orange); font-weight: 600; }

/* ═══════════════════════════════════════
   STATS BAND — dark navy (exact from homepage)
═══════════════════════════════════════ */
.stats-band {
  background: var(--bg-navy);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.03); }

.stat-item .big {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .lbl {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ═══════════════════════════════════════
   INDUSTRIES (exact from homepage)
═══════════════════════════════════════ */
.ind-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 16px;
  transition: all 0.35s;
  height: 100%;
}

.ind-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ind-card h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin: 16px 0 8px; }
.ind-card p { font-size: 12.5px; color: var(--text-body); margin: 0; line-height: 1.6; }

/* View All button */
.btn-z {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border: 1.5px solid var(--border2);
  color: var(--text-dark);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-z:hover { border-color: var(--primary); color: var(--primary); }

/* ═══════════════════════════════════════
   TECH STACK SCROLL (exact from homepage)
═══════════════════════════════════════ */
.tech-overflow { overflow: hidden; padding: 8px 0; }

.tech-track {
  display: flex;
  gap: 12px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.tech-track .tech-chip {
  padding: 9px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  cursor: default;
}

.tech-track .tech-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* ═══════════════════════════════════════
   DEVELOPMENT PROCESS (exact from homepage)
═══════════════════════════════════════ */
.proc-track {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 24px;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.proc-track::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--orange));
  opacity: 0.2;
}

.proc-step {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
  list-style: none;
}

.proc-dot {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 800;
  font-size: 12px;
  color: var(--primary);
  position: relative;
  z-index: 1;
  transition: all 0.35s;
  box-shadow: var(--shadow-sm);
}

.proc-step:hover .proc-dot {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 6px rgba(37,99,235,.08);
}

.proc-step h3 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.proc-step p { font-size: 11.5px; color: var(--text-muted); line-height: 1.55; }

/* ═══════════════════════════════════════
   CASE STUDIES
═══════════════════════════════════════ */
.cs-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }

.cs-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font);
}

.cs-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(37,99,235,.2);
}

.cs-tab:hover:not(.active) { border-color: var(--primary); color: var(--primary); }

.cs-panel { display: none; }
.cs-panel.active { display: block; animation: fadeIn .4s ease; }

@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

.cs-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-light);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cs-panel h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.cs-panel p { font-size: 14px; color: var(--text-body); line-height: 1.8; }
.cs-panel p strong { color: var(--text-dark); }

.cs-metrics {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin: 28px 0;
}

.cs-metric {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  text-align: center;
}

.csm-val { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 5px; }
.csm-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: gap .25s;
}

.case-link:hover { gap: 10px; }

.cs-spec-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  height: 100%;
}

.csc-header {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.csc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.csc-row.last { border-bottom: none; }
.csc-row span { color: var(--text-muted); }
.csc-row strong { color: var(--text-dark); font-weight: 600; }

/* ═══════════════════════════════════════
   TESTIMONIALS (Slick Slider)
═══════════════════════════════════════ */
.testi-slider { padding-bottom: 40px; }

.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px;
  margin: 6px 8px;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.stars { color: #F59E0B; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }

.testi-card p {
  font-size: 14px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.ta-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid rgba(37,99,235,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.tname { font-weight: 700; font-size: 13px; color: var(--text-dark); }
.trole { font-size: 11px; color: var(--text-muted); }

.testi-slider .slick-dots li button::before { color: var(--border2); font-size: 8px; }
.testi-slider .slick-dots li.slick-active button::before { color: var(--primary); }

/* ═══════════════════════════════════════
   ENGAGEMENT MODELS (exact from homepage)
═══════════════════════════════════════ */
.eng-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 0.35s;
}

.eng-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.eng-card.featured {
  background: linear-gradient(135deg, rgba(37,99,235,.04), rgba(245,103,19,.02));
  border-color: rgba(37,99,235,.2);
  transform: scale(1.02);
}

.eng-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.eng-tag {
  display: inline-block;
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.eng-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.eng-card p { font-size: 13.5px; color: var(--text-body); line-height: 1.7; }

.eng-features { display: flex; flex-direction: column; gap: 8px; }

.eng-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-body);
  padding: 8px 12px;
  background: var(--bg-light);
  border-radius: var(--r-sm);
}

.eng-feature::before { content: '✓'; color: #10B981; font-weight: 700; font-size: 12px; }

.eng-price { font-size: 14px; color: var(--text-body); margin-top: 4px; }
.eng-price strong { font-size: 1.6rem; font-weight: 800; color: var(--primary); }

/* Homepage-style buttons for cards */
.btn.btn-primary {
  background: var(--primary);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: var(--r-md);
  transition: all 0.3s;
  font-family: var(--font);
}

.btn.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); color: #fff; }

.btn.btn-outline-amber {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--r-md);
  transition: all 0.3s;
  font-family: var(--font);
}

.btn.btn-outline-amber:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

/* ═══════════════════════════════════════
   ESTIMATOR
═══════════════════════════════════════ */
.est-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.est-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.est-row:last-of-type { border-bottom: none; }

.est-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  width: 130px;
  flex-shrink: 0;
}

.est-opts { display: flex; gap: 8px; flex-wrap: wrap; }

.est-opt {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font);
}

.est-opt:hover { border-color: var(--primary); color: var(--primary); }

.est-opt.sel {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.est-result {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  width: 100%;
}

.est-rl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 10px; }

.est-price { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); line-height: 1; margin-bottom: 8px; }
.est-price span { font-size: 1.3rem; color: var(--text-muted); font-weight: 500; }

.est-tl { font-size: 13px; color: var(--primary); margin-bottom: 12px; font-weight: 600; }

.est-note { font-size: 11.5px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }

/* ═══════════════════════════════════════
   FAQ (exact from homepage)
═══════════════════════════════════════ */
.faq-resources {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}

.faq-resources h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.faq-resources a {
  display: block;
  font-size: 12.5px;
  color: var(--primary);
  padding: 5px 0;
  transition: color 0.2s;
  line-height: 1.5;
}

.faq-resources a:hover { color: var(--primary-dark); }

.faq-wrap { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }

.faq-trigger {
  width: 100%;
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  font-family: var(--font);
  text-align: left;
}

.faq-q { font-size: 14px; font-weight: 600; color: var(--text-body); margin: 0; transition: color 0.25s; line-height: 1.5; text-align: left; }

.faq-trigger:hover .faq-q { color: var(--primary); }
.faq-item.open .faq-trigger .faq-q { color: var(--text-dark); }

.faq-icon {
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  font-size: 14px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body.open { max-height: 400px; }

.faq-body p { font-size: 13.5px; color: var(--text-body); line-height: 1.85; padding-bottom: 18px; }

/* ═══════════════════════════════════════
   CONTACT CARD (exact from homepage)
═══════════════════════════════════════ */
.contact-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px;
}

.contact-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); }

.f-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.f-input, .f-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.f-input::placeholder, .f-textarea::placeholder { color: var(--text-light); }

.f-input:focus, .f-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.f-textarea { resize: vertical; min-height: 100px; }

select.f-input { background: var(--white); cursor: pointer; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.2);
}

/* ═══════════════════════════════════════
   CTA BAND — dark navy (exact from homepage)
═══════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 56px 0;
  background: var(--bg-navy);
  overflow: hidden;
}

.cta-band h2 { color: var(--white) !important; font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.6); font-size: 15px; }

.cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.12), transparent 65%);
  pointer-events: none;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-cta-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.3);
  color: #fff;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  padding: 15px 32px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-cta-outline:hover { border-color: rgba(255,255,255,.7); color: var(--white); }

/* ═══════════════════════════════════════
   CAREERS BAR (exact from homepage)
═══════════════════════════════════════ */
.careers-bar {
  background: linear-gradient(135deg, rgba(37,99,235,.05), rgba(37,99,235,.02));
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 20px 0;
}

.careers-bar h3 { color: var(--text-dark); }
.careers-bar p { color: var(--text-muted); }

.btn-careers {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  border: 1.5px solid var(--border2);
  color: var(--text-dark);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-careers:hover { border-color: var(--primary); color: var(--primary); }


/* ═══════════════════════════════════════
   ORANGE BRAND STRIP
   Between careers bar and footer (from homepage)
═══════════════════════════════════════ */
.brand-strip {
  height: 4px;
  background: #F56713;
}
/* ═══════════════════════════════════════
   FOOTER — dark navy (exact from homepage)
═══════════════════════════════════════ */
footer {
  background: var(--bg-navy);
  padding: 48px 0 0;
}

.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 300px; }

.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,.6); margin-bottom: 16px; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }

.footer-office { font-size: 13px; }
.footer-office > div { margin-bottom: 14px; }
.footer-office strong { color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; font-size: 13px; }
.footer-office p { color: rgba(255,255,255,.35); font-size: 12px; margin: 4px 0 0; }
.footer-office a { color: rgba(255,255,255,.35); transition: color 0.2s; }
.footer-office a:hover { color: rgba(255,255,255,.75); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 12px;
}

.social-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-dot:hover { background: var(--primary); border-color: var(--primary); }
.social-dot a { color: rgba(255,255,255,.5); font-size: 14px; transition: color 0.2s; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.social-dot:hover a { color: var(--white); }

/* ═══════════════════════════════════════
   FLOATING CONTACT (exact from homepage)
═══════════════════════════════════════ */
.floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-contact a {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  transition: 0.3s;
}

.floating-contact a:first-child { border-radius: 8px 0 0 0; }
.floating-contact a:last-child  { border-radius: 0 0 0 8px; }

.call-btn     { background: var(--primary); }
.call-btn:hover { background: var(--primary-dark); }
.whatsapp-btn { background: #25D366; }
.whatsapp-btn:hover { background: #1ebe5d; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE SYSTEM
   Breakpoints: 1024 (tablet) · 768 (mobile) · 480 (small) · 360 (tiny)
   Strategy: content-first, touch-friendly (44px targets), no horizontal scroll
═══════════════════════════════════════════════════════ */

/* ── TABLET ≤1024px ── */
@media (max-width: 1024px) {
  :root { --section-pad: 52px; }

  /* Hero */
  .hero-section { min-height: unset; }
  .hp-item { padding: 0 16px; }

  /* Process: wrap into 2 columns */
  .proc-track::before { display: none; }
  .proc-track { flex-wrap: wrap; gap: 0; }
  .proc-step { width: 45%; min-width: 140px; margin-bottom: 24px; }

  /* Case metrics: 2×2 */
  .cs-metrics { grid-template-columns: repeat(2,1fr); }

  /* Estimator: stack label + options */
  .est-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .est-label { width: auto; }

  /* Why-us: reduce padding */
  .why-item { padding: 16px; }

  /* Footer cols: adjust spacing */
  .footer-col h4 { margin-bottom: 12px; }
}

/* ── MOBILE ≤768px ── */
@media (max-width: 768px) {
  :root { --section-pad: 40px; }

  /* ── HERO ── */
  .hero-section {
    min-height: unset;
    padding-top: 80px;
    padding-bottom: 32px;
  }

  /* Hero row: reduce gap from g-5 (3rem) — override via negative margin trick */
  .hero-section .row.g-5 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.5rem;
  }

  .hero-text h1 { font-size: 1.65rem; line-height: 1.12; }
  .hero-sub { font-size: 14px; line-height: 1.65; margin-bottom: 16px; }

  /* CTAs: full width, stacked, min 48px touch height */
  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 16px; }
  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
  }

  /* Trust row: smaller gap */
  .hero-trust-row { gap: 12px; padding-top: 12px; }
  .htr-item { font-size: 11px; }

  /* Proof bar: 3-column grid, hide last 2 items */
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 28px;
    padding: 0;
    background: rgba(255,255,255,.04);
    gap: 0;
  }
  .hp-item { padding: 14px 8px; background: transparent; }
  .hp-sep { display: none; }
  .hp-num { font-size: 1.3rem; }
  .hp-lbl { font-size: 9.5px; letter-spacing: 0.04em; }
  .hero-proof .hp-item:nth-child(n+9) { display: none; } /* hide seps after 3rd */
  /* Show only first 3 stats (items are at pos 1,3,5,7,9 with seps at 2,4,6,8) */
  .hero-proof > *:nth-child(n+6) { display: none; }

  /* ── WHAT-IS ── */
  .wi-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wi-card { padding: 16px; }

  /* ── SERVICES ── */
  .service-card { padding: 18px; }
  .service-card h3 { font-size: 15px; }
  .svc-icon { margin-bottom: 12px; }

  /* ── WHY-US ── */
  .why-item { padding: 16px; }
  .why-num { font-size: 2rem; margin-bottom: 6px; }

  /* ── COMPARISON TABLE ── */
  .table-section { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comp-table th, .comp-table td { padding: 10px 10px; font-size: 12px; }

  /* ── STATS BAND ── */
  .stat-item { padding: 28px 12px; }
  .stat-item .big { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* ── INDUSTRIES ── */
  .ind-card { padding: 18px 14px; }
  .ind-card h3 { font-size: 14px; }

  /* ── PROCESS ── */
  .proc-track { flex-direction: column; gap: 0; }
  .proc-step {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 0 20px 0;
  }
  .proc-dot { margin: 0; flex-shrink: 0; width: 36px; height: 36px; font-size: 11px; }
  .proc-step h3 { font-size: 14px; }

  /* ── CASE STUDIES ── */
  .cs-tabs { flex-direction: column; gap: 8px; }
  .cs-tab { width: 100%; justify-content: flex-start; min-height: 44px; }
  .cs-metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cs-panel h3 { font-size: 1.15rem; }
  .cs-spec-card { margin-top: 20px; padding: 18px; }

  /* ── TESTIMONIALS ── */
  .testi-card { padding: 18px; margin: 4px 6px; }
  .testi-card p { font-size: 13px; }

  /* ── PRICING ── */
  .eng-card h3 { font-size: 16px; }
  .eng-card p { font-size: 13px; }
  .eng-feature { font-size: 12.5px; padding: 7px 10px; }

  /* ── ESTIMATOR ── */
  .est-card { padding: 18px; }
  .est-opts { gap: 6px; }
  .est-opt { padding: 7px 12px; font-size: 12px; min-height: 38px; }
  .est-result { padding: 20px; }
  .est-price { font-size: 1.8rem; }

  /* ── FAQ ── */
  /* FAQ and contact stack — reduce gap */
  #faq .row.g-5 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 2rem;
  }
  .faq-trigger .faq-q { font-size: 13.5px; }
  .faq-body p { font-size: 13px; padding-bottom: 14px; }
  .faq-resources { padding: 16px; }
  .contact-card { padding: 20px; }
  .f-input, .f-textarea { padding: 10px 14px; font-size: 14px; }
  .btn-submit { min-height: 48px; font-size: 14px; }

  /* ── CTA BAND ── */
  .cta-band { padding: 40px 0; }
  .cta-band h2 { font-size: 1.5rem; }
  .btn-cta-primary, .btn-cta-outline { padding: 12px 24px; font-size: 14px; min-height: 48px; }

  /* ── CAREERS ── */
  .careers-bar { padding: 18px 0; }
  .btn-careers { min-height: 44px; }

  /* ── FOOTER ── */
  .footer-bottom { text-align: center; justify-content: center; flex-direction: column; gap: 16px; }
  footer { padding: 36px 0 0; }
  .footer-desc { max-width: 100%; font-size: 13px; }

  /* ── BREADCRUMB ── */
  .bc-list { padding: 10px 16px; font-size: 12px; flex-wrap: wrap; gap: 4px; }
}

/* ── SMALL PHONES ≤480px ── */
@media (max-width: 480px) {

  /* Hero */
  .hero-section { padding-top: 76px; padding-bottom: 28px; }
  .hero-badge { font-size: 9.5px; padding: 5px 11px; white-space: normal; text-align: center; }
  .hero-text h1 { font-size: 1.45rem; }
  .hero-sub { font-size: 13px; }
  .hero-trust-row { gap: 8px; }
  .htr-sep { display: none; }

  /* What-is: single column on very small screens */
  .wi-grid { grid-template-columns: 1fr; }
  .wi-card h3 { font-size: 13.5px; }

  /* Nav mega menu: single column */
  .mega-menu-inner { grid-template-columns: 1fr; }

  /* Process: compact */
  .proc-dot { width: 32px; height: 32px; font-size: 10px; }

  /* Case studies */
  .cs-metrics { grid-template-columns: 1fr 1fr; gap: 8px; }
  .csm-val { font-size: 1.3rem; }
  .csc-row { font-size: 12px; padding: 8px 0; }

  /* Table */
  .comp-table th, .comp-table td { padding: 8px 7px; font-size: 11px; }

  /* Estimator options: wrap tighter */
  .est-opt { padding: 7px 10px; font-size: 11.5px; }
  .est-price { font-size: 1.6rem; }

  /* Footer: stack all columns to full width */
  .footer-col h4 { margin-top: 8px; }
  .footer-links { gap: 6px; }
  .footer-links a { font-size: 12.5px; }

  /* Testimonials */
  .testi-card { padding: 16px; margin: 4px 2px; }
  .stars { font-size: 13px; margin-bottom: 10px; }
  .tname { font-size: 12px; }
  .trole { font-size: 10px; }

  /* Floating contact */
  .floating-contact a { width: 40px; height: 40px; font-size: 19px; }
}

/* ── TINY / VERY SMALL ≤360px ── */
@media (max-width: 360px) {
  :root { --section-pad: 32px; }

  /* Hero */
  .hero-text h1 { font-size: 1.3rem; }
  .hero-badge { font-size: 9px; padding: 4px 10px; }
  .hero-sub { font-size: 12.5px; }

  /* Stats band: 2×2 layout fine */
  .stat-item { padding: 20px 8px; }
  .stat-item .big { font-size: 1.5rem; }

  /* Section headings */
  h2 { font-size: 1.4rem; }
  h3 { font-size: 0.95rem; }

  /* Why item: tight */
  .why-item { padding: 14px; }
  .why-num { font-size: 1.8rem; }

  /* Estimator: max width */
  .est-opt { padding: 6px 8px; font-size: 11px; }

  /* Contact */
  .contact-card { padding: 16px; }

  /* Footer columns: always full width on tiny screens */
  .col-6[class*="footer"] { width: 100% !important; }

  /* Table: smallest readable */
  .comp-table th, .comp-table td { padding: 7px 6px; font-size: 10.5px; }

  /* Floating buttons */
  .floating-contact a { width: 38px; height: 38px; font-size: 18px; }
}


/* ═══════════════════════════════════════════════════════
   NEW SECTIONS CSS
   Tech Stack Dark · Comparison Dark · Who Needs ·
   ROI · Methodology · Mistakes · Team
═══════════════════════════════════════════════════════ */

/* ── TECH STACK DARK (Image 1 match) ── */
.tech-stack-dark {
  background: var(--bg-navy);
  padding: var(--section-pad) 0;
}

.tsd-header {
  margin-bottom: 48px;
}

.tsd-header h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 10px;
}

.tsd-header p {
  color: rgba(255,255,255,.5);
  font-size: 15px;
}

.tsd-header .section-label {
  color: var(--primary);
  margin-bottom: 10px;
}

.tsd-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.tsd-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
  cursor: default;
}

.tsd-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(37,99,235,.4);
  transform: translateY(-3px);
}

.tsd-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tsd-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0.9);
}

.tsd-card span {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-align: center;
}

@media (max-width: 1024px) {
  .tsd-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .tsd-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .tsd-card { padding: 20px 12px 16px; }
  .tsd-header { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .tsd-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .tsd-card { padding: 16px 8px 12px; }
  .tsd-card span { font-size: 11px; }
  .tsd-icon img { width: 32px; height: 32px; }
}

/* ── COMPARISON TABLE DARK (Image 2 match) ── */
.comp-dark-wrap {
  background: var(--bg-navy2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.comp-dark-header {
  padding: 36px 40px 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.comp-dark-header h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.comp-dark-header p {
  color: rgba(255,255,255,.5);
  font-size: 14px;
}

.comp-dark-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comp-dark-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.comp-dark-table thead th {
  padding: 14px 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.comp-dark-table thead .col-zealicon {
  color: var(--primary);
}

.comp-dark-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: middle;
}

.comp-dark-table tr:last-child td { border-bottom: none; }

.comp-dark-table .factor-label {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 14px;
  width: 28%;
}

.comp-dark-table .val-zealicon {
  color: #22C55E;
  font-weight: 600;
  font-size: 14px;
}

.comp-dark-table .val-other {
  color: rgba(255,255,255,.4);
  font-size: 14px;
}

.comp-dark-table tr:hover td {
  background: rgba(255,255,255,.03);
}

@media (max-width: 768px) {
  .comp-dark-header { padding: 24px 20px 18px; }
  .comp-dark-table td, .comp-dark-table thead th { padding: 12px 14px; font-size: 12.5px; }
}

/* ── WHO NEEDS SECTION ── */
.who-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}

.who-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(37,99,235,.1);
  transform: translateY(-3px);
}

.who-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 16px;
}

.who-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.who-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .who-card { padding: 20px; }
}

/* ── ROI SECTION ── */
.roi-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roi-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg-light);
  border-radius: var(--r-md);
  border-left: 3px solid var(--primary);
}

.roi-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  white-space: nowrap;
  min-width: 70px;
}

.roi-lbl {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
}

.roi-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}

.roi-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.roi-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  font-size: 20px;
}

.roi-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.roi-card p {
  font-size: 13px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .roi-stats { flex-direction: row; flex-wrap: wrap; }
  .roi-stat { flex: 1 1 140px; flex-direction: column; gap: 4px; text-align: center; }
  .roi-val { min-width: unset; }
}

/* ── METHODOLOGY ── */
.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.method-tag {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(37,99,235,.15);
}

.method-differentiator {
  background: var(--bg-navy);
  border-radius: var(--r-xl);
  padding: 32px;
}

.method-differentiator h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 12px;
}

.method-differentiator > p {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.method-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.method-stat {
  text-align: center;
  padding: 16px 8px;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.08);
}

.ms-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.ms-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .method-stat-row { grid-template-columns: 1fr; gap: 10px; }
  .method-differentiator { padding: 22px; }
  .ms-val { font-size: 1.5rem; }
}

/* ── MISTAKES ── */
.mistakes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mistake-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.mistake-item:last-child { border-bottom: none; }

.mistake-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

.mistake-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.mistake-body p {
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .mistake-item { gap: 16px; padding: 20px 0; }
  .mistake-num { width: 38px; height: 38px; font-size: 11px; }
  .mistake-body h3 { font-size: 15px; }
  .mistake-body p { font-size: 13px; }
}

/* ── TEAM ── */
.team-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.cert-badge iconify-icon {
  color: var(--primary);
  font-size: 13px;
}

.team-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.team-stat-card {
  background: var(--bg-navy);
  border-radius: var(--r-xl);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ts-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.ts-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.ts-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
}

@media (max-width: 480px) {
  .team-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .team-stat-card { padding: 20px 16px; }
  .ts-val { font-size: 1.8rem; }
  .cert-badge { font-size: 11px; padding: 5px 11px; }
}
