/* Eminencetel — Premium Telecom & Connectivity */

:root {
  /* Brand palette */
  --navy: #0A1F44;
  --navy-2: #0E2752;
  --navy-3: #142E60;
  --navy-deep: #06122A;
  --electric: #007BFF;
  --electric-2: #2E94FF;
  --electric-glow: #4DA8FF;
  --cyan-accent: #00D4FF;
  --white: #FFFFFF;
  --grey-50: #F7F9FC;
  --grey-100: #F4F7FB;
  --grey-200: #E6ECF4;
  --grey-300: #CFD8E5;
  --grey-400: #8E9BB0;
  --grey-500: #5B6B82;
  --grey-700: #2A3650;
  --ink: #0A1224;

  /* Type */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1400px;
  --gutter: 32px;
  --nav-h: 76px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 31, 68, 0.06), 0 1px 3px rgba(10, 31, 68, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 31, 68, 0.08), 0 2px 4px rgba(10, 31, 68, 0.04);
  --shadow-lg: 0 24px 48px rgba(10, 31, 68, 0.12), 0 8px 16px rgba(10, 31, 68, 0.06);
  --shadow-glow: 0 0 0 1px rgba(0, 123, 255, 0.35), 0 12px 32px rgba(0, 123, 255, 0.25);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 160ms;
  --t-base: 240ms;
  --t-slow: 480ms;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--navy);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a {
  color: var(--electric);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
a:hover { color: var(--navy); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

img { max-width: 100%; display: block; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(18px, 2vw, 40px);
}

/* ========= NAV ========= */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.nav--dark {
  background: rgba(10, 31, 68, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav--dark .nav__brand { color: var(--white); }
.nav__logo {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--grey-700);
  border-radius: var(--r-sm);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  cursor: pointer;
}
.nav--dark .nav__link { color: rgba(255, 255, 255, 0.78); }
.nav__link:hover { color: var(--navy); background: var(--grey-100); }
.nav--dark .nav__link:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }
.nav__link--active { color: var(--electric); }
.nav--dark .nav__link--active { color: var(--electric-glow); }
.nav__link--active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--electric);
  border-radius: 1px;
}
.nav__cta {
  margin-left: 10px;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--electric);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--primary:hover { background: #006FE6; box-shadow: 0 12px 28px rgba(0, 123, 255, 0.4); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(10, 31, 68, 0.14);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); box-shadow: inset 0 0 0 1px var(--navy); }
.btn--ghost-dark {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.btn--ghost-dark:hover { background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4); }
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn__arrow {
  transition: transform var(--t-fast) var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ========= HERO ========= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-2) 100%);
  color: var(--white);
  margin-top: calc(var(--nav-h) * -1);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 110px;
  min-height: 760px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero__net {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 30%, rgba(0, 123, 255, 0.32) 0%, transparent 60%),
    radial-gradient(40% 35% at 12% 80%, rgba(0, 212, 255, 0.18) 0%, transparent 65%);
}
.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--electric);
  position: relative;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}
.hero__eyebrow-dot::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--white);
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 42px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #fff 0%, #9CC8FF 50%, var(--electric-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
  max-width: 560px;
}
.hero__support {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__stat__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat__label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

/* Hero visual right side */
.hero__viz {
  position: relative;
  height: 520px;
}

/* ========= TRUST BAR ========= */
.trust {
  background: var(--white);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--grey-200);
}
.trust__label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 28px;
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
.trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 18px 8px;
  border-radius: var(--r-md);
  transition: background var(--t-fast) var(--ease);
}
.trust__item:hover { background: var(--grey-100); }
.trust__icon {
  width: 32px; height: 32px;
  color: var(--navy);
  opacity: 0.8;
}
.trust__name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--grey-700);
  text-align: center;
  line-height: 1.3;
}

/* ========= SECTION SHARED ========= */
section { position: relative; }
.section { padding: 110px 0; }
.section--grey { background: var(--grey-100); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--electric-glow); }
.section__head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 17px;
  color: var(--grey-500);
  line-height: 1.55;
}
.section--navy .section__sub { color: rgba(255,255,255,0.7); }

