/* =========================================================
   AITEC Solutions — styles.css (v5 — Syne + Manrope)
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --c-blue:   #1B75BC;
  --c-purple: #7B2D8B;
  --c-green:  #5AAA2A;
  --c-orange: #F7941D;
  --c-red:    #ED1C24;
  --c-navy:   #0F1B2D;

  --c-ink:    #0F1B2D;
  --c-text:   #374151;
  --c-muted:  #6B7280;
  --c-line:   #E5E7EB;
  --c-bg:     #FFFFFF;
  --c-soft:   #F5F7FF;

  --ff-head: 'Poppins', system-ui, sans-serif;
  --ff-body: 'Poppins', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --shadow-sm:   0 2px 12px rgba(15,27,45,0.06);
  --shadow-card: 0 8px 40px rgba(15,27,45,0.09);
  --shadow-lg:   0 20px 60px rgba(15,27,45,0.13);

  --container: 1200px;
  --nav-h: 80px;
}

/* ---------- 2. Global blob background ---------- */
.page-blobs {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden; pointer-events: none;
}
.pb { position: absolute; border-radius: 50%; }
.pb--1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(247,148,29,0.20) 0%, rgba(237,28,36,0.06) 50%, transparent 72%);
  top: -25vh; left: -20vw;
}
.pb--2 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(123,45,139,0.16) 0%, transparent 68%);
  top: 8vh; right: -14vw;
}
.pb--3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(27,117,188,0.12) 0%, transparent 68%);
  top: 42vh; left: 28vw;
}
.pb--4 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(90,170,42,0.11) 0%, transparent 68%);
  bottom: 10vh; left: -8vw;
}
.pb--5 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(237,28,36,0.09) 0%, transparent 68%);
  bottom: 18vh; right: 4vw;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4 { font-family: var(--ff-head); color: var(--c-ink); margin: 0; line-height: 1.15; letter-spacing: 0; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
:focus-visible { outline: 3px solid var(--c-blue); outline-offset: 3px; border-radius: 4px; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 18px; }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body);
  font-size: 14px; font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap; cursor: pointer; border: 0;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

/* ── Split-tab: extra right padding + shared ::after ── */
.btn--navy,
.btn--white,
.btn--ghost,
.btn--whatsapp,
.btn--outline-light { padding-right: 62px; }

.btn--navy::after,
.btn--white::after,
.btn--ghost::after,
.btn--whatsapp::after,
.btn--outline-light::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 46px;
  background-position: center; background-repeat: no-repeat; background-size: 16px;
  pointer-events: none;
}

