/* ============================================================
   DOLPHYN MANAGEMENT & CONSULTANCY — Stylesheet v3
   Font     : IBM Plex Sans
   Primary  : #23618a  |  Accent: #168181
   ============================================================ */

:root {
  --primary:     #23618a;
  --primary-dk:  #1a4a6a;
  --accent:      #168181;
  --accent-dk:   #0f6464;
  --white:       #ffffff;
  --off-white:   #f4f6f8;
  --light-grey:  #e2e8ed;
  --mid-grey:    #8a9aaa;
  --dark:        #101c26;
  --text:        #2a3a45;
  --text-light:  #5a6c78;

  --font:  'IBM Plex Sans', system-ui, -apple-system, sans-serif;

  --nav-h:   76px;
  --max-w:   1180px;
  --sec-pad: 5.5rem;

  --radius:    2px;
  --ease:      0.22s ease;
  --shadow:    0 4px 24px rgba(35,97,138,0.10);
  --shadow-lg: 0 12px 44px rgba(35,97,138,0.18);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── Typography ──────────────────────────────────────────── */
h1 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--primary);
}
h2 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h4 { font-weight: 600; font-size: 0.95rem; }
p { margin-bottom: 1.25rem; line-height: 1.78; }
p:last-child { margin-bottom: 0; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--sec-pad) 0; }
.section--grey { background: var(--off-white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ── Utility ─────────────────────────────────────────────── */
.divider { width: 44px; height: 3px; background: var(--accent); margin: 1rem 0 1.5rem; border-radius: 2px; }
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  transition: all var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline { border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--outline-dark { border: 1.5px solid var(--primary); color: var(--primary); }
.btn--outline-dark:hover { background: var(--primary); color: var(--white); }
.btn--white { background: var(--white); color: var(--accent); }
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  z-index: 1000;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo img { height: 40px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 2.2rem; margin-left: auto; }
.nav__links a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--primary); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 1.25rem; }

/* Language dropdown */
.lang-dropdown { position: relative; }
.lang-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  padding: 0.4rem 0.75rem;
  border: 1.5px solid var(--light-grey);
  border-radius: 4px;
  background: var(--white);
  transition: all var(--ease);
}
.lang-dropdown__toggle:hover { border-color: var(--accent); color: var(--accent); }
.lang-dropdown__flag { font-size: 1rem; line-height: 1; }
.lang-dropdown__caret {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--ease);
  flex-shrink: 0;
}
.lang-dropdown.open .lang-dropdown__caret { transform: rotate(180deg); }
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  min-width: 168px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--ease), transform var(--ease);
  overflow: hidden;
  z-index: 100;
}
.lang-dropdown.open .lang-dropdown__menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-dropdown__menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: background var(--ease), color var(--ease);
}
.lang-dropdown__menu button:hover { background: var(--off-white); color: var(--primary); }
.lang-dropdown__menu button.active { color: var(--accent); font-weight: 600; background: rgba(22,129,129,0.06); }
.lang-dropdown__menu .menu-flag { font-size: 1.1rem; }

/* Mobile toggle */
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--primary); transition: var(--ease); }

/* ═══════════════════════════════════════════════════════════
   HERO — 68vh, dolphin bg
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  max-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/dolphin.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16,28,38,0.90) 0%,
    rgba(35,97,138,0.72) 55%,
    rgba(22,129,129,0.45) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s 0.1s forwards;
}
.hero__tagline::before { content: ''; display: block; width: 28px; height: 1px; background: #5ccece; flex-shrink: 0; }
.hero__headline {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.65s 0.28s forwards;
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: none;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.65s 0.45s forwards;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.65s 0.62s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   INTRO — 2-column with slider
   ═══════════════════════════════════════════════════════════ */
.intro { padding: var(--sec-pad) 0; }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.intro__heading {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--primary);
  margin-bottom: 0;
}
.intro__text { font-size: 1.05rem; line-height: 1.82; color: var(--text); }

/* Slider */
.slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.slider__track { display: flex; transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94); }
.slider__slide { min-width: 100%; position: relative; }
.slider__slide img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.slider__controls {
  position: absolute;
  bottom: 1rem; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 2;
}
.slider__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
}
.slider__dot.active { background: var(--white); width: 22px; border-radius: 4px; }
.slider__prev, .slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background var(--ease);
  z-index: 2;
}
.slider__prev { left: 0.75rem; }
.slider__next { right: 0.75rem; }
.slider__prev:hover, .slider__next:hover { background: rgba(255,255,255,0.28); }
.slider__prev svg, .slider__next svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ═══════════════════════════════════════════════════════════
   SERVICES — Fancy gradient cards
   ═══════════════════════════════════════════════════════════ */
.services-fancy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.sfcard {
  position: relative;
  padding: 3rem 2.5rem 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.sfcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sfcard--mgmt { background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dk) 100%); }