/* ========= EXPERIENCE / BIG NUMBER ========= */
.experience {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
}
.experience__bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}
.experience__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.experience__num {
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 220px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 0%, rgba(0,123,255,0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.experience__plus {
  display: inline-block;
  color: var(--electric-glow);
  -webkit-text-fill-color: var(--electric-glow);
  background: none;
}
.experience__caption {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  margin-bottom: 36px;
}
.experience h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 16px;
}
.experience p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 520px;
}

/* ========= SERVICES GRID ========= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  cursor: pointer;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 123, 255, 0.4);
  box-shadow: var(--shadow-lg);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric) 0%, var(--cyan-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(0,212,255,0.08) 100%);
  color: var(--electric);
  margin-bottom: 20px;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--electric);
  color: var(--white);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.55;
  flex: 1;
}
.service-card__arrow {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--electric);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ========= WHY US ========= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.why-card {
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 123, 255, 0.3);
}
.why-card__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--electric);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--grey-500);
  line-height: 1.5;
}

/* ========= FEATURED SOLUTIONS ========= */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured__viz {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  box-shadow: var(--shadow-lg);
}
.featured__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.featured__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.featured__chip:hover {
  border-color: var(--electric);
  transform: translateX(4px);
}
.featured__chip__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--electric);
  flex-shrink: 0;
}

/* ========= AI HEALTHCARE ========= */
.ai-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #0E1F4E 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.ai-section__bg {
  position: absolute; inset: 0;
  opacity: 0.5;
  pointer-events: none;
}
.ai-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ai-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.ai-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.ai-feature:hover { background: rgba(0, 123, 255, 0.08); border-color: rgba(0, 123, 255, 0.3); }
.ai-feature__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: rgba(0, 123, 255, 0.18);
  color: var(--electric-glow);
  flex-shrink: 0;
}
.ai-feature__text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}

/* ========= FINAL CTA ========= */
.final-cta {
  padding: 120px 0;
  background: var(--grey-100);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 18px;
}
.final-cta p {
  font-size: 18px;
  color: var(--grey-500);
  margin-bottom: 36px;
}
.final-cta__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========= FOOTER ========= */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand-block { max-width: 320px; }
.footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__desc {
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a, .footer__links button {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-align: left;
  padding: 0;
  transition: color var(--t-fast) var(--ease);
}
.footer__links a:hover, .footer__links button:hover { color: var(--electric-glow); }
.footer__contact { color: rgba(255,255,255,0.65); line-height: 1.7; }
.footer__contact a { color: var(--electric-glow); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.footer__socials a:hover { background: var(--electric); color: var(--white); }

/* ========= SECONDARY PAGES ========= */
/* .page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: calc(var(--nav-h) + 100px) 0 100px;
  margin-top: calc(var(--nav-h) * -1);
  position: relative;
  overflow: hidden;
} */
/* .page-hero__bg {
  position: absolute; inset: 0;
  opacity: 0.4;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  /* max-width: 760px; */
/* } */
/* .page-hero .eyebrow { color: var(--electric-glow); }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
} */ 

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.about-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.about-card p {
  color: var(--grey-500);
  font-size: 16px;
  line-height: 1.6;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.value-card {
  padding: 26px 22px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--grey-200);
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.value-card:hover {
  border-color: var(--electric);
  transform: translateY(-2px);
}
.value-card__icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: rgba(0,123,255,0.1);
  color: var(--electric);
  margin-bottom: 14px;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.value-card p {
  font-size: 13.5px;
  color: var(--grey-500);
  line-height: 1.5;
}

/* Services page list */
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--grey-200);
  align-items: start;
}
.service-row:last-child { border-bottom: none; }
.service-row__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--electric);
  letter-spacing: -0.02em;
  line-height: 1;
}
.service-row__title { }
.service-row__title h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.service-row__title p {
  font-size: 15px;
  color: var(--grey-500);
  line-height: 1.55;
}
.service-row__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-row__chips span {
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  font-size: 13px;
  color: var(--grey-700);
  font-weight: 500;
}