/* Navy (dark) → dark overlay tab + white chevron */
.btn--navy {
  background: var(--c-navy); color: #fff;
  box-shadow: 0 6px 20px rgba(15,27,45,0.22);
}
.btn--navy::after {
  background-color: rgba(0,0,0,0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  border-left: 1px solid rgba(255,255,255,0.14);
}
.btn--navy:hover { box-shadow: 0 12px 28px rgba(15,27,45,0.28); }

/* Ghost → blue tab + white chevron */
.btn--ghost {
  background: #fff; color: var(--c-ink);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--c-line);
}
.btn--ghost::after {
  background-color: var(--c-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}
.btn--ghost:hover { border-color: var(--c-blue); }

/* White → brand-blue tab + white chevron */
.btn--white {
  background: #fff; color: var(--c-navy);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.btn--white::after {
  background-color: var(--c-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

/* White-orange → white body + orange tab */
.btn--white-orange {
  background: #fff; color: var(--c-navy);
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
}
.btn--white-orange::after {
  background-color: #F7941D;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}
.btn--white-orange:hover { box-shadow: 0 10px 28px rgba(247,148,29,0.3); }

/* Outline-light → frosted tab + white chevron */
.btn--outline-light {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn--outline-light::after {
  background-color: rgba(255,255,255,0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  border-left: 1px solid rgba(255,255,255,0.2);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* WhatsApp → dark-green tab + WA icon */
.btn--whatsapp {
  border-radius: 50px;
  background: #3aaa6e; color: #fff;
  box-shadow: 0 2px 6px rgba(58,170,110,0.22);
}
.btn--whatsapp::after {
  background-color: rgba(0,0,0,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M11.999 2C6.477 2 2 6.477 2 12c0 1.89.525 3.66 1.438 5.168L2 22l4.948-1.42A9.956 9.956 0 0 0 12 22c5.523 0 10-4.477 10-10S17.523 2 11.999 2zm0 18c-1.717 0-3.332-.45-4.73-1.24l-.34-.2-3.527 1.012.994-3.633-.218-.355A7.944 7.944 0 0 1 4 12c0-4.411 3.589-8 8-8s8 3.589 8 8-3.589 8-8 8z'/%3E%3C/svg%3E");
  border-left: 1px solid rgba(255,255,255,0.18);
  background-size: 18px;
}
.btn--whatsapp svg { display: none; }
.btn--whatsapp:hover { background: #2d9060; box-shadow: 0 4px 12px rgba(58,170,110,0.30); }

/* ---------- 4. Section labels ---------- */
.section-label {
  font-family: var(--ff-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-blue);
  margin: 0 0 12px;
}
.section-label--light { color: rgba(255,255,255,0.7); }

/* ---------- 5. Section head ---------- */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; margin-bottom: 14px;
}
.section-head p { font-size: 17px; color: var(--c-muted); margin: 0; }

/* ---------- 6. Learn more ---------- */
.learn-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 700;
  color: var(--c-blue);
  transition: gap .2s;
}
.learn-more:hover { gap: 8px; }
.learn-more span { transition: transform .2s; }
.learn-more:hover span { transform: translateX(3px); }

/* ---------- 7. Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.nav__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { max-height: 44px; }
.logo-text { font-family: var(--ff-head); font-weight: 700; font-size: 22px; color: var(--c-ink); }
.nav__links { display: flex; gap: 22px; }
.nav__links a {
  font-family: var(--ff-body);
  font-size: 17px; font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  transition: color .2s;
  position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--c-blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.nav__links a:hover { color: var(--c-blue); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.nav-active { color: var(--c-blue); font-weight: 700; }
.nav__links a.nav-active::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 28px; height: 28px;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--c-ink);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 110px;
  overflow: hidden;
}
.hero__blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero__blob--1 {
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(247,148,29,0.22) 0%, rgba(237,28,36,0.06) 55%, transparent 75%);
  top: -320px; left: -220px;
}
.hero__blob--2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(123,45,139,0.16) 0%, transparent 70%);
  bottom: -140px; right: -100px;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27,117,188,0.11) 0%, transparent 70%);
  top: 38%; left: 32%;
}
.hero__split {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em; text-transform: none;
  color: var(--c-orange);
  margin: 0 0 16px;
}
.hero__left h1 {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700; margin-bottom: 20px;
}
.hero__left h1 em { font-style: normal; color: var(--c-blue); }
.hero__desc {
  font-size: 17px; color: var(--c-muted);
  margin: 0 0 36px; max-width: 480px; line-height: 1.75;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__img-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
/* Visible organic warm blob behind the photo — no blur */
.hero__img-wrap::before {
  content: '';
  position: absolute;
  width: 108%; height: 94%;
  top: 3%; left: -4%;
  border-radius: 55% 45% 35% 65% / 60% 38% 62% 40%;
  background: linear-gradient(145deg, #FEF3E2 0%, #ECE4FF 100%);
  z-index: 0;
}
/* Photo wrapper — organic soft shape, no circle */
.hero__img-blob {
  border-radius: 50% 50% 42% 58% / 52% 44% 56% 48%;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(15,27,45,0.13);
}
.hero__img-blob img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
/* Decorative accent dot */
.hero__accent-dot {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-orange);
  top: 16%; right: -2%;
  z-index: 6;
  animation: floatY 3.6s ease-in-out infinite;
  animation-delay: 2s;
}
.hero__accent-ring {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--c-blue);
  opacity: 0.35;
  bottom: 22%; left: -5%;
  z-index: 6;
  animation: floatY 4.2s ease-in-out infinite;
  animation-delay: 0.6s;
}

/* --- Floating cards --- */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float-card {
  position: absolute;
  z-index: 10;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 14px 44px rgba(15,27,45,0.15);
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap; z-index: 5;
  animation: floatY 4s ease-in-out infinite;
}
.float-card--tl { top: 20%; left: -100px; animation-delay: 0s; }
.float-card--br { bottom: 12%; right: -90px; animation-delay: 1.6s; }
.float-card__ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(145deg, #fff, color-mix(in srgb, var(--fc, var(--c-blue)) 12%, #fff));
  box-shadow:
    4px 4px 12px color-mix(in srgb, var(--fc, var(--c-blue)) 25%, rgba(0,0,0,0.08)),
    -2px -2px 8px rgba(255,255,255,0.9);
  color: var(--fc, var(--c-blue));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-card__val {
  font-family: var(--ff-head);
  font-size: 18px; font-weight: 700; color: var(--c-ink); line-height: 1;
}
.float-card__lbl { font-size: 11px; color: var(--c-muted); margin-top: 3px; }
.float-badge {
  position: absolute;
  background: #fff; border-radius: 10px;
  padding: 9px 14px; font-size: 11px; font-weight: 700;
  color: var(--c-green); display: flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 28px rgba(15,27,45,0.12);
  z-index: 5;
  animation: floatY 4s ease-in-out infinite;
}
.float-badge--tr { top: -18px; right: -18px; animation-delay: 0.9s; }

/* ---------- 9. Feature Strip ---------- */
.feature-strip {
  background: transparent;
  padding: 90px 0;
}
.feature-strip__inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: center;
}
.fs-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(15,27,45,0.18);
  aspect-ratio: 4/3;
}
.fs-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.fs-img:hover img { transform: scale(1.04); }
.feature-strip__text h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700; color: var(--c-ink);
  margin: 12px 0 16px; line-height: 1.2;
}
.feature-strip__text h2 em { font-style: normal; color: var(--c-blue); }
.feature-strip__text > p { font-size: 15px; color: var(--c-muted); margin: 0; line-height: 1.7; }
.fs-card {
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  box-shadow: 0 0 12px rgba(15,27,45,0.05);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.fs-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--fs-color, var(--c-blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.fs-card:hover { transform: translateY(-3px); box-shadow: 0 0 22px rgba(15,27,45,0.09); border-color: transparent; }
.fs-card:hover::before { transform: scaleX(1); }
.fs-card__icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: color-mix(in srgb, var(--fs-color, var(--c-blue)) 10%, #fff);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--fs-color, var(--c-blue)) 15%, transparent);
  color: var(--fs-color, var(--c-blue));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s;
}
.fs-card:hover .fs-card__icon { transform: scale(1.07); }
.fs-card h3 { font-size: 18px; font-weight: 700; color: var(--c-ink); margin: 0 0 10px; }
.fs-card p { font-size: 14px; color: var(--c-muted); margin: 0 0 22px; line-height: 1.65; }
.fs-card .learn-more { color: var(--fs-color, var(--c-blue)); }

/* ---------- 10. Partners Strip ---------- */
.partners {
  padding: 64px 0 68px;
  background: transparent;
}
.partners__label {
  display: block; text-align: center;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-muted); margin: 0 0 36px;
}
.partners__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.partners__track {
  display: flex; align-items: center;
  gap: 72px; width: max-content;
  animation: marquee 38s linear infinite;
  padding: 12px 0;
}
.partners__track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  font-family: var(--ff-head);
  font-size: 22px; font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.03em;
  opacity: 0.28;
  white-space: nowrap;
  transition: opacity .25s, color .25s;
  cursor: default;
  flex-shrink: 0;
}
.partner-logo:hover { opacity: 1; color: var(--c-blue); }

/* ---------- 11. Services ---------- */
.services { padding: 100px 0; }

/* Filter tabs */
.svc-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.svc-filter {
  padding: 10px 22px; border-radius: 50px;
  border: 2px solid var(--c-line);
  background: #fff; color: var(--c-muted);
  font-family: var(--ff-body); font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all .25s;
}
.svc-filter:hover {
  border-color: var(--fc, var(--c-blue));
  color: var(--fc, var(--c-blue));
  background: color-mix(in srgb, var(--fc, var(--c-blue)) 8%, #fff);
}
.svc-filter.active {
  background: var(--fc, var(--c-blue));
  border-color: var(--fc, var(--c-blue));
  color: #fff;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--fc, var(--c-blue)) 35%, transparent);
}
.svc-filter[data-filter="all"].active { background: var(--c-ink); border-color: var(--c-ink); box-shadow: 0 4px 16px rgba(15,27,45,0.25); }

/* Card filter animation */
.svc-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, opacity .25s ease;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px 26px;
  border: 1.5px solid var(--c-line);
  box-shadow: 0 0 12px rgba(15,27,45,0.05);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent, var(--c-blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 0 22px rgba(15,27,45,0.09); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: color-mix(in srgb, var(--accent, var(--c-blue)) 10%, #fff);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent, var(--c-blue)) 15%, transparent);
  color: var(--accent, var(--c-blue));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s;
}
.svc-card:hover .svc-card__icon {
  transform: scale(1.07);
}
.svc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--c-muted); margin: 0 0 22px; line-height: 1.65; }

/* ---------- 10. About ---------- */
.about { padding: 100px 0; background: transparent; }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about__visual {
  position: relative;
  overflow: visible;
  padding: 20px 80px 20px 80px;
}
.about__blob {
  border-radius: 40% 60% 55% 45% / 50% 45% 60% 40%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(247,148,29,0.10), rgba(27,117,188,0.07));
  aspect-ratio: 1;
}
.about__blob img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* floating stat cards */
.about__fc {
  position: absolute;
  background: #fff; border-radius: 14px;
  padding: 10px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 30px rgba(15,27,45,0.12);
  animation: floatY 4s ease-in-out infinite;
  white-space: nowrap;
  z-index: 10;
}
.about__fc--tl { top: 10%; left: -2%; animation-delay: 0s; }
.about__fc--br { bottom: 8%; right: -2%; animation-delay: 1.8s; }
.about__fc-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.about__fc-val { font-size: 18px; font-weight: 800; color: var(--c-ink); line-height: 1; }
.about__fc-lbl { font-size: 11px; color: var(--c-muted); margin-top: 2px; }

/* decorative dots */
.about__dot { position: absolute; border-radius: 50%; pointer-events: none; }
.about__dot--orange {
  width: 14px; height: 14px;
  background: var(--c-orange);
  top: 8%; right: 4%;
}
.about__dot--ring {
  width: 28px; height: 28px;
  border: 2.5px solid var(--c-blue); opacity: 0.35;
  bottom: 24%; left: -4%;
  animation: floatY 5s ease-in-out infinite; animation-delay: 1s;
}

/* background blob behind photo */
.about__bg-blob {
  position: absolute;
  width: 88%; height: 88%;
  top: 6%; left: 6%;
  border-radius: 42% 58% 55% 45% / 48% 52% 48% 52%;
  background: linear-gradient(135deg, rgba(247,148,29,0.18) 0%, rgba(123,45,139,0.10) 100%);
  z-index: 0;
}
.about__blob { position: relative; z-index: 1; }
.about__body .section-label { display: block; }
.about__body h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; margin: 12px 0 18px; }
.about__body > p { font-size: 16px; color: var(--c-muted); margin: 0 0 32px; line-height: 1.75; }
.about__checks {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.about__checks li {
  display: flex; align-items: flex-start; gap: 14px;
}
.about__check-ico {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: color-mix(in srgb, var(--c-blue) 12%, #fff);
  color: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.about__checks strong { display: block; font-size: 15px; font-weight: 700; color: var(--c-ink); margin-bottom: 3px; }
.about__checks p { font-size: 13px; color: var(--c-muted); margin: 0; line-height: 1.55; }

/* ---------- 11. Testimonials ---------- */
.temoignages { padding: 100px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1.5px solid var(--c-line);
  margin: 0;
  transition: transform .25s, box-shadow .25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testi-card p {
  font-size: 15px; color: var(--c-text);
  line-height: 1.75; margin: 0 0 24px;
  font-style: italic;
}
.testi-card p::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 52px; line-height: 0; vertical-align: -22px;
  color: var(--c-line); margin-right: 2px;
}
.testi-card footer {
  border-top: 1px solid var(--c-line);
  padding-top: 18px;
}
.testi-card strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 14px; font-weight: 700;
  color: var(--c-ink); margin-bottom: 2px;
}
.testi-card span { font-size: 12px; color: var(--c-muted); }

/* ---------- 11b. Market Teaser ---------- */
.market-teaser { padding: 0 0 80px; }
.market-teaser__inner {
  background: linear-gradient(135deg, #7B2D8B 0%, #1B75BC 52%, #F7941D 100%);
  border-radius: 24px;
  padding: 60px 68px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  box-shadow:
    0 0 80px -10px rgba(123,45,139,0.55),
    0 0 80px -10px rgba(247,148,29,0.35),
    0 24px 60px -12px rgba(27,117,188,0.4);
}
.market-teaser__inner::before {
  content: '';
  position: absolute; top: -60%; left: -10%;
  width: 55%; height: 220%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.market-teaser__text { max-width: 580px; position: relative; z-index: 1; }
.market-teaser__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff; margin: 8px 0 14px; line-height: 1.15;
}
.market-teaser__text p {
  font-size: 15.5px; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin: 0 0 28px;
}
.market-teaser__cats {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px;
}
.market-teaser__cats span {
  color: rgba(255,255,255,0.9); font-size: 12.5px; font-weight: 700;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
}
@media (max-width: 768px) {
  .market-teaser__inner { padding: 40px 28px; }
  .market-teaser__text h2 { font-size: 1.7rem; }
}

/* ---------- 12. Contact CTA ---------- */
.contact-cta {
  padding: 100px 0;
  background: var(--c-navy);
  position: relative; overflow: hidden;
}
.contact-cta__blob {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,117,188,0.22) 0%, transparent 70%);
  top: -180px; right: -80px; pointer-events: none;
}
.contact-cta__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.contact-cta__text h2 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 700;
  color: #fff; margin: 12px 0 16px;
}
.contact-cta__text p { font-size: 16px; color: rgba(255,255,255,0.5); margin: 0; }
.contact-cta__links { display: flex; flex-direction: column; gap: 12px; }
.contact-cta__hours { font-size: 13px; color: rgba(255,255,255,0.3); margin: 4px 0 0; letter-spacing: 0.03em; }

/* ---------- 13. Footer ---------- */
.footer { background: #080E1A; padding: 72px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo { max-height: 40px; margin-bottom: 14px; }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; margin: 0 0 24px; }
.footer__social { display: flex; gap: 16px; }
.footer__social a { color: rgba(255,255,255,0.3); transition: color .2s; }
.footer__social a:hover { color: #fff; }
.footer__nav-title {
  font-family: var(--ff-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin: 0 0 18px;
}
.footer__nav, .footer__services, .footer__contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__services a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color .2s; }
.footer__nav a:hover, .footer__services a:hover { color: #fff; }
.footer__contact-info p { font-size: 14px; color: rgba(255,255,255,0.35); margin: 0; }
.footer__contact-info a { transition: color .2s; }
.footer__contact-info a:hover { color: rgba(255,255,255,0.8); }
.footer__bottom { padding: 20px 0; }
.footer__bottom span { font-size: 13px; color: rgba(255,255,255,0.18); }

/* ---------- 14. Why Us ---------- */
.why-us { padding: 100px 0; background: transparent; }
.why-us__inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: center;
}
.why-us__left h2 {
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 700;
  margin: 12px 0 20px;
}
.why-us__left > p { font-size: 17px; color: var(--c-muted); line-height: 1.75; margin: 0; }
.why-us__grid {
  display: flex; flex-direction: column;
  gap: 0;
}
.why-item {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { background: none; transform: none; box-shadow: none; }
.why-item__icon {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: color-mix(in srgb, var(--wi, var(--c-blue)) 12%, #fff);
  color: var(--wi, var(--c-blue));
  display: flex; align-items: center; justify-content: center;
}
.why-item__text { flex: 1; }
.why-item h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.why-item p { font-size: 15px; color: var(--c-muted); margin: 0; line-height: 1.65; }

/* ---------- 15. SVG icon color — currentColor must sit on the svg element ---------- */
.svc-card__icon svg { color: var(--accent, var(--c-blue)); }
.fs-card__icon svg  { color: var(--fs-color, var(--c-blue)); }
.why-item__icon svg { color: var(--wi, var(--c-blue)); }
.float-card__ico svg { color: var(--fc, var(--c-blue)); }

/* ---------- 16. Decorative floating elements ---------- */

/* Extra global blobs */
.pb--6 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(90,170,42,0.11) 0%, transparent 68%);
  top: 58vh; right: 8vw;
}
.pb--7 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(247,148,29,0.13) 0%, transparent 68%);
  top: 78vh; left: 38vw;
}
.pb--8 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(27,117,188,0.10) 0%, transparent 68%);
  bottom: 5vh; right: -8vw;
}

/* Shared deco keyframe */
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity:.6; } 50% { transform: scale(1.18); opacity:.9; } }

