/* ==========================================================================
   WideLabs — Renewed Website
   Design system: WideLabs blue branding + Thoughtworks-inspired layout
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --wl-blue:        #1f5bc4;   /* primary brand blue */
  --wl-blue-dark:   #163f87;   /* darker blue */
  --wl-blue-bright: #3b7de0;   /* lighter accent blue */
  --navy:           #0b2342;   /* dark sections / footer */
  --navy-deep:      #081a33;   /* deepest dark */
  --ink:            #0e1b2c;   /* headings */
  --slate:          #51617a;   /* body text muted */
  --slate-light:    #8693a7;   /* faint text */
  --line:           #e3e8f0;   /* borders */
  --bg:             #ffffff;
  --bg-alt:         #f3f6fb;   /* light section background */
  --bg-tint:        #eef3fb;   /* blue-tinted panel */
  --white:          #ffffff;

  --radius:     10px;
  --radius-sm:  6px;
  --radius-lg:  18px;
  --shadow-sm:  0 2px 10px rgba(11, 35, 66, .06);
  --shadow-md:  0 14px 40px rgba(11, 35, 66, .10);
  --shadow-lg:  0 30px 70px rgba(11, 35, 66, .16);

  --maxw: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', var(--font-body);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* offset anchored targets so they clear the sticky header */
[id] { scroll-margin-top: 104px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.95rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.13rem; letter-spacing: -0.01em; }

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

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wl-blue);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--wl-blue);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--wl-blue-bright); }
.eyebrow.on-dark::before { background: var(--wl-blue-bright); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #cdd8e8; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { font-size: 1.08rem; }

.lead { font-size: 1.2rem; color: var(--slate); line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .98rem;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--wl-blue); color: #fff; }
.btn-primary:hover { background: var(--wl-blue-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31, 91, 196, .34); }

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

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #eef3fb; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--wl-blue); color: var(--wl-blue); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.32);
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--wl-blue);
  font-size: .98rem;
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo img { height: 50px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.main-nav a {
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--wl-blue);
  transition: width .25s var(--ease);
}
.main-nav a:not(.nav-cta):hover { color: var(--wl-blue); }
.main-nav a:not(.nav-cta):hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--wl-blue); }

