/* ============================================================
   IT Contractors Pvt Ltd — Enterprise Design System
   Plus Jakarta Sans (headings) / IBM Plex Sans (body)
   Navy #1E2A38 · Gold #B89B5E · Warm White #FAFAF8
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Enterprise palette */
  --navy:        #1E2A38;
  --navy-mid:    #2A3A4D;
  --navy-dark:   #141D27;
  --slate:       #5B6470;
  --slate-light: #8C949E;
  --gold:        #B89B5E;
  --gold-dark:   #9A7F47;
  --gold-light:  #D4B87A;
  --warm-white:  #FAFAF8;
  --ivory:       #F5F4EF;
  --graphite:    #222831;
  --mid-gray:    #3D4450;
  --border:      #E5E7EB;
  --border-mid:  #D1D5DB;
  --white:       #FFFFFF;

  /* Semantic aliases (keep HTML working) */
  --clr-bg:            var(--warm-white);
  --clr-bg2:           var(--ivory);
  --clr-surface:       var(--white);
  --clr-text:          var(--graphite);
  --clr-muted:         var(--slate);
  --clr-muted2:        var(--slate-light);
  --clr-accent:        var(--navy);
  --clr-accent-dark:   var(--navy-dark);
  --clr-accent2:       var(--gold);
  --clr-highlight:     var(--gold);
  --clr-border:        var(--border);
  --clr-dark-text:     var(--graphite);
  --clr-dark-secondary: var(--mid-gray);
  --clr-light:         var(--white);
  --clr-light-bg:      var(--warm-white);
  --clr-light-surface: var(--white);
  --clr-light-border:  var(--border);
  --clr-success:       #2D6A4F;
  --clr-error:         #9B1C1C;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'IBM Plex Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  0.875rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Shape — max 4px across the board */
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  4px;
  --radius-xl:  4px;
  --radius-full: 4px;

  /* Shadows — restrained, corporate */
  --shadow-sm: 0 1px 3px rgba(30,42,56,0.06);
  --shadow-md: 0 2px 10px rgba(30,42,56,0.08);
  --shadow-lg: 0 4px 20px rgba(30,42,56,0.10);

  --transition:      all 0.18s ease;
  --transition-slow: all 0.28s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--graphite);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: var(--transition); }
ul  { list-style: none; }

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

/* ============================================================
   3. TYPOGRAPHY SCALE
   ============================================================ */
.display-1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.display-2 {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.75vw, 2.125rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--navy);
}

.heading-md {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
}

.body-lg { font-size: 1.125rem; line-height: 1.75; color: var(--slate); }
.body-md { font-size: 1rem;     line-height: 1.7;  color: var(--slate); }
.body-sm { font-size: 0.875rem; line-height: 1.65; color: var(--slate); }