/* Feature strip deco */
.feature-strip { position: relative; overflow: visible; }
.feature-strip::before {
  content: ''; position: absolute;
  width: 130px; height: 130px; border-radius: 50%;
  border: 2.5px solid rgba(123,45,139,0.18);
  top: -50px; right: 6%; pointer-events: none;
  animation: spinSlow 18s linear infinite;
}
.feature-strip::after {
  content: ''; position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-orange); opacity: .55;
  bottom: 24px; left: 4%; pointer-events: none;
  animation: floatY 3.2s ease-in-out infinite;
}

/* Services section deco */
.services { position: relative; overflow: visible; }
.services::before {
  content: ''; position: absolute;
  width: 340px; height: 340px; border-radius: 50%;
  border: 3px solid rgba(27,117,188,0.12);
  top: -40px; left: -120px; pointer-events: none;
  animation: spinSlow 30s linear infinite;
}
.services::after {
  content: ''; position: absolute;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--c-purple); opacity: .4;
  top: 60px; right: 4%; pointer-events: none;
  animation: pulse 3.8s ease-in-out infinite;
}

/* About section deco */
.about { position: relative; overflow: visible; }
.about::after {
  content: ''; position: absolute;
  width: 70px; height: 70px; border-radius: 50%;
  border: 2.5px dashed rgba(90,170,42,0.25);
  top: 24px; right: 8%; pointer-events: none;
  animation: spinSlow 22s linear infinite reverse;
}

