/* ============================================
   MEVAANTA TECHNOLOGIES — Complete Redesign
   Primary: #EB6C25 (Orange)
   Secondary: #27316F (Navy)
   ============================================ */

/* --- Custom Properties --- */
:root {
  --orange: #EB6C25;
  --orange-hover: #d45a17;
  --orange-light: #f5935e;
  --orange-glow: rgba(235, 108, 37, 0.15);
  --orange-subtle: rgba(235, 108, 37, 0.07);
  --navy: #27316F;
  --navy-light: #354189;
  --navy-dark: #1b224f;
  --navy-deeper: #141a3d;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --light-grey: #F1F2F6;
  --border: #E3E5ED;
  --text-dark: #1A1F36;
  --text-body: #4A4F6A;
  --text-muted: #7A7F9C;
  --shadow-xs: 0 1px 2px rgba(39,49,111,0.04);
  --shadow-sm: 0 2px 8px rgba(39,49,111,0.06);
  --shadow-md: 0 4px 20px rgba(39,49,111,0.08);
  --shadow-lg: 0 8px 40px rgba(39,49,111,0.10);
  --shadow-xl: 0 16px 56px rgba(39,49,111,0.14);
  --shadow-orange: 0 4px 20px rgba(235,108,37,0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --container: 1200px;
  --container-wide: 1340px;
  --header-h: 120px;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { max-width: 640px; }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.text-center {
  text-align: center;
}
.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* --- Section Labels --- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.label--bar::before {
  content: '';
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}
.label--pill {
  background: var(--orange-glow);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 52px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn--white:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1ebc5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}


/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: all 0.3s var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.header__logo-image {
  width: 360px;
  height: 104px;
  object-fit: contain;
  object-position: left center;
}
.header__logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(235,108,37,0.2);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 0;
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--navy);
}
.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}
.header__cta {
  padding: 11px 24px;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1010;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.contact-grid > * { min-width: 0; }
/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
.contact-card__details a { overflow-wrap: anywhere; }
  bottom: 0;
  background: var(--white);
  padding: 24px;
    min-width: 0;
  flex-direction: column;
  .contact-grid,
  .contact-grid > *,
  .contact-card,
  .contact-card__details,
  .contact-form-wrapper { min-width: 0; max-width: 100%; }
  .svc-nav { overflow: hidden; }
  gap: 0;
  z-index: 999;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn {
  margin-top: 24px;
  justify-content: center;
}


/* ============================================
   HERO — Full-Width Image Hero (Globus-inspired)
   ============================================ */
.hero {
  position: relative;
  min-height: 820px;
  margin-top: var(--header-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27, 34, 79, 0.92) 0%,
    rgba(27, 34, 79, 0.80) 40%,
    rgba(27, 34, 79, 0.45) 70%,
    rgba(27, 34, 79, 0.20) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 0;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 24px;
}
.hero__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.hero__heading {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero__heading span {
  color: var(--orange-light);
}
.hero__text {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Floating accent bar at bottom of hero */
.hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
  z-index: 3;
}


/* ============================================
   CATEGORY STRIP (CandyPop-inspired icon bar)
   ============================================ */
.category-strip {
  background: var(--navy);
  padding: 0;
  position: relative;
  z-index: 10;
}
.category-strip__inner {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.category-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.category-strip__item:last-child {
  border-right: none;
}
.category-strip__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
  transition: width 0.3s var(--ease);
}
.category-strip__item:hover::after {
  width: 60%;
}
.category-strip__item:hover {
  background: rgba(255,255,255,0.04);
}
.category-strip__icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(235,108,37,0.25);
}
.category-strip__item:hover .category-strip__icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(235,108,37,0.35);
}
.category-strip__icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}
.category-strip__icon span {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.category-strip__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-strip { background: var(--navy); color: rgba(255,255,255,.7); }
.mission-strip__grid { display: grid; grid-template-columns: 1fr 1fr; }
.mission-strip__item { padding: 24px 42px 26px; position: relative; }
.mission-strip__item + .mission-strip__item { border-left: 1px solid rgba(255,255,255,.14); }
.mission-strip__item h2 { color: var(--white); font-size: 1.1rem; margin-bottom: 5px; }
.mission-strip__item h2::before { content: ''; display: inline-block; width: 22px; height: 3px; vertical-align: middle; margin: 0 10px 3px 0; background: var(--orange); border-radius: 4px; }
.mission-strip__item p { font-size: .84rem; max-width: 520px; line-height: 1.55; }
.purpose { display: none; }
.purpose__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.purpose__card { padding: 42px 44px; border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.purpose__card::after { content: ''; position: absolute; width: 180px; height: 180px; border: 1px solid currentColor; border-radius: 50%; right: -72px; top: -95px; opacity: .14; }
.purpose__card .label { margin-bottom: 18px; }
.purpose__card h2 { max-width: 480px; margin-bottom: 14px; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.purpose__card p { max-width: 530px; line-height: 1.7; }
.purpose__card--mission { background: var(--navy); color: rgba(255,255,255,.7); }
.purpose__card--mission h2 { color: var(--white); }
.purpose__card--mission .label { color: var(--orange-light); }
.purpose__card--vision { background: var(--white); border: 1px solid var(--border); }
.purpose__card--vision .label { color: var(--orange); }


/* ============================================
   WHAT WE DO — Bento Grid
   ============================================ */
.whatwedo {
  padding: 120px 0 100px;
  background: #ffffff; /* Bright white background as requested */
  position: relative;
}

.wwd-bento {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
}

/* Base cell styling for the boxes */
.wwd-cell {
  background: #f8f9fa; /* Very soft light grey/off-white */
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wwd-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

/* Cell 1: Hero (No box background, just text) */
.wwd-cell--hero {
  background: transparent;
  padding: 0 40px 0 0;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  justify-content: center;
}
.wwd-cell--hero:hover { transform: none; box-shadow: none; }
.wwd-cell--hero .label { margin-bottom: 24px; display: inline-block; }
.wwd-heading {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #111827;
}
.wwd-sub {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 90%;
}

/* Stats inside hero */
.wwd-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}
.wwd-stat__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.wwd-stat__num span { color: var(--orange); }
.wwd-stat__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Steps (Cell 2 & 3) */
.wwd-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 24px;
}
.wwd-cell--step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #111827;
}
.wwd-cell--step p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Wide Image Card (Cell 4) */
.wwd-cell--wide {
  grid-column: 2 / 4;
  padding: 0;
  min-height: 280px;
}
.wwd-cell--wide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.wwd-cell--wide:hover img {
  transform: scale(1.05);
}
.wwd-cell__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.9) 0%, rgba(17,24,39,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 2;
}
.wwd-num--light {
  color: var(--orange-light);
}
.wwd-cell__overlay h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.wwd-cell__overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 80%;
}