.sfcard--cons { background: linear-gradient(140deg, var(--accent) 0%, var(--accent-dk) 100%); }
.sfcard__deco  { position: absolute; top: -28px; right: -28px; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,0.06); pointer-events: none; }
.sfcard__deco2 { position: absolute; bottom: -44px; left: -20px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.sfcard__icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.sfcard__icon svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.9); fill: none; stroke-width: 1.8; }
.sfcard__title {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.sfcard__list { display: flex; flex-direction: column; gap: 0.85rem; }
.sfcard__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.sfcard__item-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 0.12em;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sfcard__item-icon svg { width: 10px; height: 10px; stroke: white; fill: none; stroke-width: 2.5; }

/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */
.stats { padding: 0 0 4.5rem; background: var(--white); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(35,97,138,0.07);
}
.stat {
  padding: 2.5rem 1.75rem;
  text-align: center;
  border-right: 1px solid var(--light-grey);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
}
.stat__num {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.stat__num span { color: var(--accent); }
.stat__label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PREVIEW — photo left with bar, text right
   ═══════════════════════════════════════════════════════════ */
.about-preview { padding: var(--sec-pad) 0; background: var(--off-white); }
.about-preview__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: center;
}
.about-preview__img-col { order: 1; }
.about-preview__text    { order: 2; padding-top: 0.25rem; }

.about-preview__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  box-shadow: var(--shadow-lg);
}
.about-preview__bar {
  background: var(--white);
  border-top: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 18px rgba(35,97,138,0.10);
}
.about-preview__bar-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}
.about-preview__bar-role {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}
.about-preview__name {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}
.about-preview__role {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

/* Credentials — checkmark icons */
.credentials { display: flex; flex-direction: column; gap: 0.85rem; margin: 1.5rem 0 2rem; }
.credential { display: flex; gap: 0.85rem; align-items: flex-start; }
.credential__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.2em;
}
.credential__check svg { width: 11px; height: 11px; stroke: white; fill: none; stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
.credential__text { font-size: 0.95rem; color: var(--text); line-height: 1.58; }

/* ═══════════════════════════════════════════════════════════
   CTA STRIP — dolphin hero background
   ═══════════════════════════════════════════════════════════ */
.cta-strip {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-strip__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/dolphin.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.cta-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16,28,38,0.90) 0%,
    rgba(35,97,138,0.82) 50%,
    rgba(22,129,129,0.76) 100%
  );
}
.cta-strip__content { position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); font-size: clamp(1.6rem,3vw,2.3rem); margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.cta-strip p  { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 2rem; font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO — inner pages, dolphin bg + gradient
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 7rem 0 4.5rem;
  margin-top: var(--nav-h);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/dolphin.jpg');
  background-size: cover;
  background-position: center 40%;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(16,28,38,0.92) 0%,
    rgba(35,97,138,0.80) 55%,
    rgba(22,129,129,0.55) 100%
  );
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.page-hero__tagline::before { content: ''; display: block; width: 24px; height: 1px; background: var(--white); flex-shrink: 0; }
.page-hero h1 { color: var(--white); }
.page-hero__sub { font-size: 1rem; color: rgba(255,255,255,0.70); max-width: 560px; margin-top: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   FOOTER — completely redesigned
   Dark gradient navy + dot texture + editorial layout
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--primary);
  position: relative;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding: 4.5rem 0 3rem;
  align-items: start;
  position: relative;
}
/* Brand column */
.footer__brand {}
.footer__logo-img {
  height: 36px;
  margin-bottom: 1.75rem;
  display: block;
  opacity: 0.92;
}
.footer__rule {
  width: 44px; height: 2px;
  background: var(--accent);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.footer__tagline {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  line-height: 1.35;
  letter-spacing: 0.01em;
  max-width: 280px;
  margin-bottom: 0.85rem;
}
.footer__industry {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
/* Nav + contact columns */
.footer__col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer__col-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
  font-weight: 400;
}
.footer__col-links a:hover { color: var(--white); }
/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 0;
  position: relative;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; }
