/* ============================================
   High Priority IT — Design tokens
   ============================================ */
:root {
  --navy: #0F2D3C;
  --navy-deep: #0A1F2A;
  --teal: #0E7C6B;
  --teal-deep: #0A5C4F;
  --teal-tint: #E8F2EF;
  --paper: #FFFFFF;
  --paper-warm: #FAFBFA;
  --ink: #17222A;
  --ink-soft: #4B5A61;
  --line: #DCE6E3;
  --gold: #C9A15A;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.9rem;
}
.eyebrow--light { color: #8FD6C4; }

.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 1rem; }
.section-lead { color: var(--ink-soft); font-size: 1.08rem; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 20px rgba(14, 124, 107, 0.28);
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy); }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy);
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); transition: color 0.15s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--teal-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 1.4rem;
  max-width: 640px;
}
.hero-title em { color: var(--teal-deep); font-style: normal; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-graphic { position: relative; height: 100%; min-height: 380px; }
.hero-svg { width: 100%; height: 100%; }
.hero-path {
  stroke: var(--teal);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawPath 1.8s ease forwards 0.3s;
  opacity: 0.55;
}
.hero-dot { fill: var(--navy); opacity: 0; animation: fadeDot 0.5s ease forwards; }
.hero-dot:nth-of-type(2) { fill: var(--teal); animation-delay: 1.1s; }
.hero-dot:nth-of-type(3) { fill: var(--gold); animation-delay: 1.9s; r: 10; }
.hero-dot:nth-of-type(1) { animation-delay: 0.3s; }

@keyframes drawPath { to { stroke-dashoffset: 0; } }
@keyframes fadeDot { to { opacity: 1; } }

/* ============ Purpose strip ============ */
.purpose { background: var(--navy); padding: 3.2rem 1.5rem; }
.purpose-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: #EAF3F0;
  font-weight: 400;
}
.purpose-inner strong { color: #8FD6C4; font-weight: 600; }

/* ============ Journey ============ */
.journey { max-width: var(--container); margin: 0 auto; padding: 7rem 1.5rem 6rem; }

.journey-track { position: relative; }
.journey-line {
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 0;
  display: none;
}
.journey-line path { stroke: var(--line); stroke-width: 2; stroke-dasharray: 6 8; }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}
.journey-step {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
}
.journey-step--raised {
  background: var(--teal-tint);
  border-color: rgba(14, 124, 107, 0.25);
  transform: translateY(-14px);
}
.journey-marker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-deep);
  background: #fff;
  border: 1.5px solid var(--teal);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-bottom: 1.1rem;
}
.journey-step h3 { font-size: 1.32rem; margin-bottom: 0.7rem; }
.journey-step p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============ Services ============ */
.services { background: var(--paper-warm); padding: 6.5rem 1.5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: 0 14px 34px rgba(15, 45, 60, 0.08); transform: translateY(-3px); }
.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-tint);
  margin-bottom: 1.3rem;
  position: relative;
}
.service-icon::before {
  content: "";
  position: absolute; inset: 13px;
  background: var(--teal-deep);
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.service-icon[data-icon="cto"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 2 3 7v6c0 5 4 8 9 9 5-1 9-4 9-9V7z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 2 3 7v6c0 5 4 8 9 9 5-1 9-4 9-9V7z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); }
.service-icon[data-icon="architecture"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E"); }
.service-icon[data-icon="ai"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M4.9 4.9l2.8 2.8M16.3 16.3l2.8 2.8M2 12h4M18 12h4M4.9 19.1l2.8-2.8M16.3 7.7l2.8-2.8'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M4.9 4.9l2.8 2.8M16.3 16.3l2.8 2.8M2 12h4M18 12h4M4.9 19.1l2.8-2.8M16.3 7.7l2.8-2.8'/%3E%3C/svg%3E"); }
.service-icon[data-icon="security"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="leadership"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.service-icon[data-icon="project"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M9 11l3 3L22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M9 11l3 3L22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E"); }

.service-card h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ============ About ============ */
.about { max-width: var(--container); margin: 0 auto; padding: 7rem 1.5rem; }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--teal-tint);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo.photo-fallback { display: flex; align-items: center; justify-content: center; }
.about-photo.photo-fallback img { display: none; }
.about-photo.photo-fallback::after {
  content: "KRS";
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--teal-deep);
  opacity: 0.35;
}
.about-lead { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 1.8rem; }
.about-facts { list-style: none; margin-bottom: 2.2rem; }
.about-facts li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.about-facts li:last-child { border-bottom: none; }
.about-facts strong { color: var(--navy); }

/* ============ Contact ============ */
.contact { background: var(--navy); padding: 7rem 1.5rem; text-align: center; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 1rem; }
.contact-lead { color: #B9CFCA; font-size: 1.08rem; margin-bottom: 2.6rem; }
.contact-methods { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.contact-method {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 1.3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 240px;
  transition: background 0.15s;
}
.contact-method:hover { background: rgba(255,255,255,0.11); }
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: #8FD6C4; font-weight: 700; }
.contact-value { font-size: 1.08rem; color: #fff; font-weight: 600; }

/* ============ Footer ============ */
.footer { background: var(--navy-deep); padding: 1.6rem 1.5rem; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #6F8781;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 4.5rem; }
  .hero-graphic { min-height: 220px; order: -1; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-step--raised { transform: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .contact-method { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-path, .hero-dot { animation: none; opacity: 1; stroke-dashoffset: 0; }
  html { scroll-behavior: auto; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ============ Hero credentials strip ============ */
.hero-cred {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 2.2rem;
  padding: 0;
}
.hero-cred li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-cred li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ============ Pains ============ */
.pains { max-width: var(--container); margin: 0 auto; padding: 7rem 1.5rem 6rem; }
.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pain-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
}
.pain-card--primary {
  background: var(--teal-tint);
  border-color: rgba(14, 124, 107, 0.25);
}
.pain-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.9rem;
}
.pain-card h3 {
  font-size: 1.22rem;
  line-height: 1.35;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.pain-list {
  list-style: none;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}
.pain-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.pain-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.pain-relief {
  font-size: 0.94rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.pain-card--primary .pain-relief { border-top-color: rgba(14, 124, 107, 0.25); }
.pain-relief strong { color: var(--teal-deep); }

/* ============ Services (featured) ============ */
.services-wrap { max-width: var(--container); margin: 0 auto; }
.service-featured {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.6rem 2.4rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.service-featured .service-icon { background: rgba(255,255,255,0.1); flex-shrink: 0; }
.service-featured .service-icon::before { background: #8FD6C4; }
.service-featured h3 { color: #fff; font-size: 1.55rem; margin-bottom: 0.8rem; }
.service-featured p { color: #C4D6D1; font-size: 1.02rem; margin-bottom: 1.6rem; max-width: 760px; }

/* ============ Packages ============ */
.packages { background: var(--paper-warm); padding: 6.5rem 1.5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.packages-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.package-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.package-card:hover { box-shadow: 0 14px 34px rgba(15, 45, 60, 0.08); transform: translateY(-3px); }
.package-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.package-desc { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1.3rem; }
.package-list { list-style: none; margin-bottom: 1.6rem; flex-grow: 1; }
.package-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.6rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
}
.package-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 2px solid var(--teal);
}
.package-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deep);
}
.packages-note {
  max-width: var(--container);
  margin: 2.4rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ============ Cases ============ */
.cases { max-width: var(--container); margin: 0 auto; padding: 7rem 1.5rem 6rem; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition: box-shadow 0.2s ease;
}
.case-card:hover { box-shadow: 0 14px 34px rgba(15, 45, 60, 0.08); }
.case-head { margin-bottom: 1rem; }
.case-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.case-card h3 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.case-role { font-size: 0.88rem; font-weight: 600; color: var(--teal-deep); }
.case-context { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.2rem; }
.case-results { list-style: none; }
.case-results li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.case-results li:last-child { border-bottom: none; }
.case-results li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.case-results strong { color: var(--navy); }
.case-card--cta {
  background: var(--teal-tint);
  border-color: rgba(14, 124, 107, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.6rem;
}
.case-card--cta h3 { font-size: 1.4rem; }
.case-card--cta p { color: var(--ink-soft); margin-bottom: 1rem; }

/* ============ Responsive additions ============ */
@media (max-width: 900px) {
  .pains-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .service-featured { flex-direction: column; }
}

/* ============ Cases gate (teaser on index) ============ */
.cases-gate {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
}
.cases-gate-inner { max-width: 640px; }
.cases-gate h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.8rem; }
.cases-gate p { color: #C4D6D1; margin-bottom: 1.6rem; }

/* ============ Gate page (cases.html) ============ */
.gate {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
}
.gate-box {
  max-width: 480px;
  width: 100%;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
}
.gate-box h1 { font-size: 2rem; margin-bottom: 0.8rem; }
.gate-lead { color: var(--ink-soft); margin-bottom: 1.6rem; }
.gate-form { display: flex; gap: 0.6rem; margin-bottom: 1rem; }
.gate-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
}
.gate-form input:focus { outline: 2px solid var(--teal); border-color: var(--teal); }
.gate-error { color: #B4432F; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.8rem; }
.gate-note { font-size: 0.88rem; color: var(--ink-soft); }
.gate-note a { color: var(--teal-deep); font-weight: 600; }
#casesContent { padding-top: 5rem; }

@media (max-width: 560px) {
  .gate-form { flex-direction: column; }
}

/* ============ Language switcher ============ */
.lang-switch {
  display: inline-flex;
  gap: 0.15rem;
  margin-left: 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.lang-switch a {
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  color: var(--ink-soft);
}
.lang-switch a.active { background: var(--teal-tint); color: var(--teal-deep); }
.lang-switch a:hover { color: var(--teal-deep); }
@media (max-width: 900px) {
  .lang-switch { margin: 0.6rem 0 0 0; }
}
.service-icon[data-icon="erp"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3Cpath d='M3 12c0 1.66 4 3 9 3s9-1.34 9-3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3Cpath d='M3 12c0 1.66 4 3 9 3s9-1.34 9-3'/%3E%3C/svg%3E"); }

/* ============ Proof strip (early social proof) ============ */
.proof {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-top: -1rem;
}
.proof-inner {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem 2.4rem 2.2rem;
}
.proof-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
  text-align: center;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 0 0.6rem;
  position: relative;
}
.proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.6rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.proof-num {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.proof-cap {
  font-size: 0.82rem;
  color: #A9C3BD;
  line-height: 1.3;
}
@media (max-width: 760px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .proof-item:nth-child(2)::after { display: none; }
}
@media (max-width: 420px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item::after { display: none !important; }
}

/* Scale-up mentor icon */
.service-icon[data-icon="mentor"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M7 15l4-4 3 3 5-6'/%3E%3Cpath d='M18 8h3v3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M7 15l4-4 3 3 5-6'/%3E%3Cpath d='M18 8h3v3'/%3E%3C/svg%3E");
}
