:root {
  --color-midnight-ink:      #303336;
  --color-charcoal-text:     #44474b;
  --color-storm-gray:        #55606e;
  --color-subtle-ash:        #838b96;
  --color-off-white-canvas:  #ffffff;
  --color-cloud-gray:        #f2f5f7;
  --color-frost-border:      #dfe3e8;
  --color-brand:             #018078;
  --color-brand-dark:        #016860;
  --color-brand-light:       #4da89f;
  --color-error:             #b91c1c;
  --color-error-border:      #dc2626;
  --color-error-shadow:      rgba(220,38,38,0.12);
  --color-error-bg:          rgba(220,38,38,0.06);
  --color-error-border-subtle: rgba(220,38,38,0.2);
  --font-heading: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Montserrat', ui-sans-serif, system-ui, sans-serif;
  --page-max-width: 1080px;
  --section-gap:    106px;
  --card-padding:   18px;
  --radius-btn:     6px;
  --radius-card:    18px;
  --radius-badge:   12.8px;
}

/* ── Skip link ───────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--color-brand);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-off-white-canvas);
  color: var(--color-midnight-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,p { margin-top: 0; overflow-wrap: break-word; }

h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--color-midnight-ink);
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-midnight-ink);
  margin-bottom: 0;
}

h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}

a { color: var(--color-brand); text-decoration: none; }
a:hover { color: var(--color-brand-dark); }

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

button { font-family: inherit; cursor: pointer; }

/* ── Scroll progress bar ─────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-brand);
  transform-origin: left;
  z-index: 1000;
  animation: scroll-progress-anim linear;
  animation-timeline: scroll();
  transform: scaleX(0);
}

@keyframes scroll-progress-anim {
  to { transform: scaleX(1); }
}

/* ── Float CTA pill (mobile only) ────────────────────────────────────────── */
.float-cta {
  display: none;
}

@media (max-width: 767px) {
  .float-cta {
    display: block;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    opacity: 0;
    z-index: 200;
    background: var(--color-brand);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(1,128,120,0.35);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease;
    pointer-events: none;
  }

  .float-cta.float-cta--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .float-cta.float-cta--hidden {
    transform: translateX(-50%) translateY(80px);
    opacity: 0;
    pointer-events: none;
  }
}

/* ── Shell ───────────────────────────────────────────────────────────────── */
.shell {
  width: min(calc(100% - 48px), var(--page-max-width));
  margin: 0 auto;
  padding-bottom: var(--section-gap);
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  height: 72px;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223,227,232,0.6);
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  height: 54px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-link {
  position: relative;
  padding: 4px 14px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-storm-gray);
  text-decoration: none;
  transition: color 200ms;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.nav-link--active {
  color: var(--color-midnight-ink);
}

.nav-link.nav-link--active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 12px;
  padding: 9px 18px;
  background: var(--color-brand);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background 180ms, transform 160ms;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--color-brand-dark); color: #fff; transform: translateY(-1px); }
.nav-cta:active { transform: scale(0.97); }