/* Accent Card (Cell 5 - optionally place in col 1 bottom if not spanning 2 rows, or hide/re-arrange) */
/* Actually, let's keep it clean. Hero spans row 1/3. Step 1&2 are row 1. Wide is row 2. Accent can go below wide in mobile, but in desktop it breaks the 2x2 right grid. We will hide it on desktop to keep the pure bento look from the screenshot, or place it in a 3rd row. Let's make a 3rd row where it spans all 3 columns as a banner. */
.wwd-cell--accent {
  grid-column: 1 / 4;
  background: var(--navy);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
}
.wwd-cell--accent:hover { transform: translateY(-4px); }
.wwd-cell--accent-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wwd-accent-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.wwd-accent-num span { color: var(--orange); }
.wwd-accent-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wwd-cell--accent p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 400px;
  text-align: right;
  margin: 0;
}

/* Responsive Bento */
@media (max-width: 1100px) {
  .wwd-bento {
    grid-template-columns: 1fr 1fr;
  }
  .wwd-cell--hero {
    grid-column: 1 / 3;
    grid-row: auto;
    padding: 0;
    margin-bottom: 24px;
  }
  .wwd-cell--wide {
    grid-column: 1 / 3;
  }
  .wwd-cell--accent {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .wwd-cell--accent p {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .wwd-bento {
    grid-template-columns: 1fr;
  }
  .wwd-cell--hero {
    grid-column: 1;
    padding-left: 8px;
    padding-right: 8px;
  }
  .wwd-cell--hero .label,
  .wwd-cell--hero .wwd-sub { max-width: 100%; }
  .wwd-cell--step {
    grid-column: 1;
  }
  .wwd-cell--wide {
    grid-column: 1;
    min-height: 320px;
  }
  .wwd-cell--accent {
    grid-column: 1;
  }
  .wwd-cell__overlay p { max-width: 100%; }
}



/* ============================================
   SOLUTIONS SHOWCASE — Alternating (CandyPop-inspired)
   ============================================ */
.showcase {
  padding: 100px 0;
  background: var(--off-white);
}
.showcase__header {
  text-align: center;
  margin-bottom: 72px;
}
.showcase__header h2 {
  margin-bottom: 14px;
}

.showcase__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.showcase__item:last-child {
  margin-bottom: 80px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-card {
  min-height: 248px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.solution-card:hover { transform: translateY(-6px); border-color: rgba(235,108,37,.35); box-shadow: var(--shadow-lg); }
.solution-card > span { display: block; margin-bottom: 32px; color: var(--orange); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.solution-card h3 { margin-bottom: 12px; font-size: 1.08rem; }
.solution-card p { font-size: .9rem; line-height: 1.65; margin-bottom: 18px; }
.solution-card em { color: var(--text-muted); font-size: .76rem; font-style: normal; font-weight: 600; }
.showcase__item.reverse {
  direction: rtl;
}
.showcase__item.reverse > * {
  direction: ltr;
}

.showcase__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.showcase__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.showcase__image:hover img {
  transform: scale(1.04);
}
/* Number badge */
.showcase__number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: var(--shadow-orange);
  z-index: 2;
}
.showcase__item.reverse .showcase__number {
  left: auto;
  right: 20px;
}

.showcase__text .label {
  margin-bottom: 10px;
}
.showcase__text h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.showcase__text > p {
  margin-bottom: 24px;
  line-height: 1.7;
}
.showcase__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 28px;
}
.showcase__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 5px 0;
}
.showcase__list li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--orange);
  border-radius: 50%;
}
.showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
}
.showcase__link:hover {
  gap: 14px;
  color: var(--orange-hover);
}
.showcase__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}
.showcase__link:hover svg {
  transform: translateX(4px);
}