.nav-cta {
  background: var(--wl-blue);
  color: #fff !important;
  padding: 12px 24px !important;
  border-radius: var(--radius-sm);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--wl-blue-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero — home
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0d2a52 0%, var(--navy) 55%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
  padding: 120px 0 132px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 30%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 80% at 70% 30%, #000 0%, transparent 75%);
}
.hero-glow {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,125,224,.42) 0%, transparent 68%);
  top: -200px; right: -160px;
  filter: blur(10px);
  pointer-events: none;
}
.hero-glow.two {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(31,91,196,.34) 0%, transparent 70%);
  top: auto; bottom: -220px; right: 40%;
}
.hero .container { position: relative; z-index: 2; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { color: #fff; margin: 22px 0; }
.hero h1 .accent,
.page-hero h1 .accent {
  color: var(--wl-blue-bright);
  background: linear-gradient(120deg, #5b9bff, #8fc0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.18rem;
  color: #b8c6da;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual — abstract node graphic */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
}
.hero-visual svg { width: 100%; height: 100%; overflow: visible; }
.hero-card {
  position: absolute;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.hero-card svg { width: 22px; height: 22px; color: var(--wl-blue-bright); }
.hero-card span { font-weight: 600; font-size: .92rem; color: #fff; }
.hero-card.c1 { top: 8%;  left: -6%; }
.hero-card.c2 { top: 44%; right: -8%; }
.hero-card.c3 { bottom: 6%; left: 12%; }

/* ---------- Hero stat bar ---------- */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 38px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}
.hero-stat .label { font-size: .92rem; color: #9fb0c6; margin-top: 2px; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, #0d2a52 0%, var(--navy) 70%);
  color: #fff;
  padding: 116px 0 96px;
  overflow: hidden;
}
.page-hero .hero-grid-bg,
.page-hero .hero-glow { z-index: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin: 20px 0 18px; max-width: 13ch; }
.page-hero p { font-size: 1.18rem; color: #b8c6da; max-width: 620px; }
.breadcrumb {
  font-size: .9rem;
  color: #8093ab;
  margin-bottom: 6px;
}
.breadcrumb a:hover { color: #fff; }

/* Page hero with a photo background (Contact page) */
.page-hero--photo .hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.page-hero--photo .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(9,24,48,.93) 0%, rgba(9,24,48,.72) 50%, rgba(9,24,48,.40) 100%),
    linear-gradient(180deg, rgba(9,24,48,0) 40%, rgba(9,24,48,.62) 100%);
}

/* Page hero — two-column layout with an SVG visual (Products, About) */
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.page-hero--visual h1 { max-width: none; }

/* ==========================================================================
   Pillars / value strip
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar .ico {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-tint);
  color: var(--wl-blue);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.pillar .ico svg { width: 26px; height: 26px; }
.pillar h3 { margin-bottom: 8px; }
.pillar p { font-size: .98rem; }

/* ==========================================================================
   Feature split (image + text)
   ========================================================================== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-split.flip .feature-media { order: 2; }
.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-tint);
}
.feature-media picture { display: block; height: 100%; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.3; }
.feature-media .media-badge {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}
.media-badge .mb-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--wl-blue); }
.media-badge .mb-text { font-size: .85rem; color: var(--slate); }

.feature-text h2 { margin-bottom: 18px; }
.feature-text p { font-size: 1.06rem; margin-bottom: 16px; }
.feature-list { margin: 24px 0 30px; display: grid; gap: 14px; }
.feature-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.feature-list li svg {
  width: 22px; height: 22px;
  color: var(--wl-blue);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   Card grid (services / industries / reasons)
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--wl-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card .ico {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--bg-tint);
  color: var(--wl-blue);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.card .ico svg { width: 28px; height: 28px; }
.card:hover .ico { background: var(--wl-blue); color: #fff; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { font-size: .97rem; }

/* numbered card variant */
.card .card-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wl-blue);
  background: var(--bg-tint);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 20px;
}

/* ==========================================================================
   Products
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 36px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}
.product-icon {
  width: 60px; height: 60px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--wl-blue), var(--wl-blue-bright));
  color: #fff;
  display: grid; place-items: center;
}
.product-icon svg { width: 30px; height: 30px; }
.product-titles { flex: 1; }
.product-titles h3 { font-size: 1.36rem; margin-bottom: 2px; }
.product-tag {
  font-size: .92rem;
  color: var(--wl-blue);
  font-weight: 600;
  font-style: italic;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--wl-blue-dark);
  background: var(--bg-tint);
  padding: 5px 11px;
  border-radius: 50px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.product-badge svg { width: 13px; height: 13px; }
.product-card > p { font-size: 1rem; margin-bottom: 20px; }
.product-features {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.product-features li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .94rem;
  color: var(--slate);
}
.product-features li svg {
  width: 18px; height: 18px;
  color: var(--wl-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Timeline
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 8px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--wl-blue), var(--line));
}
.tl-item {
  position: relative;
  padding: 0 0 40px 44px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--wl-blue);
}
.tl-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--wl-blue);
  margin-bottom: 4px;
}
.tl-item h4 { margin-bottom: 6px; }
.tl-item p { font-size: .97rem; }

/* ==========================================================================
   Clients / logos
   ========================================================================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.client-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  min-height: 84px;
  transition: transform .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.client-chip:hover { transform: translateY(-4px); color: var(--wl-blue); border-color: var(--wl-blue); }
.section--navy .client-chip {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: #e6edf6;
}
.section--navy .client-chip:hover { color: #fff; border-color: var(--wl-blue-bright); }

/* sector list with labels */
.sector-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sector {
  text-align: center;
  padding: 38px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.sector:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.sector .ico {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--wl-blue);
  display: grid; place-items: center;
}
.sector .ico svg { width: 30px; height: 30px; }
.sector h4 { font-size: 1.16rem; margin-bottom: 6px; }
.sector p { font-size: .94rem; }

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-block .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  color: var(--wl-blue);
  letter-spacing: -.02em;
}
.section--navy .stat-block .num { color: var(--wl-blue-bright); }
.stat-block .label {
  font-size: .98rem;
  color: var(--slate);
  margin-top: 4px;
}
.section--navy .stat-block .label { color: #9fb0c6; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--wl-blue-dark) 0%, var(--wl-blue) 100%);
  color: #fff;
  overflow: hidden;
}
.cta-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13,38,80,.93) 0%, rgba(22,63,135,.86) 50%, rgba(31,91,196,.80) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 0;
}
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { color: #d6e3f7; font-size: 1.14rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Process steps
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.process-step {
  position: relative;
  padding: 30px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--wl-blue);
  margin-bottom: 14px;
}
.process-step .ico {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-tint);
  color: var(--wl-blue);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.process-step .ico svg { width: 24px; height: 24px; }
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: .92rem; }