/* ── Main layout ─────────────────────────────────────────────────────────── */
main {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  padding-top: 0;
  padding-bottom: var(--section-gap);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(75svh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 56px;
  overflow: hidden;
  background: radial-gradient(ellipse at 15% 55%, rgba(1,128,120,0.055) 0%, transparent 62%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, black 10%, black 68%, transparent 97%),
    linear-gradient(to right, transparent 0%, black 38%, black 52%, transparent 91%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, black 10%, black 68%, transparent 97%),
    linear-gradient(to right, transparent 0%, black 38%, black 52%, transparent 91%);
  mask-composite: intersect;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: var(--radius-badge);
  background: rgba(1,128,120,0.09);
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hero-lede {
  font-size: 18px;
  color: var(--color-charcoal-text);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--color-brand);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background 180ms, transform 160ms;
  cursor: pointer;
}

.btn-primary:hover { background: var(--color-brand-dark); color: #fff; transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms;
}

.btn-secondary:hover { color: var(--color-brand-dark); }

/* ── Sections ────────────────────────────────────────────────────────────── */
.section {
  scroll-margin-top: 88px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading h2 { margin-bottom: 0; }

.section-sub {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--color-charcoal-text);
  font-size: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-badge);
  background: rgba(1,128,120,0.09);
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

/* ── Problem cards ───────────────────────────────────────────────────────── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.problem-card {
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-card);
  background: var(--color-cloud-gray);
  padding: var(--card-padding);
  cursor: default;
  transition: transform 220ms ease, box-shadow 220ms ease;
  background-image: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(1,128,120,0.06) 0%, transparent 60%);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(1,128,120,0.12);
}

.problem-card h3 { color: var(--color-midnight-ink); }

.problem-card p {
  margin-bottom: 0;
  color: var(--color-charcoal-text);
  font-size: 15px;
  line-height: 1.55;
}

/* ── Service cards ───────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-card);
  background: var(--color-cloud-gray);
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: default;
  transition: transform 220ms ease, box-shadow 220ms ease;
  background-image: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(1,128,120,0.07) 0%, transparent 60%);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(1,128,120,0.12);
}

.service-question {
  margin: 0;
  color: var(--color-storm-gray);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.service-card h3 { margin: 0; color: var(--color-midnight-ink); }

.service-card p {
  margin: 0;
  color: var(--color-charcoal-text);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}

/* ── Process timeline ────────────────────────────────────────────────────── */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

/* Connecting line between dots */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 19px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--color-frost-border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(1,128,120,0.09);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.process-step:hover .process-step-dot {
  box-shadow: 0 0 0 8px rgba(1,128,120,0.14);
  transform: translateY(-2px);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.process-step-body h3 {
  color: var(--color-midnight-ink);
  margin-bottom: 8px;
}

.process-step-body p {
  margin-bottom: 0;
  color: var(--color-charcoal-text);
  font-size: 15px;
  line-height: 1.55;
}

/* ── Fit section ─────────────────────────────────────────────────────────── */
.fit-section { }

.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.fit-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 16px;
  color: var(--color-charcoal-text);
  line-height: 1.5;
}

.fit-check {
  color: var(--color-brand);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.fit-check.spring-in {
  animation: spring-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes spring-pop {
  0%   { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.fit-check.spring-in,
.step-num.spring-in {
  animation-timing-function: cubic-bezier(0.22,1,0.36,1);
}

/* ── CTA final ───────────────────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(145deg, #f2f5f7 0%, rgba(1,128,120,0.07) 100%);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-card);
  padding: 56px 40px;
  text-align: center;
}

.final-cta .eyebrow { margin-inline: auto; margin-bottom: 14px; }

.final-cta h2 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 14px;
}

.cta-sub {
  max-width: 480px;
  margin: 0 auto 28px;
  color: var(--color-charcoal-text);
  font-size: 16px;
  line-height: 1.6;
}

/* ── Contact form ────────────────────────────────────────────────────────── */
.contact-section {
  padding-top: 0;
}

.form-card {
  background: linear-gradient(145deg, #f2f5f7 0%, rgba(1,128,120,0.07) 100%);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-card);
  padding: 40px;
  margin-top: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 100%;
}

.form-honey { display: none; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-midnight-ink);
}

.form-field label.required::after {
  content: ' *';
  color: var(--color-error);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 14px;
  border: 1px solid var(--color-frost-border);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-midnight-ink);
  transition: border-color 180ms, box-shadow 180ms;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(1,128,120,0.12);
}

.form-field input.field-error,
.form-field select.field-error,
.form-field textarea.field-error {
  border-color: var(--color-error-border);
  box-shadow: 0 0 0 3px var(--color-error-shadow);
}

.field-error-msg {
  font-size: 12px;
  color: var(--color-error);
  min-height: 16px;
  line-height: 1.4;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2355606e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 13px;
  color: var(--color-subtle-ash);
}

.form-status {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(1,128,120,0.08);
  color: var(--color-brand-dark);
  border: 1px solid rgba(1,128,120,0.2);
}

.form-status.error {
  display: block;
  background: var(--color-error-bg);
  color: var(--color-error);
  border: 1px solid var(--color-error-border-subtle);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-frost-border);
  padding: 28px 0 8px;
  font-size: 13px;
  color: var(--color-subtle-ash);
}

.footer-email {
  font-size: 13px;
  color: var(--color-storm-gray);
  text-decoration: none;
}

.footer-email:hover { color: var(--color-brand); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switch button {
  border: 1px solid var(--color-frost-border);
  border-radius: 4px;
  background: transparent;
  padding: 3px 9px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-subtle-ash);
  cursor: pointer;
  transition: border-color 180ms, color 180ms, background 180ms;
}

.lang-switch button[aria-pressed="true"] {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: rgba(1,128,120,0.06);
}

.lang-switch button:hover { border-color: var(--color-brand-light); color: var(--color-brand); }

.lang-switch span { color: var(--color-frost-border); }

/* ── Focus visible ───────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Scroll reveal animations ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── Hero entrance animations ────────────────────────────────────────────── */
.hero-anim {
  opacity: 0;
  transform: translateY(18px);
}

.hero-anim--ready {
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-anim:nth-child(1) { animation-delay: 0.10s; }
.hero-anim:nth-child(2) { animation-delay: 0.22s; }
.hero-anim:nth-child(3) { animation-delay: 0.36s; }
.hero-anim:nth-child(4) { animation-delay: 0.50s; }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .scroll-progress { display: none; }
}

/* ── Hamburger button ────────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
}

.ham-bar {
  transition: transform 220ms cubic-bezier(0.22,1,0.36,1), opacity 150ms ease;
  transform-origin: center;
}

.nav-hamburger.is-open .ham-bar-1 {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open .ham-bar-2 {
  opacity: 0;
}

.nav-hamburger.is-open .ham-bar-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav panel ────────────────────────────────────────────────────── */
.mobile-nav-panel {
  display: none;
}

@media (max-width: 767px) {
  .nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: none;
    border: none;
    padding: 8px;
    color: var(--color-midnight-ink);
    cursor: pointer;
    border-radius: var(--radius-btn);
    transition: background 150ms;
    flex-shrink: 0;
  }

  .nav-hamburger:hover { background: var(--color-cloud-gray); }

  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-frost-border);
    z-index: 99;
    padding: 8px 24px 24px;
    gap: 0;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 220ms cubic-bezier(0.22,1,0.36,1);
  }

  .mobile-nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav-link {
    padding: 14px 4px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-midnight-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--color-frost-border);
    transition: color 150ms;
  }

  .mobile-nav-link:hover { color: var(--color-brand); }

  .mobile-nav-cta-link {
    display: block;
    margin-top: 16px;
    padding: 13px 24px;
    background: var(--color-brand);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-btn);
    text-decoration: none;
    text-align: center;
    transition: background 180ms;
  }

  .mobile-nav-cta-link:hover { background: var(--color-brand-dark); color: #fff; }
}