/* ============================================
   STATS COUNTER
   ============================================ */
.stats {
  background: var(--white);
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  text-align: center;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--border);
}
.stat__number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__number span {
  color: var(--orange);
}
.stat__label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}


/* ============================================
   WHY CHOOSE US — Beautiful Modern Section
   ============================================ */
.why-choose {
  background: var(--navy-dark);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
/* Abstract gradient blob in background */
.why-choose::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(235,108,37,0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.why-choose__header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.why-choose__header .label {
  color: var(--orange-light);
  background: rgba(235,108,37,0.1);
  border-color: rgba(235,108,37,0.2);
}
.why-choose__header .label--bar::before {
  background: var(--orange-light);
}
.why-choose__header h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
}
.why-choose__header p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Staggered Grid Layout */
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
  align-items: start;
}

/* Unique Card Design */
.why-choose__card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 32px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* Stagger Offsets */
.why-choose__card--offset-1 {
  margin-top: 40px;
}
.why-choose__card--offset-2 {
  margin-top: 80px;
}

/* Hover effects */
.why-choose__card:hover {
  transform: translateY(-12px);
  border-color: rgba(235,108,37,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), inset 0 0 20px rgba(235,108,37,0.05);
}

/* Huge background number */
.why-choose__bg-num {
  position: absolute;
  top: -10px;
  right: -10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  transition: color 0.4s var(--ease);
  z-index: 0;
}
.why-choose__card:hover .why-choose__bg-num {
  color: rgba(235,108,37,0.08);
}

/* Card Content */
.why-choose__content {
  position: relative;
  z-index: 1;
}

.why-choose__icon {
  width: 52px;
  height: 52px;
  background: rgba(235,108,37,0.15);
  border: 1px solid rgba(235,108,37,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: all 0.4s var(--ease-spring);
}
.why-choose__card:hover .why-choose__icon {
  background: var(--orange);
  box-shadow: 0 8px 24px rgba(235,108,37,0.4);
  transform: scale(1.1) rotate(-5deg);
}
.why-choose__icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
  transition: color 0.3s var(--ease);
}
.why-choose__card:hover .why-choose__icon svg {
  color: var(--white);
}

.why-choose__content h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}
.why-choose__card:hover .why-choose__content h3 {
  color: var(--orange-light);
}

.why-choose__content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose__card--offset-1, .why-choose__card--offset-2 {
    margin-top: 0;
  }
  .why-choose__card:nth-child(even) {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-choose__card:nth-child(even) {
    margin-top: 0;
  }
  .why-choose__card {
    min-height: auto;
    padding: 32px 24px;
  }
}