.label-sm {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

/* Gold accent word highlight — replaces gradient-text */
.gradient-text {
  color: var(--gold);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.text-accent   { color: var(--navy); }
.text-accent2  { color: var(--gold); }
.text-gold     { color: var(--gold); }
.text-navy     { color: var(--navy); }
.text-muted-dark  { color: var(--slate); }
.text-muted-light { color: var(--slate); }

/* ============================================================
   4. LAYOUT & UTILITIES
   ============================================================ */
.container-itc {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section backgrounds — light throughout */
.section-dark      { background: var(--ivory);      color: var(--graphite); }
.section-dark2     { background: var(--warm-white);  color: var(--graphite); }
.section-light     { background: var(--white);       color: var(--graphite); }
.section-light-alt { background: var(--ivory);       color: var(--graphite); }

.section-pad    { padding: 5.5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* Section eyebrow label — gold rule + all-caps, no pill */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.125rem;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Hide Bootstrap Icons inside section labels (decorative only) */
.section-label i { display: none; }
.section-label.label-light { color: var(--gold); }

/* Divider — gold, square end */
.section-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 0;
  margin: 0.875rem 0 1.5rem;
}

/* Scroll-in animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible  { opacity: 1; transform: translateY(0); }
.fade-up-delay-1  { transition-delay: 0.1s; }
.fade-up-delay-2  { transition-delay: 0.2s; }
.fade-up-delay-3  { transition-delay: 0.3s; }
.fade-up-delay-4  { transition-delay: 0.4s; }

/* ============================================================
   5. BUTTONS — RECTANGULAR, ENTERPRISE
   ============================================================ */
.btn-itc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-itc:hover { transform: none; text-decoration: none; }

/* Primary: Navy → hover Gold */
.btn-primary-itc {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-primary-itc:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Secondary: Navy border/text → hover Navy fill */
.btn-outline-itc {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-itc:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-mid);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Gold CTA */
.btn-gold-itc {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-gold-itc:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

.btn-lg-itc {
  padding: 0.9rem 2.25rem;
  font-size: 0.9375rem;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

/* Homepage transparent nav — same bg as hero (warm-white), no blur */
.site-nav.nav-transparent,
.site-nav.nav-transparent-init {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

.site-nav.nav-scrolled,
.site-nav.nav-solid {
  background: var(--white);
  box-shadow: 0 1px 8px rgba(30,42,56,0.07);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-logo  { width: 32px; height: 32px; object-fit: contain; }

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid-gray);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.15s ease;
  white-space: nowrap;
  border-radius: 0;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--navy); background: none; }

.nav-links > li > a.active { color: var(--navy); font-weight: 600; }
.nav-links .nav-caret        { font-size: 0.65rem; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 196px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.375rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 100;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.5625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid-gray);
  border-radius: 0;
  transition: color 0.12s ease, background 0.12s ease;
}

.nav-dropdown a:hover { background: var(--ivory); color: var(--navy); }

.nav-cta { margin-left: 1.25rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 7px;
  border-radius: var(--radius-md);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--navy);
  border-radius: 0;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}

.nav-mobile.open { display: block; }

.nav-mobile a,
.nav-mobile .mobile-section-title {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--mid-gray);
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--navy); }

.mobile-section-title {
  font-family: var(--font-heading) !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light) !important;
  padding-top: 1.125rem !important;
}

.mobile-sub-link { padding-left: 1rem !important; }

/* ============================================================
   7. HERO — ENTERPRISE, CLEAN
   ============================================================ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: var(--warm-white);
  overflow: hidden;
  padding-top: 68px;
  border-bottom: 1px solid var(--border);
}

/* Fine engineering grid background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,42,56,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,42,56,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* Fade grid out toward center so heading reads clean */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 38% 50%, var(--warm-white) 25%, transparent 75%),
    linear-gradient(to right, var(--warm-white) 10%, transparent 50%);
  pointer-events: none;
}

/* Gold left-edge rule — structural accent */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  z-index: 2;
}

/* Content: left-aligned for enterprise authority */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: left;
  padding: 5rem 0;
}

/* Enterprise eyebrow — repurposed .hero-badge as gold rule label */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Hide the animated pulse dot */
.hero-badge-dot { display: none; }

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 520px;
  margin: 0 0 2.5rem;
  line-height: 1.75;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Kill all blob / arc decorations */
.hero-blob, .hero-blob-1, .hero-blob-2, .hero-blob-3,
.hero-arc, .hero-arc-2 { display: none; }

/* ============================================================
   8. TRUST / STATS STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  overflow: hidden;
}

.trust-item {
  background: var(--white);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: background 0.15s ease;
  border-radius: 0;
}

.trust-item:hover { background: var(--ivory); }

.trust-stat {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.4;
}

/* ============================================================
   9. SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 3rem;
  background: var(--border);
  box-shadow: none;
  border-radius: 0;
}

.service-card {
  background: var(--white);
  padding: 2.25rem 2rem;
  transition: background 0.18s ease;
  position: relative;
  border-radius: 0;
}

/* Left border highlight on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.service-card:hover { background: var(--ivory); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s ease, color 0.15s ease;
}

.service-link:hover { gap: 8px; color: var(--gold-dark); }

/* ============================================================
   10. AI FOCUS / CAPABILITIES
   ============================================================ */