/* ── Team / About Us ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card {
  border: 1px solid var(--color-frost-border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-info {
  padding: 18px;
}

.team-name {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  color: #303336;
}

.team-role {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: #018078;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-bio {
  margin: 0 0 16px;
  font-size: 14px;
  color: #44474b;
  line-height: 1.55;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0a66c2;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 6px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.team-linkedin:hover {
  background: #004182;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.35);
}

.team-linkedin svg {
  flex-shrink: 0;
}

/* ── Responsive: Tablet ──────────────────────────────────────────────────── */
@media (max-width: 1079px) {
  .shell {
    width: calc(100% - 48px);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Responsive: Mobile ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  :root {
    --section-gap: 64px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  h1 { font-size: 28px; }
  h2 { font-size: 22px; }

  .nav {
    height: 60px;
  }

  .site-logo { height: 45px; }

  .nav-links,
  .nav-cta { display: none; }

  .hero {
    padding: 48px 0 40px;
    min-height: auto;
  }

  .hero-lede { font-size: 16px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .btn-primary { width: 100%; justify-content: center; }

  .section-heading { max-width: 100%; margin-bottom: 28px; }

  .problems-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Process timeline → vertical on mobile */
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 19px;
    right: auto;
    top: 20px;
    width: 2px;
    height: calc(100% - 20px);
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 40px 0;
    gap: 20px;
  }

  .process-step:last-child {
    padding-bottom: 0;
  }

  .process-step-dot {
    margin-bottom: 0;
  }

  .final-cta {
    padding: 36px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .team-grid { grid-template-columns: 1fr; }
  .team-photo { height: auto; aspect-ratio: 3 / 4; }

}