/* ============================================
   INDUSTRIES
   ============================================ */
.industries {
  padding: 140px 0;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
/* Abstract gradient blob in background matching why-choose */

.industries::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(39,49,111,0.4) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.industries__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}
.industries__header .label {
  color: var(--orange-light);
}
.industries__header h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.industries__header .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.industries__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 800px;
}

@media (min-width: 900px) {
  .industries__grid {
    flex-direction: row;
    height: 520px;
    min-height: auto;
    width: 100%;
  }
}

.industry {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.25, 1, 0.3, 1), transform 0.3s ease;
  flex: 1;
  min-height: 140px;
  background: var(--navy);
}
@media (min-width: 900px) {
  .industry {
    min-height: auto;
  }
  .industry:hover, 
  .industry:focus-within {
    flex: 4;
  }
}

.industry img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 0.8s ease;
  filter: grayscale(80%) brightness(0.5);
}

.industry:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(0.85);
}

.industry__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,26,61,0.95) 0%, rgba(20,26,61,0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
  transition: all 0.5s ease;
}
.industry:hover .industry__overlay {
  background: linear-gradient(to top, rgba(20,26,61,0.95) 0%, rgba(235,108,37,0.1) 40%, transparent 100%);
}

.industry__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
  border: 1px solid rgba(255,255,255,0.1);
}
.industry__icon svg {
  width: 24px; height: 24px;
}

.industry:hover .industry__icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 8px 24px rgba(235,108,37,0.4);
  color: var(--white);
}

.industry__content h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
  transition: all 0.5s ease;
  white-space: nowrap;
}

.industry__content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
  max-width: 380px;
  margin: 0;
  visibility: hidden;
  max-height: 0;
}

@media (min-width: 900px) {
  .industry__content h3 {
    white-space: normal;
    word-break: break-word;
    font-size: 1.15rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .industry:hover .industry__content h3 {
    font-size: 1.65rem;
    margin-bottom: 12px;
    -webkit-line-clamp: 1;
  }
  
  .industry:hover .industry__content p {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 100px;
    transition-delay: 0.15s;
  }
}
@media (max-width: 899px) {
  .industry__icon { display: none; }
  .industry__content p {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: none;
    margin-top: 10px;
    font-size: 0.85rem;
  }
  .industry__content h3 {
    white-space: normal;
  }
}

/* Orange bottom bar on hover */
.industry::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
  z-index: 10;
}
.industry:hover::after {
  transform: scaleX(1);
}


/* ============================================
   SERVICES PAGE — Complete Redesign
   ============================================ */

/* ---- Page Hero ---- */
.page-hero {
  position: relative;
  padding-top: var(--header-h);
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.1);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20,26,61,0.97) 0%, rgba(20,26,61,0.75) 55%, rgba(235,108,37,0.2) 100%),
    linear-gradient(to top, rgba(20,26,61,0.98) 0%, transparent 60%);
  z-index: 1;
}
/* Diagonal orange accent slash */
.page-hero__slash {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
  overflow: hidden;
}
.page-hero__slash svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.page-hero__content {
  max-width: 780px;
  padding-top: 60px;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-hero__breadcrumb a { color: var(--orange-light); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px 6px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.page-hero__tag span {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: inline-block;
}
.page-hero__content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.07;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.page-hero__content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero__content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}
.page-hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.page-hero__stat {
  border-left: 2px solid var(--orange);
  padding-left: 16px;
}
.page-hero__stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.page-hero__stat-num span { color: var(--orange-light); }
.page-hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- Service Nav Pills ---- */
.svc-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  box-shadow: 0 2px 20px rgba(39,49,111,0.08);
}
.svc-nav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.svc-nav__inner::-webkit-scrollbar { display: none; }
.svc-nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.02em;
}
.svc-nav__link:hover {
  color: var(--orange);
  border-bottom-color: rgba(235,108,37,0.3);
}
.svc-nav__link.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.svc-nav__link svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
}

/* ---- Service Sections (unique per service) ---- */
.svc-block {
  position: relative;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 60px);
}

