/* ==========================================================================
   xProDesk — main stylesheet
   Modern, responsive, brand-aligned (deep navy + teal).
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --navy-900: #071323;
  --navy-800: #0b1c33;
  --navy-700: #122a4d;
  --navy-600: #033073;   /* logo primary */
  --navy-500: #0a4596;
  --teal-600: #0c9ea8;
  --teal-500: #14b3be;
  --teal-100: #d6f3f5;
  --accent-amber: #f6b73c;
  --gray-50:  #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #dde3ec;
  --gray-300: #c2cad6;
  --gray-400: #94a0b3;
  --gray-500: #6b7689;
  --gray-600: #4b5566;
  --gray-700: #2f3848;
  --gray-800: #1b2230;
  --white:    #ffffff;
  --black:    #000000;
  --success:  #1aa17b;
  --danger:   #d4495a;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(7, 19, 35, 0.06);
  --shadow-sm: 0 4px 10px rgba(7, 19, 35, 0.06);
  --shadow-md: 0 12px 28px rgba(7, 19, 35, 0.08);
  --shadow-lg: 0 24px 60px rgba(7, 19, 35, 0.14);

  --gradient-hero: linear-gradient(135deg, #033073 0%, #0a4596 45%, #0c9ea8 100%);
  --gradient-dark: linear-gradient(135deg, #071323 0%, #0b1c33 50%, #033073 100%);
  --gradient-soft: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);

  --container: 1200px;
  --header-h:  76px;

  --font-sans: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal-600); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-900);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p  { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
hr { border: 0; height: 1px; background: var(--gray-200); margin: 3rem 0; }
::selection { background: var(--teal-100); color: var(--navy-900); }

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--dark {
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.88);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--soft { background: var(--gray-50); }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-600);
  background: var(--teal-100);
  padding: .35rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow--light { color: #b6f1f5; background: rgba(255,255,255,0.08); }
.text-center { text-align: center; }
.lead {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--navy-600);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(3, 48, 115, 0.25);
}
.btn--primary:hover { background: var(--navy-500); color: var(--white); box-shadow: 0 8px 26px rgba(3, 48, 115, 0.35); }
.btn--accent {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(12, 158, 168, 0.25);
}
.btn--accent:hover { background: var(--teal-500); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn--outline {
  background: var(--white);
  color: var(--navy-700);
  border-color: var(--gray-200);
}
.btn--outline:hover { border-color: var(--navy-600); color: var(--navy-600); }
.btn--sm { padding: .55rem 1rem; font-size: .9rem; border-radius: 8px; }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- 5. Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  color: var(--navy-900);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand img { height: 36px; width: auto; }
.brand--footer { color: var(--white); }
.brand--footer img { height: 40px; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link {
  display: inline-block;
  padding: .55rem .85rem;
  color: var(--gray-700);
  font-weight: 500;
  font-size: .96rem;
  border-radius: 8px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--navy-600); background: var(--gray-50); }
.nav__link.is-active { color: var(--navy-600); background: var(--teal-100); }
.nav__cta { display: flex; gap: .6rem; align-items: center; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--gray-200);
  color: var(--navy-700);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: .9rem .6rem; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .nav__link.is-active { background: transparent; color: var(--navy-600); }
  .nav__cta { margin-top: .5rem; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--gradient-hero);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../img/hero-bg.webp') center/cover no-repeat;
  opacity: .25;
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5rem 0 5.5rem;
}
.hero__title { color: var(--white); margin-bottom: 1rem; }
.hero__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 56ch;
  margin-bottom: 1.75rem;
}
.hero__art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.hero__art img { display: block; width: 100%; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat strong { display: block; font-size: 1.6rem; color: var(--white); font-weight: 800; }
.hero__stat span { font-size: .85rem; color: rgba(255,255,255,0.75); }
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; padding: 3rem 0 3.5rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ---------- 7. Logo strip ---------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.75rem 0;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: .8rem;
}
.logo-strip__title { width: 100%; text-align: center; margin-bottom: .25rem; }
.logo-strip__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2.5rem;
  list-style: none; margin: 0; padding: 0; width: 100%;
}
.logo-strip__list li {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}
.logo-strip__list li::before {
  content: "•"; color: var(--teal-600); font-size: 1.4rem; line-height: 0;
}