/* Why Us deco */
.why-us { position: relative; overflow: visible; }
.why-us::before {
  content: ''; position: absolute;
  width: 90px; height: 90px; border-radius: 50%;
  border: 2px solid rgba(247,148,29,0.22);
  bottom: 30px; right: 4%; pointer-events: none;
  animation: floatY 5s ease-in-out infinite; animation-delay: .8s;
}
.why-us::after {
  content: ''; position: absolute;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c-green); opacity: .5;
  top: 50px; left: 6%; pointer-events: none;
  animation: pulse 2.8s ease-in-out infinite;
}

/* Testimonials deco */
.temoignages { position: relative; overflow: visible; }
.temoignages::before {
  content: ''; position: absolute;
  width: 170px; height: 170px; border-radius: 50%;
  border: 2px solid rgba(237,28,36,0.10);
  top: 10px; right: 2%; pointer-events: none;
  animation: spinSlow 25s linear infinite;
}
.temoignages::after {
  content: ''; position: absolute;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-blue); opacity: .35;
  bottom: 50px; left: 3%; pointer-events: none;
  animation: floatY 4s ease-in-out infinite; animation-delay: 1.4s;
}

/* Partners deco */
.partners { position: relative; }
.partners::before {
  content: ''; position: absolute;
  width: 50px; height: 50px; border-radius: 50%;
  border: 2px solid rgba(247,148,29,0.2);
  top: 50%; right: 3%; transform: translateY(-50%);
  pointer-events: none; animation: floatY 4s ease-in-out infinite;
}