/* ==========================================================================
   Founders
   ========================================================================== */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.founder-card {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.founder-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.founder-avatar {
  width: 84px; height: 84px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--wl-blue), var(--wl-blue-bright));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
}
.founder-card h4 { font-size: 1.2rem; margin-bottom: 2px; }
.founder-role { color: var(--wl-blue); font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.founder-card p { font-size: .92rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: grid; gap: 18px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-item .ico {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--bg-tint);
  color: var(--wl-blue);
  display: grid; place-items: center;
}
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item .ci-label {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item .ci-value { font-weight: 600; color: var(--ink); font-size: 1rem; }
.contact-item .ci-value a:hover { color: var(--wl-blue); }
.contact-item .ci-sub { font-size: .9rem; color: var(--slate); }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form .form-intro { font-size: .96rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: .98rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--wl-blue);
  background: #fff;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--slate-light); margin-top: 14px; text-align: center; }
.form-note--ok { color: #1c7a48; font-weight: 600; }
.form-note--err { color: #c0392b; font-weight: 600; }

.map-wrap {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 280px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   Callout / mission
   ========================================================================== */
.mission-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.mission-box .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: .5;
  color: var(--wl-blue);
  opacity: .35;
}
.mission-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 22px 0 16px;
}
.mission-box .accent { color: var(--wl-blue); }

/* split highlight panel */
.highlight-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  color: #c9d6e6;
}
.highlight-panel h2 { color: #fff; margin-bottom: 14px; }
.highlight-panel p { color: #b3c2d6; margin-bottom: 12px; }
.hp-list { display: grid; gap: 14px; }
.hp-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #e3eaf4;
  font-weight: 500;
}
.hp-list li svg { width: 20px; height: 20px; color: var(--wl-blue-bright); flex-shrink: 0; margin-top: 3px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: #9aabc2;
  padding: 76px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-brand img {
  height: 34px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-brand p { color: #8a9bb3; font-size: .96rem; max-width: 320px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: #b8c6da;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.footer-social a:hover { background: var(--wl-blue); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { font-size: .96rem; color: #9aabc2; }
.footer-col a { transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.footer-contact svg { width: 17px; height: 17px; color: var(--wl-blue-bright); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  font-size: .88rem;
  color: #6f8199;
}
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   Scroll reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-inner,
  .page-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .card-grid, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .highlight-panel { grid-template-columns: 1fr; gap: 32px; padding: 44px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta {
    text-align: center;
    margin-top: 16px;
    padding: 14px 24px !important;
    border-bottom: none !important;
  }

  .section { padding: 72px 0; }
  .section--tight { padding: 56px 0; }
  .container { padding: 0 22px; }

  .feature-split, .feature-split.flip { grid-template-columns: 1fr; gap: 38px; }
  .feature-split.flip .feature-media { order: 0; }
  .pillars { grid-template-columns: 1fr; gap: 18px; }
  .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .sector-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { margin-top: 56px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 84px 0 92px; }
  .page-hero { padding: 84px 0 68px; }
  .page-hero--photo::before {
    background: linear-gradient(180deg, rgba(9,24,48,.80) 0%, rgba(9,24,48,.92) 100%);
  }
  .cta-inner { padding: 70px 0; }
  .highlight-panel { padding: 34px 26px; }
  .contact-form { padding: 28px 24px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-card { display: none; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions, .cta-actions { width: 100%; }
  .stats-band { grid-template-columns: 1fr; }
}