/* Default service block layout */
.svc-block {
  background: #ffffff;
}
.svc-block__inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}
@media (min-width: 900px) {
  .svc-block__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left panel — content */
.svc-block__content {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 899px) {
  .svc-block__content {
    padding: 60px 0 40px;
  }
}
.svc-block__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  opacity: 0.18;
  letter-spacing: -0.04em;
  margin-bottom: -20px;
  user-select: none;
}
.svc-block__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.svc-block__tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.svc-block__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 0;
}
.svc-block__content > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 480px;
}
.svc-block__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
@media (max-width: 480px) {
  .svc-block__list { grid-template-columns: 1fr; }
}
.svc-block__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.svc-block__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.svc-block__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

/* Right panel — image */
.svc-block__visual {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.svc-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.svc-block:hover .svc-block__visual img {
  transform: scale(1.04);
}
/* Color overlay for visual */
.svc-block__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(235,108,37,0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ---- VARIANT: Navy background block ---- */
.svc-block--navy {
  background: var(--navy-dark);
}
.svc-block--navy .svc-block__content h2 {
  color: var(--white);
}
.svc-block--navy .svc-block__content > p {
  color: rgba(255,255,255,0.75);
}
.svc-block--navy .svc-block__list li {
  color: rgba(255,255,255,0.9);
}
.svc-block--navy .svc-block__num {
  -webkit-text-stroke-color: var(--orange-light);
}

/* ---- VARIANT: Orange accent block ---- */
.svc-block--orange {
  background: var(--orange);
}
.svc-block--orange .svc-block__tag {
  color: rgba(255,255,255,0.9);
}
.svc-block--orange .svc-block__tag::before {
  background: rgba(255,255,255,0.8);
}
.svc-block--orange .svc-block__content h2 {
  color: var(--white);
}
.svc-block--orange .svc-block__content > p {
  color: rgba(255,255,255,0.85);
}
.svc-block--orange .svc-block__list li {
  color: rgba(255,255,255,0.95);
}
.svc-block--orange .svc-block__list li::before {
  background: var(--white);
}
.svc-block--orange .svc-block__num {
  -webkit-text-stroke-color: rgba(255,255,255,0.6);
}
.svc-block--orange .btn--outline-navy {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.svc-block--orange .btn--outline-navy:hover {
  background: rgba(255,255,255,0.15);
}

/* ---- VARIANT: Gradient diagonal split ---- */
.svc-block--split {
  background: linear-gradient(135deg, var(--navy-deeper) 50%, var(--navy) 100%);
}
.svc-block--split .svc-block__content h2 {
  color: var(--white);
}
.svc-block--split .svc-block__content > p {
  color: rgba(255,255,255,0.75);
}
.svc-block--split .svc-block__list li { color: rgba(255,255,255,0.9); }

/* ---- Flip grid (image left, content right) ---- */
.svc-block--flip .svc-block__visual {
  order: -1;
}
@media (max-width: 899px) {
  .svc-block--flip .svc-block__visual { order: 0; }
  .svc-block--flip .svc-block__content { padding: 40px 0 60px; }
}
.svc-block--flip .svc-block__content {
  padding: 80px 0 80px 60px;
}

/* Decorative geometric shape overlay on blocks */
.svc-block__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.svc-block__deco--circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.svc-block__content,
.svc-block__visual {
  position: relative;
  z-index: 1;
}

/* Full-width orange banner between services */
.svc-banner {
  background: linear-gradient(90deg, var(--orange) 0%, #f08340 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.svc-banner::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -60%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.svc-banner::after {
  content: '';
  position: absolute;
  left: 10%;
  bottom: -50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.svc-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.svc-banner__text h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
}
.svc-banner__text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: none;
}
.svc-banner .btn--white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.svc-banner .btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ---- Why Trust section ---- */
.svc-trust {
  background: var(--off-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.svc-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--navy) 100%);
}
.svc-trust__header {
  text-align: center;
  margin-bottom: 64px;
}
.svc-trust__header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.svc-trust__header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 auto;
}
.svc-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .svc-trust__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .svc-trust__grid { grid-template-columns: repeat(4, 1fr); }
}
.svc-trust__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.svc-trust__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--orange);
}
.svc-trust__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc-trust__card:hover::before {
  transform: scaleX(1);
}
.svc-trust__card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  transition: -webkit-text-stroke-color 0.3s var(--ease);
}
.svc-trust__card:hover .svc-trust__card-num {
  -webkit-text-stroke-color: var(--orange);
}
.svc-trust__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  transition: background 0.3s var(--ease);
}
.svc-trust__card:hover .svc-trust__icon {
  background: var(--orange);
  color: var(--white);
}
.svc-trust__icon svg { width: 22px; height: 22px; }
.svc-trust__card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-trust__card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: none;
}