/* Extra scattered dots — injected via a deco layer on body */
body::before {
  content: ''; position: fixed;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-orange); opacity: .35;
  top: 30vh; left: 3vw; pointer-events: none; z-index: 0;
  animation: floatY 3.5s ease-in-out infinite;
}
body::after {
  content: ''; position: fixed;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-purple); opacity: .35;
  top: 65vh; right: 2vw; pointer-events: none; z-index: 0;
  animation: floatY 4.5s ease-in-out infinite; animation-delay: 1s;
}

/* ---------- 17. Scroll reveal ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- 17b. Stats Bar ---------- */
.stats-bar {
  background: linear-gradient(135deg, var(--c-navy) 0%, #1B75BC 100%);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -180px; right: -120px; pointer-events: none;
}
.stats-bar__grid {
  display: flex; justify-content: center;
  gap: 0; text-align: center;
  max-width: 760px; margin: 0 auto;
}
.stat-item {
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,0.12);
  flex: 1; max-width: 260px;
}
.stat-item:last-child { border-right: none; }
.stat-item__ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin: 0 auto 18px;
}
.stat-item__num {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800; color: #fff; line-height: 1;
  margin-bottom: 10px;
}
.stat-item__lbl {
  font-size: 14px; color: rgba(255,255,255,0.6);
  font-weight: 500; letter-spacing: 0.02em;
}