.ai-focus { background: var(--warm-white); }

.ai-focus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.ai-focus-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.ai-focus-text p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.ai-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ai-chips-full { flex-wrap: nowrap; margin: 1.75rem 0 0; justify-content: space-between; }

/* Chips — rectangular, corporate */
.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4375rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ai-chip:hover { border-color: var(--gold); background: var(--ivory); }
.ai-chip i { color: var(--gold); font-size: 0.85rem; }

.ai-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--border);
  box-shadow: none;
  border-radius: 0;
  margin-top: 2.5rem;
}

.ai-feature-item {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.15s ease;
  border-radius: 0;
}

.ai-feature-item:hover { background: var(--ivory); }

.ai-feature-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--gold);
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.ai-feature-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.ai-feature-item p { font-size: 0.8125rem; color: var(--slate); line-height: 1.55; }

/* ============================================================
   11. TECH STACK
   ============================================================ */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.tech-stack-col h3 {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.tech-pills { display: flex; flex-direction: column; gap: 0.4rem; }

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.5rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid-gray);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.tech-pill:hover { border-color: var(--navy); color: var(--navy); background: var(--ivory); }
.tech-pill i { font-size: 0.9375rem; color: var(--navy); }

/* ============================================================
   12. WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

.why-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 2.25rem 1.75rem;
  transition: background 0.15s ease;
  position: relative;
}

/* Bottom gold rule on hover */
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.75rem; right: 1.75rem;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.why-card:hover { background: var(--ivory); transform: none; }
.why-card:hover::after { opacity: 1; }

.why-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--navy);
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.why-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* ============================================================
   13. CTA SECTION — IVORY WITH GOLD ACCENT
   ============================================================ */
.cta-section {
  background: var(--ivory);
  border-top: none;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Gold top rule */
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

/* No dot grid */
.cta-section::before { display: none; }

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.cta-section p {
  color: var(--slate);
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ============================================================
   14. PAGE HERO — INNER PAGES
   ============================================================ */
.page-hero {
  background: var(--ivory);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Fine grid — fades vertically */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,42,56,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,42,56,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 40%, transparent 100%);
}

/* Gold left-edge rule */
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  z-index: 2;
}

.page-hero-blob { display: none; }
.page-hero-content { position: relative; z-index: 1; }

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.page-hero-breadcrumb a { color: var(--slate); }
.page-hero-breadcrumb a:hover { color: var(--navy); }
.page-hero-breadcrumb span { opacity: 0.5; }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.125rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.0625rem;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   15. ABOUT PAGE
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

.pillar-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 2rem 1.75rem;
  text-align: left;
  transition: background 0.15s ease;
  box-shadow: none;
  position: relative;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.pillar-card:hover { background: var(--ivory); transform: none; }
.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--navy);
  font-size: 1.375rem;
  margin: 0 0 1rem;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pillar-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

/* ISO callout — left gold rule */
.iso-callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.iso-logo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  flex-shrink: 0;
  background: #fff;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.iso-text h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.iso-text p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }

/* Leadership grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

.leader-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 2rem 1.75rem;
  transition: background 0.15s ease;
  position: relative;
}

.leader-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.leader-card:hover { background: var(--ivory); box-shadow: none; }
.leader-card:hover::before { opacity: 1; }

.leader-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.leader-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.leader-role { font-size: 0.8125rem; color: var(--gold); font-weight: 500; margin-bottom: 0.75rem; }
.leader-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.6; }

/* ============================================================
   16. SERVICES PAGE
   ============================================================ */