/* CTA contact items in services page CTA */
.cta-box__contact-items {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-box__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
}
.cta-box__contact-item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--orange-light);
}
.cta-box__contact-item a { color: rgba(255,255,255,0.8); }
.cta-box__contact-item a:hover { color: var(--orange-light); }


/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 120px 0;
  background: var(--white);
}
.cta-box {
  background: var(--navy-dark);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
/* Optional floating shapes in background of CTA */
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(235,108,37,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .cta-box__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 18px;
  }
}

.cta-box__visual {
  min-height: 620px;
  padding: 52px 42px 34px;
  border-radius: calc(var(--radius-xl) - 8px);
  background: linear-gradient(145deg, #202a61 0%, #151b42 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta-box__visual::after {
  content: '';
  position: absolute;
  width: 290px;
  height: 290px;
  right: -110px;
  top: -120px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,0.025), 0 0 0 56px rgba(255,255,255,0.02);
  pointer-events: none;
}
.cta-box__visual-copy,
.cta-box__map-wrap { position: relative; z-index: 1; }
.cta-box__visual .label {
  color: var(--orange-light);
  margin-bottom: 24px;
}
.cta-box__visual h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 24px;
  line-height: 1.1;
}
.cta-box__visual p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
}
.cta-box__coverage {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta-box__coverage-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(235,108,37,0.15);
}
.cta-box__map-wrap {
  align-self: center;
  width: min(100%, 440px);
  margin: 18px auto 0;
}
.cta-box__map-wrap img {
  width: 100%;
  opacity: 0.96;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,0.22));
  transform: rotate(3deg);
}
.cta-box__map-pin {
  position: absolute;
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(3deg);
}
.cta-box__map-pin::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 5px 1px 0;
  border-radius: 50%;
  background: var(--white);
}
.cta-box__map-pin--north { top: 27%; right: 0; }
.cta-box__map-pin--south { bottom: 21%; left: 3%; }

.cta-box__form {
  background: var(--white);
  padding: 42px 38px 38px;
  border-radius: calc(var(--radius-xl) - 8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.cta-box__form-heading {
  margin-bottom: 30px;
}
.cta-box__form-kicker {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta-box__form-heading h3 {
  color: var(--navy);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  margin: 8px 0 8px;
}
.cta-box__form-heading p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.wa-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 600px) {
  .wa-form__row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.wa-form__group {
  margin-bottom: 20px;
}
.wa-form__group--float {
  position: relative;
  margin-bottom: 20px;
}
.wa-form__input {
  width: 100%;
  padding: 25px 18px 9px;
  background: #f7f8fb;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--text-dark);
  transition: all 0.3s var(--ease);
}
.wa-form__input:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(235,108,37,0.1);
}
.wa-form__input:hover { border-color: #d9dce7; }
.wa-form__label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
  pointer-events: none;
}
.wa-form__input:focus ~ .wa-form__label,
.wa-form__input:not(:placeholder-shown) ~ .wa-form__label {
  top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
}

.wa-form__group--float textarea.wa-form__input {
  padding-top: 30px;
  resize: vertical;
  min-height: 120px;
}
.wa-form__group--float textarea ~ .wa-form__label {
  top: 24px;
  transform: none;
}
.wa-form__group--float textarea:focus ~ .wa-form__label,
.wa-form__group--float textarea:not(:placeholder-shown) ~ .wa-form__label {
  top: 12px;
}

.wa-form__submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.form-success {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #166534;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 600px) {
  .cta-section { padding: 76px 0; }
  .cta-box { padding: 10px; border-radius: 20px; }
  .cta-box__visual { min-height: 550px; padding: 34px 24px 24px; border-radius: 16px; }
  .cta-box__form { padding: 30px 20px 24px; border-radius: 16px; }
  .cta-box__map-wrap { width: min(100%, 290px); padding: 15px 34px; }
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deeper);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.footer__logo { width: 141px; height: auto; object-fit: contain; object-position: left center; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
  color: rgba(255,255,255,0.55);
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer__socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer__socials a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.footer__socials svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.7);
}
.footer__socials a:hover svg {
  color: var(--white);
}
.footer__col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  padding: 6px 0;
  color: rgba(255,255,255,0.55);
}
.footer__col a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer__contact-row svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__contact-row a:hover {
  color: var(--orange);
  padding-left: 0;
}
.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s var(--ease);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for grids */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.40s; }