/* ---------- 8. Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-500); }
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--teal-100);
  color: var(--teal-600);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.feature-card p { font-size: .94rem; color: var(--gray-500); margin: 0; }

.feature-card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.feature-card--dark:hover { border-color: var(--teal-500); }
.feature-card--dark p { color: rgba(255,255,255,0.7); }
.feature-card--dark .feature-card__icon { background: rgba(12, 158, 168, 0.18); color: var(--teal-500); }
.feature-card--dark h3 { color: var(--white); }

/* ---------- 9. Two-column / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 860px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse > :first-child { order: 0; }
}
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-100);
}
.split__media img { width: 100%; }
.split__checklist {
  list-style: none; padding: 0; margin: 1.25rem 0 0;
}
.split__checklist li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .55rem 0;
  color: var(--gray-700);
}
.split__checklist li::before {
  content: ""; flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--teal-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c9ea8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
}

/* ---------- 10. Workflow list ---------- */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.workflow-pill {
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--navy-800);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.workflow-pill:hover { transform: translateY(-2px); border-color: var(--teal-500); background: #f0fafb; }
.workflow-pill__badge {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gradient-hero);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.workflow-pill small { display: block; font-weight: 500; color: var(--gray-500); font-size: .8rem; }

/* ---------- 11. Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  background: var(--gradient-hero);
  color: var(--white);
  border: none;
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card--featured h3, .pricing-card--featured .pricing-card__price { color: var(--white); }
.pricing-card--featured .pricing-card__feature { color: rgba(255,255,255,0.9); }
.pricing-card--featured .pricing-card__feature::before { background: rgba(255,255,255,0.18); }
.pricing-card--featured .pricing-card__feature svg { color: var(--teal-100); }
.pricing-card__badge {
  position: absolute; top: -12px; right: 1.5rem;
  background: var(--accent-amber);
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 999px;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.pricing-card__desc { color: var(--gray-500); font-size: .92rem; margin-bottom: 1.5rem; }
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.85); }
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-900);
  display: flex; align-items: baseline; gap: .25rem;
}
.pricing-card__price small { font-size: .9rem; font-weight: 500; color: var(--gray-500); }
.pricing-card--featured .pricing-card__price small { color: rgba(255,255,255,0.7); }
.pricing-card__features {
  list-style: none; padding: 0; margin: 1.5rem 0;
  flex-grow: 1;
}
.pricing-card__feature {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .4rem 0;
  color: var(--gray-700);
  font-size: .94rem;
}
.pricing-card__feature::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--teal-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c9ea8' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
}
.pricing-card__feature svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--teal-600); margin-top: 4px; }

/* ---------- 12. Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy-900);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.section--dark .stat__num { color: var(--white); }
.stat__label { color: var(--gray-500); font-size: .95rem; margin-top: .35rem; }
.section--dark .stat__label { color: rgba(255,255,255,0.7); }

/* ---------- 13. Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
}
.testimonial__quote {
  font-size: 1rem;
  color: var(--gray-700);
  margin: 0 0 1.25rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}
.testimonial__quote::before {
  content: "“";
  position: absolute; left: -0.2rem; top: -1.6rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--teal-500);
  line-height: 1;
}
.testimonial__person {
  display: flex; align-items: center; gap: .8rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-hero);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .95rem;
}
.testimonial__person strong { display: block; color: var(--navy-800); font-size: .95rem; }
.testimonial__person span { display: block; color: var(--gray-500); font-size: .82rem; }

/* ---------- 14. FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: .75rem;
  transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: var(--teal-500); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-800);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--teal-600);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 1rem 0 0; color: var(--gray-600); }

/* ---------- 15. Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid--full { grid-template-columns: 1fr; }
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-800);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  font: inherit;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(12, 158, 168, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field--check { flex-direction: row; align-items: center; gap: .5rem; }
.field--check label { font-weight: 500; color: var(--gray-600); }
.form-status {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  border-radius: 10px;
  display: none;
}
.form-status.is-success { display: block; background: #e6f7f1; color: #115e44; border: 1px solid #b3e3d1; }
.form-status.is-error { display: block; background: #fdecef; color: #8a2233; border: 1px solid #f5b5be; }

/* ---------- 16. CTA banner ---------- */
.cta {
  background: var(--gradient-hero);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta::after {
  content: "";
  position: absolute; inset: 0;
  background: url('../img/cta-bg.webp') center/cover;
  opacity: .3;
  z-index: 0;
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: var(--white); margin-bottom: .5rem; }
.cta p { color: rgba(255,255,255,0.85); margin: 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; }
@media (max-width: 720px) {
  .cta { grid-template-columns: 1fr; padding: 2rem 1.5rem; border-radius: var(--radius-lg); }
  .cta__actions { justify-content: flex-start; }
}

/* ---------- 17. Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: .94rem; }
.footer-col a:hover { color: var(--teal-500); }
.footer-about p { font-size: .94rem; }
.footer-about img { height: 44px; margin-bottom: 1rem; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  margin-bottom: .65rem;
  font-size: .92rem;
  color: rgba(255,255,255,0.75);
}
.contact-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--teal-500); margin-top: 3px; }
.contact-list a { color: inherit; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: .88rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-social { display: flex; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.footer-social a:hover { background: var(--teal-600); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

/* ---------- 18. Page hero (sub-pages) ---------- */
.page-hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../img/hero-bg.webp') center/cover;
  opacity: .22;
  z-index: -1;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 70ch; margin: 0; }
.page-hero .breadcrumb {
  display: flex; flex-wrap: wrap; gap: .35rem;
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  font-size: .9rem;
  color: rgba(255,255,255,0.7);
}
.page-hero .breadcrumb li { display: inline-flex; align-items: center; gap: .35rem; }
.page-hero .breadcrumb li + li::before { content: "/"; margin-right: .35rem; opacity: .5; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb a:hover { color: var(--white); }

/* ---------- 19. Section header ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head h2 { margin-bottom: .75rem; }
.section-head p { color: var(--gray-500); font-size: 1.05rem; margin: 0; }
.section-head--left { text-align: left; margin-left: 0; }

/* ---------- 20. Image frame ---------- */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}
.media-frame img { width: 100%; display: block; }

/* ---------- 21. Tags / chips ---------- */
.chip-list { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .8rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: .82rem;
  color: var(--gray-600);
  font-weight: 500;
}
.chip--accent { background: var(--teal-100); color: var(--teal-600); border-color: transparent; }

/* ---------- 22. Industry cards ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.industry-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.industry-card:hover { transform: translateY(-3px); border-color: var(--teal-500); }
.industry-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--teal-100);
  color: var(--teal-600);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.industry-card__icon svg { width: 22px; height: 22px; }
.industry-card h3 { font-size: 1.02rem; margin: 0 0 .25rem; }
.industry-card p { font-size: .88rem; color: var(--gray-500); margin: 0; }

/* ---------- 23. Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -16px; left: 1.25rem;
  background: var(--gradient-hero);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  padding: .25rem .65rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.step h3 { font-size: 1.05rem; margin: .5rem 0 .35rem; }
.step p { font-size: .92rem; color: var(--gray-500); margin: 0; }

/* ---------- 24. About / Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform .2s var(--ease);
}
.team-card:hover { transform: translateY(-3px); }
.team-card__avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--gradient-hero);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.team-card h3 { font-size: 1.05rem; margin: 0 0 .25rem; }
.team-card span { color: var(--teal-600); font-size: .88rem; font-weight: 600; }
.team-card p { font-size: .88rem; color: var(--gray-500); margin: .75rem 0 0; }

/* ---------- 25. Misc ---------- */
.lead-muted { color: var(--gray-500); }
.text-white { color: var(--white); }
.bg-soft { background: var(--gray-50); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.hide-on-mobile { }
@media (max-width: 720px) {
  .hide-on-mobile { display: none !important; }
}

.skip-link {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; top: 1rem; left: 1rem; width: auto; height: auto;
  padding: .6rem 1rem;
  background: var(--navy-900); color: var(--white);
  border-radius: 8px; z-index: 999;
}

/* ---------- 26. Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 27. Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