.services-nav {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.services-nav-btn {
  padding: 0.75rem 1.25rem;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate);
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.services-nav-btn:last-child { border-right: none; }
.services-nav-btn:hover { background: var(--ivory); color: var(--navy); }

.services-nav-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.services-nav-btn i { display: none; }

.service-category { scroll-margin-top: 90px; }

.service-category-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.service-category-num {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 0;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.service-category h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.service-category > .service-category-header > div > p {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: none;
  border-radius: 0;
  transition: background 0.15s ease;
}

.service-list-item:hover { background: var(--ivory); }

.services-list-grid .service-list-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.service-list-item i { color: var(--gold); font-size: 0.9375rem; margin-top: 2px; flex-shrink: 0; }

.service-list-item span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--mid-gray);
  line-height: 1.4;
}

.service-section-divider {
  height: 1px;
  background: var(--border);
  margin: 3.5rem 0;
}

/* ============================================================
   17. CAREERS PAGE
   ============================================================ */
.careers-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

.value-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background 0.15s ease;
  box-shadow: none;
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.value-card:hover { background: var(--ivory); transform: none; }
.value-card:hover::before { opacity: 1; }

.value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--navy);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

.culture-item {
  text-align: left;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: none;
  border-radius: 0;
  transition: background 0.15s ease;
}

.culture-item:hover { background: var(--ivory); }
.culture-item i { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.875rem; display: block; }

.culture-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.culture-item p { font-size: 0.8125rem; color: var(--slate); line-height: 1.55; }

/* ============================================================
   18. FORMS
   ============================================================ */
.form-section {
  background: var(--white);
  border-radius: 0;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: none;
}

.form-section h2 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.form-section > p { color: var(--slate); font-size: 0.9375rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.form-label .req { color: var(--clr-error); margin-left: 2px; }

.form-control-itc {
  width: 100%;
  padding: 0.6875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-control-itc:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,42,56,0.08);
}

.form-control-itc::placeholder { color: #AAB2BC; }
textarea.form-control-itc { resize: vertical; min-height: 140px; }

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1.5px dashed var(--border-mid);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  text-align: center;
  gap: 0.5rem;
  background: var(--ivory);
}

.file-upload-label:hover { border-color: var(--navy); background: var(--white); }
.file-upload-label i { font-size: 1.75rem; color: var(--navy); }
.file-upload-label span { font-size: 0.9rem; font-weight: 500; color: var(--mid-gray); }
.file-upload-hint { font-size: 0.8125rem; color: var(--slate); margin-top: 0.5rem; }

input[type="file"] { display: none; }
.form-recaptcha { margin: 1.25rem 0; }
.form-submit { width: 100%; justify-content: center; padding: 0.875rem; font-size: 1rem; }

#note, #contact_results { margin-top: 1rem; }

#note .alert, #contact_results .alert {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  border-left: 4px solid;
}