/* ============================================
   RESPONSIVE
   ============================================ */

/* Laptop / Small Desktop */
@media (max-width: 1100px) {
  .category-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }
  .about__inner {
    gap: 48px;
  }
  .showcase__item {
    gap: 48px;
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 900px) {
  .header__nav, .header__cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    min-height: 500px;
  }
  .hero__heading {
    font-size: 2.2rem;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__image img {
    height: 320px;
  }
  .showcase__item {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .showcase__item.reverse {
    direction: ltr;
  }
  .showcase__image img {
    height: 300px;
  }
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat:nth-child(2)::after {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .purpose__grid { grid-template-columns: 1fr; }
  .about__mini-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about__mini-stat + .about__mini-stat::before {
    display: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }
  .header__inner {
    padding: 0 18px;
    gap: 12px;
  }
  .header__logo {
    min-width: 0;
    flex: 1 1 auto;
  }
  .header__logo-image {
    width: min(220px, 100%);
    height: 56px;
    object-fit: contain;
  }
  .hamburger { flex-shrink: 0; }
  .section {
    padding: 64px 0;
  }
  .container, .container--wide {
    padding: 0 18px;
  }
  .hero {
    min-height: 450px;
  }
  .hero__content {
    padding: 48px 0;
  }
  .hero__heading {
    font-size: 1.85rem;
  }
  .mission-strip__grid { grid-template-columns: 1fr; }
  .mission-strip__item { padding: 20px 18px; }
  .mission-strip__item + .mission-strip__item { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .purpose { padding-top: 18px; }
  .purpose__card { padding: 32px 26px; }
  .hero__text {
    font-size: 0.95rem;
  }
  .hero__buttons {
    flex-direction: column;
  }
  .hero__buttons .btn {
    justify-content: center;
    width: 100%;
  }
  .category-strip__inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .solution-grid { grid-template-columns: 1fr; }
  .category-strip__item {
    padding: 20px 8px;
  }
  .category-strip__icon {
    width: 44px;
    height: 44px;
  }
  .category-strip__label {
    font-size: 0.68rem;
  }
  .about__features {
    grid-template-columns: 1fr;
  }
  .showcase__list {
    grid-template-columns: 1fr;
  }
  .stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat__number {
    font-size: 2.2rem;
  }
  .stat:not(:last-child)::after {
    display: none;
  }
  .why__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why__card {
    padding: 28px 20px;
  }

  .cta-box {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }
  .cta-box__form {
    padding: 24px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================
   WHAT WE DO (Colorful Section)
   ============================================ */
.colorful-about {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #1b224f 0%, #27316F 40%, #EB6C25 100%);
  color: var(--white);
  overflow: hidden;
}
.colorful-about::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(235, 108, 37, 0.4), transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(245, 61, 107, 0.4), transparent 50%);
  animation: floatBackground 15s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes floatBackground {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(15deg) scale(1.1); }
}
.colorful-about__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.colorful-about__header h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}
.colorful-about__header p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.colorful-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: left;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.4);
}
.glass-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.3);
}
.glass-card__icon svg {
  width: 32px; height: 32px; color: var(--white);
}
.glass-card h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.glass-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   OUR SOLUTIONS (8 Services)
   ============================================ */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.service-card:hover .service-card__bg {
  opacity: 1;
}
.service-card__bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(39, 49, 111, 0.85) 0%, rgba(39, 49, 111, 0.95) 100%);
}
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--orange-subtle);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-card__icon {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  transition: color 0.4s var(--ease);
}
.service-card:hover h3 { color: var(--white); }
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  transition: color 0.4s var(--ease);
  flex-grow: 1;
}
.service-card:hover p { color: rgba(255,255,255,0.8); }
.service-card__link {
  font-weight: 600;
  color: var(--orange);
  font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.4s var(--ease);
  margin-top: auto;
}
.service-card:hover .service-card__link { color: var(--orange-light); }
.service-card__link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* Responsive Updates for new grids */
@media (max-width: 1100px) {
  .colorful-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .colorful-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .colorful-about { padding: 80px 0; }
  .colorful-about__header h2 { font-size: 2rem; }
}


/* ============================================
   OUR SOLUTIONS — Clean Brand Card Grid
   ============================================ */