/* ---------- 17c. How We Work (Process) ---------- */
.process { padding: 100px 0; background: var(--c-bg-soft); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 28px;
  position: relative;
}
/* Connecting line between steps */
.process-step__connector {
  position: absolute;
  top: 52px; right: -50%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--c-blue) 0%, var(--c-line) 100%);
  z-index: 0;
}
.process-step__num {
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--c-blue); margin-bottom: 18px;
  background: color-mix(in srgb, var(--c-blue) 10%, #fff);
  border: 1.5px solid color-mix(in srgb, var(--c-blue) 20%, transparent);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.process-step__icon {
  width: 80px; height: 80px; border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(27,117,188,0.13), 0 0 0 1px rgba(27,117,188,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-blue);
  margin-bottom: 28px;
  position: relative; z-index: 1;
  transition: transform .3s cubic-bezier(.34,1.46,.64,1), box-shadow .25s ease;
}
.process-step:hover .process-step__icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 40px rgba(27,117,188,0.22);
}
/* Alternate icon accent colors */
.process-step:nth-child(1) .process-step__icon { color: var(--c-blue); }
.process-step:nth-child(2) .process-step__icon { color: var(--c-purple); }
.process-step:nth-child(3) .process-step__icon { color: var(--c-green); }
.process-step:nth-child(4) .process-step__icon { color: var(--c-orange); }
.process-step:nth-child(2) .process-step__num { color: var(--c-purple); background: color-mix(in srgb, var(--c-purple) 10%, #fff); border-color: color-mix(in srgb, var(--c-purple) 20%, transparent); }
.process-step:nth-child(3) .process-step__num { color: var(--c-green);  background: color-mix(in srgb, var(--c-green)  10%, #fff); border-color: color-mix(in srgb, var(--c-green)  20%, transparent); }
.process-step:nth-child(4) .process-step__num { color: var(--c-orange); background: color-mix(in srgb, var(--c-orange) 10%, #fff); border-color: color-mix(in srgb, var(--c-orange) 20%, transparent); }

.process-step h3 {
  font-size: 17px; font-weight: 700; color: var(--c-ink);
  margin: 0 0 12px; line-height: 1.3;
}
.process-step p {
  font-size: 14px; color: var(--c-muted); line-height: 1.7; margin: 0;
}

/* ---------- 17d. Testimonial avatars ---------- */
.testi-card footer {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--c-line);
  padding-top: 18px; margin-top: 24px;
}
.testi-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-line);
  flex-shrink: 0;
}
.testi-card .testi-meta strong {
  display: block; font-weight: 700; font-size: 14px; color: var(--c-ink);
}
.testi-card .testi-meta span { font-size: 12px; color: var(--c-muted); }

/* ---------- 16. Responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .process-step__connector { display: none; }
  .stats-bar__grid { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 24px 0; }
  .stat-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav__links {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0;
    padding: 8px 28px 28px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-card);
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 16px; padding: 14px 0; border-bottom: 1px solid var(--c-line); }
  .nav__right .btn--navy { display: none; }
  .hero__split { grid-template-columns: 1fr; gap: 52px; }
  .hero__img-wrap { max-width: 380px; }
  .float-card--tl { left: -20px; }
  .float-card--br { right: -20px; }
  .feature-strip__inner { grid-template-columns: 1fr; gap: 32px; }
  .why-us__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 400px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-cta__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .float-card, .float-badge { display: none; }
  .why-us__grid { grid-template-columns: 1fr; }
  .partner-logo { font-size: 15px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .stats-bar__grid { flex-wrap: wrap; }
}

/* =========================================================
   INNER PAGES — page-specific styles
   ========================================================= */

/* ── Page Hero (small banner for inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 88px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero__blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.page-hero__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,117,188,0.10) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.page-hero__blob--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(123,45,139,0.08) 0%, transparent 70%);
  bottom: -100px; left: -60px;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800;
  color: var(--c-ink); margin: 0 0 18px; line-height: 1.12;
}
.page-hero p {
  font-size: 18px; color: var(--c-muted);
  max-width: 620px; margin: 0 auto; line-height: 1.7;
}
.page-hero__breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 24px;
  font-size: 13px; color: var(--c-muted);
}
.page-hero__breadcrumb a { color: var(--c-blue); text-decoration: none; }
.page-hero__breadcrumb a:hover { text-decoration: underline; }

/* ── Page filter tabs (reused on portfolio + blog) ── */
.page-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 48px;
}
.page-filter {
  padding: 9px 22px; border-radius: 50px;
  border: 2px solid var(--c-line);
  background: transparent; color: var(--c-muted);
  font-family: var(--ff-body); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.page-filter.active,
.page-filter:hover {
  background: var(--c-blue); border-color: var(--c-blue);
  color: #fff;
}

/* ── Contact page ── */
.contact-page { padding: 60px 0 100px; }
.contact-page__grid {
  display: grid; grid-template-columns: 1fr 1.7fr;
  gap: 56px; align-items: start;
}
.contact-info-stack {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--c-line);
}
.contact-info-card {
  padding: 18px 24px;
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--c-line);
  transition: background .2s;
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card:hover { background: var(--c-bg-soft); }
.contact-info-card__ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-ink);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.contact-info-card h4 {
  font-size: 10px; font-weight: 700; margin: 0 0 3px;
  color: var(--c-ink); text-transform: uppercase; letter-spacing: 0.1em;
}
.contact-info-card p, .contact-info-card a {
  font-size: 15px; font-weight: 500; color: var(--c-muted);
  margin: 0; line-height: 1.45; text-decoration: none;
}
.contact-info-card a:hover { color: var(--c-blue); }
.contact-social { margin-top: 28px; }
.contact-social p { font-size: 13px; font-weight: 700; color: var(--c-ink); margin: 0 0 12px; }
.contact-social__links { display: flex; gap: 12px; }
.contact-social__links a {
  width: 42px; height: 42px; border-radius: 12px;
  background: #fff; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted); transition: color .2s, box-shadow .2s;
}
.contact-social__links a:hover { color: var(--c-blue); box-shadow: var(--shadow-card); }
.contact-form-card {
  background: #fff; border-radius: var(--r-xl);
  padding: 44px 48px; box-shadow: var(--shadow-card);
}
.contact-form-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.contact-form-card > p { font-size: 15px; color: var(--c-muted); margin: 0 0 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--c-ink); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--c-line);
  border-radius: 11px; font-family: var(--ff-body); font-size: 14px;
  color: var(--c-ink); background: #fafafa; outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(27,117,188,0.10);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }

/* ── About page ── */
.about-story { padding: 60px 0 80px; }
.about-story__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-story__img {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-card);
}
.about-story__img img { width: 100%; height: 100%; object-fit: cover; }
.about-story__text .section-label { margin-bottom: 14px; }
.about-story__text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin: 0 0 20px; }
.about-story__text p { font-size: 16px; color: var(--c-muted); line-height: 1.8; margin: 0 0 16px; }
.about-values { padding: 0 0 80px; }
.about-values h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; text-align: center; margin: 0 0 48px; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.value-card {
  background: #fff; border-radius: var(--r-xl); padding: 32px 26px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .28s, box-shadow .28s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-card__ico {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.value-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 10px; }
.value-card p { font-size: 14px; color: var(--c-muted); line-height: 1.65; margin: 0; }
/* ── Certifications section (replaces timeline) ── */
.about-certif { padding: 0 0 100px; }
.about-certif .section-head { margin-bottom: 52px; }
.certif-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.certif-card {
  background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .28s, box-shadow .28s;
  border-top: 4px solid var(--cc);
}
.certif-card:hover { transform: translateY(-7px); box-shadow: 0 20px 48px -10px rgba(0,0,0,0.14); }
.certif-card__icon {
  width: 100%; padding: 28px 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.certif-card__body { padding: 20px 20px 24px; flex: 1; }
.certif-card__body h3 { font-size: 17px; font-weight: 800; margin: 0 0 8px; color: var(--cc); }
.certif-card__body p { font-size: 13px; color: var(--c-muted); line-height: 1.6; margin: 0 0 14px; }
.certif-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.certif-tags span {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 1px 0 1px 8px;
  border-left: 2px solid var(--cc);
  background: transparent;
  color: var(--cc);
}

/* Sector tags row */
.sector-block { text-align: center; }
.sector-block__title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--c-muted); margin-bottom: 20px;
}
.sector-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.sector-tag {
  padding: 2px 0 2px 10px; font-size: 14px; font-weight: 600;
  background: transparent;
  color: var(--st);
  border: none;
  border-left: 2px solid var(--st);
  transition: opacity .2s;
  cursor: default;
}
.sector-tag:hover { opacity: 0.75; }