.alert-success { border-color: var(--clr-success); color: var(--clr-success); background: #F0F7F4; }
.alert-danger  { border-color: var(--clr-error);   color: var(--clr-error);   background: #FDF2F2; }

/* ============================================================
   19. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.contact-info > p {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.contact-office {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0;
  padding: 1.375rem 1.5rem;
  margin-bottom: 1rem;
  transition: background 0.15s ease;
}

.contact-office:hover { background: var(--ivory); }

.contact-office-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.contact-office-flag {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
}

.contact-office h3 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-office address { font-style: normal; font-size: 0.875rem; color: var(--slate); line-height: 1.65; }

.contact-office-map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.75rem;
  transition: gap 0.15s ease, color 0.15s ease;
}

.contact-office-map-link:hover { gap: 8px; color: var(--gold-dark); }

/* ============================================================
   20. FOOTER — DARK NAVY (isolated from CSS vars above)
   ============================================================ */
.site-footer {
  background: #1E2A38;
  border-top: 3px solid #B89B5E;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-brand-logo { width: 30px; height: 30px; object-fit: contain; }

.footer-brand-name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F0EEE9;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #7A838E;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-iso {
  display: block;
  padding: 0;
  background: none;
  border: none;
  max-width: 280px;
  transition: opacity 0.15s ease;
}

.footer-iso:hover { opacity: 0.85; }

.footer-iso-logo {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-iso-text { display: none; }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7A838E;
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-links a { font-size: 0.875rem; color: #5A636F; transition: color 0.15s ease; }
.footer-links a:hover { color: #F0EEE9; }

.footer-offices { display: flex; flex-direction: column; gap: 1.25rem; }

.footer-office h5 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #7A838E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}

.footer-office p { font-size: 0.8125rem; color: #5A636F; line-height: 1.65; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright { font-size: 0.8125rem; color: #3E4854; }

.footer-social { display: flex; gap: 0.375rem; }

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  color: #5A636F;
  font-size: 0.9375rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover { background: #B89B5E; border-color: #B89B5E; color: #fff; }

/* ============================================================
   21. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .trust-grid       { grid-template-columns: repeat(3, 1fr); }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .ai-focus-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .ai-features-list { grid-template-columns: 1fr; }
  .ai-chips-full    { flex-wrap: wrap; justify-content: flex-start; }
  .tech-stack-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-pillars    { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid  { grid-template-columns: repeat(2, 1fr); }
  .contact-layout   { grid-template-columns: 1fr; }
  .careers-values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   IMAGE PLACEHOLDERS
   Shown as styled boxes until real images are dropped in.
   Each wrapper carries data-img-name so the filename is visible.
   Once the img loads, add class .img-loaded to hide the label.
   ============================================================ */
.img-ph {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  border: 2px dashed var(--border-mid);
  display: block;
}
.img-ph img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-ph::after {
  content: attr(data-img-name);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate);
  background: var(--ivory);
  pointer-events: none;
  text-align: center;
  padding: 1rem;
}
.img-ph.img-loaded::after { display: none; }
.img-ph.img-loaded { border: none; }

/* Hero split — text left, image right */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}
.hero-image-col {
  display: flex;
  align-items: stretch;
  padding: 5rem 0;
}
.hero-img-ph {
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius-md);
}

/* AI Focus image — above feature list */
.ai-focus-img-ph {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
}

/* About overview image — replaces stats column */
.about-overview-img-ph {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
}

/* About story — text + image side-by-side */
.about-story-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
  max-width: 100%;
}
.about-story-img-ph {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  position: sticky;
  top: 120px;
}


/* Service category banner image */
.service-cat-img-ph {
  aspect-ratio: 21 / 8;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

/* Career culture banner image */
.career-culture-img-ph {
  aspect-ratio: 21 / 7;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 3.5rem;
    --space-3xl: 4.5rem;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle  { display: flex; }
  .nav-inner   { height: 60px; }
  .nav-mobile  { top: 60px; }

  .hero { padding-top: 60px; min-height: 70vh; }
  .hero-content { padding: 3.5rem 0; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-split { grid-template-columns: 1fr; gap: 0; }
  .hero-image-col { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid .trust-item:last-child { grid-column: 1 / -1; }

  .services-grid     { grid-template-columns: 1fr; }
  .tech-stack-grid   { grid-template-columns: 1fr 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .about-pillars     { grid-template-columns: 1fr; }
  .leadership-grid   { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .culture-grid      { grid-template-columns: repeat(2, 1fr); }
  .form-row          { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .iso-callout       { flex-direction: column; gap: 1rem; }
  .services-nav      { flex-wrap: nowrap; overflow-x: auto; }
  .about-story-split { grid-template-columns: 1fr; }
  .about-story-img-ph { position: static; aspect-ratio: 16 / 9; }
  .service-cat-img-ph { aspect-ratio: 16 / 6; }

  .container-itc { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid .trust-item:last-child { grid-column: auto; }
  .tech-stack-grid { grid-template-columns: 1fr; }
  .culture-grid    { grid-template-columns: 1fr; }
  .hero-ctas .btn-itc { width: 100%; justify-content: center; }
  .btn-lg-itc { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}