.sol-section {
  padding: 100px 0 110px;
  background: #F1F3F8;
  position: relative;
}

/* No blobs — clean bg */
.sol-section__bg-deco { display: none; }

.sol-header {
  text-align: center;
  margin-bottom: 64px;
}
.sol-header .label { color: var(--orange); }
.sol-header .label--bar::before { background: var(--orange); }
.sol-header h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
  line-height: 1.15;
}
.sol-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid: 4 columns × 2 rows */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---- Card — photo + name + description ---- */
.sol-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s var(--ease-spring),
              box-shadow 0.35s var(--ease);
  outline: none;
}
.sol-card:hover,
.sol-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(39,49,111,0.18);
}

/* Photo area */
.sol-card__img {
  position: relative;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}
.sol-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.sol-card:hover .sol-card__img img {
  transform: scale(1.07);
}

/* Subtle navy overlay on image for readability */
.sol-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(39,49,111,0.55) 100%
  );
  transition: opacity 0.35s ease;
}

/* Orange top bar */
.sol-card__img::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  z-index: 3;
}

/* Number badge — sits on the photo bottom-left */
.sol-card__num {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  z-index: 2;
  background: rgba(39,49,111,0.5);
  padding: 3px 8px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* Text body */
.sol-card__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-top: none;
  transition: background 0.35s var(--ease);
}
.sol-card:hover .sol-card__body {
  background: var(--navy);
}

/* Title */
.sol-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.sol-card:hover h3 { color: var(--white); }

/* Description */
.sol-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 16px;
  flex-grow: 1;
  max-width: none;
  transition: color 0.3s ease;
}
.sol-card:hover p { color: rgba(255,255,255,0.6); }

/* Link */
.sol-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  transition: gap 0.3s ease, color 0.3s ease;
}
.sol-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.sol-card:hover .sol-card__link { gap: 9px; color: var(--orange-light); }
.sol-card:hover .sol-card__link svg { transform: translateX(3px); }

/* Unused elements hidden */
.sol-card__glow,
.sol-card__icon,
.sol-card__tags { display: none; }

/* No per-card overrides */
.sol-card--1, .sol-card--2, .sol-card--3, .sol-card--4,
.sol-card--5, .sol-card--6, .sol-card--7, .sol-card--8 { /* unified */ }


/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sol-section { padding: 72px 0; }
  .sol-grid { grid-template-columns: 1fr; gap: 14px; }
  .sol-header h2 { font-size: 1.85rem; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info__header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.contact-info__header p {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.6;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) and (max-width: 991px) {
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  width: 100%;
  min-width: 0;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.contact-card__icon {
  width: 52px;
  height: 52px;
  background: var(--orange-subtle);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.contact-card:hover .contact-card__icon {
  background: var(--orange);
  color: var(--white);
}
.contact-card__icon svg {
  width: 24px;
  height: 24px;
}
.contact-card__details h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-card__details { min-width: 0; flex: 1; }
.contact-card__details strong {
  display: block;
  min-width: 0;
}
.contact-card__details p,
.contact-card__details a {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}
.contact-card__details a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-card__details a:hover {
  color: var(--orange);
}
.contact-map-placeholder {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.contact-map-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.contact-map-placeholder svg.map-bg-icon {
  width: 80px;
  height: 80px;
  color: var(--orange-subtle);
  margin-bottom: 20px;
}
.contact-map-placeholder h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-map-placeholder p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 auto 24px;
  max-width: 320px;
}

/* Contact Form container wrapper on contact page */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
}
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--navy) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.contact-form-wrapper h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-form-wrapper p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* Timeline section */
.contact-timeline-section {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.contact-timeline-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.contact-timeline-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-timeline-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.contact-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .contact-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
.contact-timeline-item {
  position: relative;
  text-align: left;
}
@media (min-width: 768px) {
  .contact-timeline-item::after {
    content: '';
    position: absolute;
    top: 26px;
    left: 70px;
    right: -30px;
    height: 2px;
    border-top: 2px dashed var(--border);
    z-index: 1;
  }
  .contact-timeline-item:last-child::after {
    display: none;
  }
}
.contact-timeline-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange-subtle);
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  border: 2px solid var(--white);
  transition: all 0.3s var(--ease);
}
.contact-timeline-item:hover .contact-timeline-num {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}
.contact-timeline-item h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-timeline-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
  max-width: none;
}