/* Industries page */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.industry-card {
  position: relative;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  min-height: 240px;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.industry-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--electric) 100%);
  color: var(--white);
  margin-bottom: 24px;
}
.industry-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.industry-card p {
  color: var(--grey-500);
  font-size: 15px;
  line-height: 1.6;
}

/* Careers */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.career-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.career-card:hover {
  border-color: var(--electric);
  transform: translateX(4px);
}
.career-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  text-transform: none;
}
.career-card span {
  font-size: 13px;
  color: var(--grey-500);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-info__block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-200);
}
.contact-info__block:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 10px;
}
.contact-info__value {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
  font-weight: 500;
}
.contact-info__value a { color: var(--electric); }

.contact-form {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-200);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}
.form-field textarea { resize: vertical; min-height: 130px; font-family: inherit; }
.form-error {
  color: #C0263A;
  font-size: 12.5px;
  margin-top: 4px;
  display: block;
}
.form-field input.has-error,
.form-field select.has-error,
.form-field textarea.has-error {
  border-color: #C0263A;
}
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success__icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(31, 138, 82, 0.12);
  color: #1F8A52;
}
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--grey-500); }

/* Solutions page */
.solutions-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.solution-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  align-items: center;
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.solution-row:hover {
  border-color: rgba(0,123,255,0.3);
  transform: translateY(-2px);
}
.solution-row__viz {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
}
.solution-row__content h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.solution-row__content p {
  color: var(--grey-500);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ========= COMPACT DENSITY ========= */
body[data-density="compact"] .section { padding: 80px 0; }
body[data-density="compact"] .hero { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 80px; min-height: 660px; }
body[data-density="compact"] .service-card { min-height: 200px; padding: 22px 20px; }

/* ========= RESPONSIVE ========= */
@media (min-width: 1600px) {
  .container { padding: 0 40px; }
}
@media (max-width: 1100px) {
  :root { --container: 1200px; }
  .hero__container { grid-template-columns: 1fr; gap: 48px; }
  .hero__viz { height: 380px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust__row { grid-template-columns: repeat(3, 1fr); }
  .featured, .ai-grid, .about-grid, .contact-grid, .experience__inner, .solution-row { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid, .industries-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  :root { --container: 95%; }
  .nav__links { display: none; }
}
@media (max-width: 640px) {
  :root { --container: 95%; --gutter: 20px; }
  .section { padding: 72px 0; }
  .services-grid, .why-grid, .trust__row, .form-row { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 24px; }
  .service-row { grid-template-columns: 1fr; gap: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* @media (max-width: 991px) {
  .page-hero__inner {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .page-hero__inner img {
    max-width: 100%;
    margin-top: 30px;
  }
} */

/* ========= PAGE HERO ========= */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: calc(var(--nav-h) + 110px) 0 110px;
  margin-top: calc(var(--nav-h) * -1);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.page-hero__bg {
  position: absolute; inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

/* When there's no image — keep the old comfortable padding */
.page-hero__inner-wrap {
  padding: calc(var(--nav-h) + 100px) 0 100px;
}

/* When there IS an image — reduce vertical padding since image provides height */
.page-hero__inner-wrap--split {
  padding: calc(var(--nav-h) + 60px) 0 0;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

/* Text column */
.page-hero__text {
  padding-right: 48px;
  padding-bottom: 60px;
}

.page-hero .eyebrow { color: var(--electric-glow); }

.page-hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  max-width: 520px;
}

/* Image column — flush to bottom and right edge */
.page-hero__img-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}

.page-hero__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px 20px 0 0;
  display: block;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .page-hero__inner {
    grid-template-columns: 1fr !important;
  }

  .page-hero__inner-wrap--split {
    padding-bottom: 0;
  }

  .page-hero__text {
    padding-right: 0;
    padding-bottom: 40px;
    text-align: center;
  }

  .page-hero p {
    max-width: 100%;
  }

  .page-hero__img-col {
    justify-content: center;
  }

  .page-hero__img {
    height: 320px;
    border-radius: 16px 16px 0 0;
  }
}