/* ── Portfolio page ── */
.portfolio-section { padding: 48px 0 100px; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.project-card {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .28s, box-shadow .28s;
}
.project-card:hover { transform: translateY(-7px); box-shadow: 0 24px 56px rgba(27,117,188,0.16); }
.project-card__img { aspect-ratio: 16/10; overflow: hidden; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-card__img img { transform: scale(1.06); }
.project-card__body { padding: 24px 26px 28px; }
.project-tag {
  display: inline-block; padding: 1px 0 1px 9px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; margin-bottom: 13px;
  border-left: 2px solid currentColor; background: transparent !important;
}
.project-card__body h3 { font-size: 18px; font-weight: 700; margin: 0 0 9px; color: var(--c-ink); }
.project-card__body .result {
  font-size: 13px; color: var(--c-muted); margin: 0 0 16px; line-height: 1.6;
}
.project-tags-row { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-pill {
  font-size: 11px; font-weight: 600;
  color: var(--c-muted); background: transparent;
  padding: 1px 0 1px 7px;
  border-left: 1.5px solid var(--c-line);
}

/* ── Blog page ── */
.blog-section { padding: 48px 0 100px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card {
  background: #fff; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .28s, box-shadow .28s;
}
.article-card:hover { transform: translateY(-7px); box-shadow: 0 24px 56px rgba(27,117,188,0.14); }
.article-card__img { aspect-ratio: 16/9; overflow: hidden; }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.article-card:hover .article-card__img img { transform: scale(1.06); }
.article-card__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.article-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; flex-wrap: wrap; }
.article-cat {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 1px 0 1px 8px;
  border-left: 2px solid currentColor;
  background: transparent !important;
  white-space: nowrap;
}
.article-date { font-size: 12px; color: var(--c-muted); }
.article-card__body h3 {
  font-size: 17px; font-weight: 700; margin: 0 0 11px;
  line-height: 1.4; color: var(--c-ink);
}
.article-card__body p {
  font-size: 14px; color: var(--c-muted); line-height: 1.7; margin: 0 0 20px; flex: 1;
}
.article-read-more {
  font-size: 13px; font-weight: 700; color: var(--c-blue);
  text-decoration: none; transition: color .2s;
}
.article-read-more:hover { color: var(--c-navy); }

/* ── Inner page responsive ── */
@media (max-width: 900px) {
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .about-story__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .certif-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .certif-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero { padding-bottom: 56px; }
}