.footer__langs { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.footer__lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease), background var(--ease);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 5px;
  border-radius: 5px;
}
.footer__lang-btn:hover { color: var(--white); }
.footer__lang-btn.active { color: var(--accent-dk); background: rgba(255,255,255,0.7); }
.footer__lang-btn .f-flag { font-size: 0.9rem; line-height: 1; }
.footer__lang-sep { color: rgba(255,255,255,0.18); font-size: 0.7rem; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-bio { padding: var(--sec-pad) 0; }
.about-bio .grid-2 { gap: 5rem; align-items: center; }
.about-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-detail__heading { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.experience-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.exp-item { border-left: 3px solid var(--light-grey); padding-left: 1.25rem; transition: border-color var(--ease); }
.exp-item:hover { border-left-color: var(--accent); }
.exp-item__text { font-size: 0.98rem; color: var(--text); line-height: 1.62; }

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════ */
.services-detail { padding: var(--sec-pad) 0; }
.service-block { margin-bottom: 4rem; }
.service-block__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--light-grey);
}
.service-block__icon { width: 46px; height: 46px; background: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-block__icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 1.8; }
.service-block__title { font-size: 1.7rem; letter-spacing: -0.01em; color: var(--primary); font-weight: 700; }
.service-items { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.service-item { background: var(--off-white); border-radius: var(--radius); padding: 1.75rem; border-left: 3px solid var(--primary); transition: all var(--ease); }
.service-item:hover { border-left-color: var(--accent); box-shadow: var(--shadow); transform: translateX(2px); }
.service-item h4 { font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }
.service-item p { font-size: 0.92rem; color: var(--text-light); margin: 0; line-height: 1.58; }

/* ═══════════════════════════════════════════════════════════
   EXPERIENCE PAGE
   ═══════════════════════════════════════════════════════════ */
.experience-grid { padding: var(--sec-pad) 0; }
.experience-grid .grid-2 { align-items: start; }
.track-record { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.track-item { display: grid; grid-template-columns: 3px 1fr; gap: 1.5rem; align-items: start; }
.track-item__line { width: 3px; background: var(--accent); align-self: stretch; min-height: 40px; }
.track-item__content h4 { color: var(--primary); margin-bottom: 0.4rem; }
.track-item__content p { font-size: 0.95rem; color: var(--text-light); margin: 0; }
.sectors { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; margin-top: 1.5rem; }
.sector-tag {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sector-tag::before { content: ''; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.slider--multi { margin-top: 2.5rem; box-shadow: none; border-radius: 0; overflow: visible; }
.slider--multi .slider__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.slider--multi .slider__track::-webkit-scrollbar { display: none; }
.slider--multi .slider__slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  scroll-snap-align: start;
}
.slider--multi .slider__slide img { border-radius: var(--radius); filter: grayscale(15%); transition: filter var(--ease); box-shadow: var(--shadow); }
.slider--multi .slider__slide img:hover { filter: none; }
.slider--multi .slider__controls { position: static; margin-top: 1.5rem; }
.slider--multi .slider__dot { background: var(--light-grey); }
.slider--multi .slider__dot.active { background: var(--accent); }
.slider--multi .slider__prev, .slider--multi .slider__next {
  background: var(--white);
  border: 1px solid var(--light-grey);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.slider--multi .slider__prev:hover, .slider--multi .slider__next:hover { background: var(--off-white); }
.slider--multi .slider__prev { left: -18px; }
.slider--multi .slider__next { right: -18px; }
@media (max-width: 1024px) { .slider--multi .slider__slide { flex-basis: calc((100% - 1rem) / 2); } }
@media (max-width: 640px)  { .slider--multi .slider__slide { flex-basis: 100%; } .slider--multi .slider__prev { left: 0.5rem; } .slider--multi .slider__next { right: 0.5rem; } }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-layout { padding: var(--sec-pad) 0; }
.contact-layout .grid-2 { gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item__icon { width: 44px; height: 44px; background: var(--off-white); border: 1px solid var(--light-grey); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item__icon svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.contact-item__label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 0.2rem; }
.contact-item__value { font-size: 0.98rem; color: var(--text); font-weight: 500; }
.contact-item__value a { color: var(--primary); transition: color var(--ease); }
.contact-item__value a:hover { color: var(--accent); }
h2[data-i18n="contact_page.steps_heading"] { font-size: clamp(1.25rem, 2vw, 1.6rem); margin-bottom: 1.5rem; }
.contact-panel {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.steps { display: flex; flex-direction: column; gap: 1.75rem; }
.step { display: flex; align-items: flex-start; gap: 1.1rem; }
.step__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}
.step__content h3 { margin-bottom: 0.3rem; }
.step__content p { margin-bottom: 0; font-size: 0.98rem; }
.contact-cta-box {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-cta-box__text { margin-bottom: 0; font-weight: 500; color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.52s ease, transform 0.52s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --sec-pad: 4rem; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__main > :first-child { grid-column: 1 / -1; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid img:last-child { display: none; }
  .service-items { grid-template-columns: 1fr; }
  .sectors { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-fancy { grid-template-columns: 1fr; }
  .about-preview__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-preview__img-col { max-width: 300px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--light-grey); }
  .stat:nth-child(odd) { border-right: 1px solid var(--light-grey); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --sec-pad: 3rem; --nav-h: 64px; }
  body { font-size: 1.02rem; }
  .nav__links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--light-grey);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { height: 55vh; min-height: 400px; }
  .cta-strip__bg { background-attachment: scroll; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img:last-child { display: block; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__main > :first-child { grid-column: auto; }
}
