/* ============================================================
   SRM Designs — styles.css
   Brand: #FB7112 orange · #4E4E52 charcoal · #797575 grey
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@font-face { font-family:'Bitter'; font-style:normal; font-weight:400; font-display:swap; src:url('/assets/fonts/bitter-400.woff2') format('woff2'); }
@font-face { font-family:'Bitter'; font-style:normal; font-weight:600; font-display:swap; src:url('/assets/fonts/bitter-600.woff2') format('woff2'); }
@font-face { font-family:'Bitter'; font-style:normal; font-weight:700; font-display:swap; src:url('/assets/fonts/bitter-700.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('/assets/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url('/assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('/assets/fonts/inter-600.woff2') format('woff2'); }

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --orange:        #FB7112;
  --orange-dark:   #D95E08;
  --charcoal:      #4E4E52;
  --charcoal-deep: #2B2B2F;
  --grey:          #797575;
  --grey-light:    #E6E7E9;
  --off-white:     #F7F8F9;
  --white:         #FFFFFF;

  --font-display: 'Bitter', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:   8px;
  --radius-sm: 4px;
  --shadow:   0 2px 12px rgba(0,0,0,.08);

  --max-w:    1200px;
  --section-y: 96px;
  --section-y-mobile: 56px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--grey);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img, video { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
h3 { font-size: 1.125rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { max-width: 68ch; }
strong { color: var(--charcoal); font-weight: 600; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.section {
  padding-block: var(--section-y);
}
.section--alt { background: var(--off-white); }
.section--dark {
  background: var(--charcoal-deep);
  color: var(--grey-light);
}
.section--dark h2,
.section--dark h3,
.section--dark p { color: var(--grey-light); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 108px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  transition: height .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo img {
  height: 80px;
  width: auto;
  transition: height .3s ease;
}
.site-header.scrolled .logo img { height: 44px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.site-nav a {
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--orange);
  background: rgba(251,113,18,.06);
}
.header-cta {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal) !important;
  white-space: nowrap;
}
.phone-link:hover { color: var(--orange) !important; }

/* hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform .3s, opacity .3s;
}

/* mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid var(--grey-light);
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-close {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding: 8px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
}
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.8125rem;
  color: var(--grey);
  border-bottom: 1px solid var(--grey-light);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
}
.breadcrumb li::after { content: '/'; margin-left: 4px; color: var(--grey-light); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb li:last-child { color: var(--charcoal); font-weight: 500; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal-deep);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img,
.hero-slide .hero-img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43,43,47,.88) 0%, rgba(43,43,47,.45) 60%, rgba(43,43,47,.15) 100%);
}
.hero-body {
  position: relative;
  z-index: 2;
  padding-block: 80px;
  max-width: 600px;
}
.hero-body h1 { color: var(--white); margin-bottom: 20px; }
.hero-body p  { color: rgba(255,255,255,.82); font-size: 1.125rem; margin-bottom: 32px; max-width: 52ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* hero dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s;
}
.hero-dot.is-active { background: var(--orange); }

/* hero badge */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.badge-warning { background: rgba(251,113,18,.18); color: var(--orange); border: 1px solid var(--orange); }
.badge-info    { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.3); }

/* small page hero (non-home pages) */
.page-hero {
  background: var(--charcoal-deep);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FB7112' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.75); margin-top: 12px; font-size: 1.0625rem; }
.page-hero .orange-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ── Image placeholders ─────────────────────────────────────── */
.img-ph {
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0, rgba(0,0,0,.04) 1px, transparent 0, transparent 50%);
  background-size: 16px 16px;
}
.img-ph span {
  position: relative;
  font-size: 0.75rem;
  color: var(--grey);
  background: rgba(255,255,255,.7);
  padding: 4px 10px;
  border-radius: 20px;
}
.img-ph.r-16-9  { aspect-ratio: 16/9; }
.img-ph.r-4-3   { aspect-ratio: 4/3; }
.img-ph.r-3-2   { aspect-ratio: 3/2; }
.img-ph.r-1-1   { aspect-ratio: 1; }
.img-ph.r-wide  { aspect-ratio: 21/9; }

/* ── Real images (replacing placeholders) ───────────────────── */
picture { display: block; }
picture img { display: block; }
.hero-slide picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide picture img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.card-img picture img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.split-img picture { border-radius: var(--radius); overflow: hidden; }
.split-img picture img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.service-img picture { width: 100%; height: 100%; }
.service-img picture img { width: 100%; min-height: 300px; height: 100%; object-fit: cover; }
.gallery-grid picture img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.gallery-main picture img { min-height: 400px; }
.team-avatar picture img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; }

/* ── Stat strip ─────────────────────────────────────────────── */
.stat-strip {
  background: var(--charcoal);
  padding: 40px 0;
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* ── Section header ─────────────────────────────────────────── */
.section-header {
  margin-bottom: 56px;
}
.section-header .orange-rule {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p  { color: var(--grey); font-size: 1.0625rem; }
.section-header.center { text-align: center; }
.section-header.center .orange-rule { margin-inline: auto; }
.section-header.center p { margin-inline: auto; }

/* ── Card grid ──────────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(251,113,18,.1);
}
.card-img { overflow: hidden; }
.card-img img,
.card-img .img-ph { width: 100%; display: block; }
.card-body { padding: 24px; }
.card-body h3 { color: var(--charcoal); margin-bottom: 8px; }
.card-body p  { font-size: 0.9375rem; color: var(--grey); margin: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}
.card-link::after { content: '→'; }
.card-link:hover { color: var(--orange-dark); }

/* icon card */
.icon-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.icon-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(251,113,18,.08);
}
.icon-card .icon {
  width: 44px;
  height: 44px;
  background: rgba(251,113,18,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-card .icon svg { width: 22px; height: 22px; color: var(--orange); }
.icon-card h3 { color: var(--charcoal); margin-bottom: 8px; }
.icon-card p  { font-size: 0.9375rem; color: var(--grey); margin: 0; }

/* ── Split image/text ───────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-img { order: 2; }
.split.reverse .split-text { order: 1; }
.split-img { border-radius: var(--radius); overflow: hidden; }
.split-img img,
.split-img .img-ph { width: 100%; border-radius: var(--radius); }
.split-text h2 { margin-bottom: 16px; }
.split-text p  { margin-bottom: 24px; }
.split-text .orange-rule {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ── Capability table ───────────────────────────────────────── */
.cap-table { width: 100%; border-collapse: collapse; }
.cap-table th,
.cap-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--grey-light);
}
.cap-table th {
  background: var(--off-white);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cap-table td { color: var(--grey); }
.cap-table td:first-child { color: var(--charcoal); font-weight: 500; }
.cap-table tr:last-child td { border-bottom: none; }
.cap-table tr:hover td { background: rgba(251,113,18,.03); }
.table-wrap { overflow-x: auto; border: 1px solid var(--grey-light); border-radius: var(--radius); }

/* ── Process steps ──────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(251,113,18,.15);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h3 { color: var(--charcoal); margin-bottom: 8px; font-size: 1rem; }
.process-step p  { font-size: 0.9rem; color: var(--grey); margin: 0; }

/* ── Tool strip ─────────────────────────────────────────────── */
.tool-strip {
  padding: 40px 0;
  background: var(--off-white);
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}
.tool-strip .container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tool-strip .label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey);
  white-space: nowrap;
  margin-right: 16px;
}
.tool-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  padding: 8px 20px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color .2s, color .2s;
}
.tool-name:hover { border-color: var(--orange); color: var(--orange); }
.tool-divider {
  color: var(--grey-light);
  font-size: 1.2rem;
}

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band {
  background: var(--charcoal-deep);
  padding: 72px 0;
  border-top: 3px solid var(--orange);
}
.cta-band .container { max-width: 720px; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,.72); margin-bottom: 32px; margin-inline: auto; }

/* ── Section teaser ─────────────────────────────────────────── */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.teaser-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-deep);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}
.teaser-card img,
.teaser-card .img-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teaser-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(43,43,47,.9) 0%, rgba(43,43,47,.2) 100%);
}
.teaser-card-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}
.teaser-card-body h3 { color: var(--white); margin-bottom: 8px; }
.teaser-card-body p  { color: rgba(255,255,255,.75); font-size: 0.9rem; margin-bottom: 16px; }

/* ── Services list ──────────────────────────────────────────── */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--grey-light);
}
.service-row:nth-child(odd) .service-text { order: 1; }
.service-row:nth-child(odd) .service-img  { order: 2; }
.service-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-text .orange-rule {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 16px;
}
.service-text h2 { font-size: 1.375rem; margin-bottom: 12px; }
.service-text p  { font-size: 0.9375rem; margin: 0; max-width: 44ch; }
.service-img {
  overflow: hidden;
  background: var(--off-white);
}
.service-img img,
.service-img .img-ph { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }

/* ── FAQ accordion ──────────────────────────────────────────── */
.faq { margin-top: 48px; }
.faq-item {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--charcoal);
  gap: 12px;
  user-select: none;
}
.faq-q:hover { color: var(--orange); }
.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform .3s;
}
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--grey);
  font-size: 0.9375rem;
  border-top: 1px solid var(--grey-light);
  padding-top: 16px;
}
.faq-item.is-open .faq-a { display: block; }

/* ── Deliverables ───────────────────────────────────────────── */
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.deliverable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 500;
}
.deliverable-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Roadmap ────────────────────────────────────────────────── */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.roadmap::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--grey-light);
}
.roadmap-step { padding: 0 16px; text-align: center; }
.roadmap-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--grey-light);
  margin: 20px auto 16px;
  position: relative;
  z-index: 1;
}
.roadmap-step.done .roadmap-dot {
  background: var(--orange);
  border-color: var(--orange);
}
.roadmap-step.active .roadmap-dot {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(251,113,18,.15);
}
.roadmap-step h4 { font-size: 0.875rem; color: var(--charcoal); margin-bottom: 6px; }
.roadmap-step p  { font-size: 0.8125rem; color: var(--grey); margin: 0; }
.status-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 6px;
}
.status-done    { background: rgba(34,197,94,.1); color: #16a34a; }
.status-active  { background: rgba(251,113,18,.1); color: var(--orange); }
.status-planned { background: var(--grey-light); color: var(--grey); }

/* ── Contact form ───────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail .ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(251,113,18,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .ci-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-detail .ci-text strong { display: block; color: var(--charcoal); font-size: 0.875rem; }
.contact-detail .ci-text span  { font-size: 0.9375rem; color: var(--grey); }
.contact-map {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  background: var(--grey-light);
}
.contact-map iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}
.map-placeholder {
  height: 260px;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--grey);
}

/* form */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(251,113,18,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hp { display: none; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form-consent input { width: auto; flex-shrink: 0; margin-top: 4px; accent-color: var(--orange); }
.form-consent label { font-size: 0.875rem; font-weight: 400; color: var(--grey); }
.form-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--grey);
  font-style: italic;
}
.form-success {
  display: none;
  padding: 32px;
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius);
  text-align: center;
  color: #16a34a;
}

/* ── Fact list / registration ───────────────────────────────── */
.reg-table { width: 100%; border-collapse: collapse; }
.reg-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.9375rem;
}
.reg-table td:first-child {
  width: 200px;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--off-white);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.65);
  padding-top: 64px;
  padding-bottom: 0;
  border-top: 3px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  max-width: 100%;
}
.footer-logo { margin-bottom: 16px; height: 32px; width: auto; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: 0.9rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.4);
}

/* ── 404 ────────────────────────────────────────────────────── */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.not-found h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--orange); }
.not-found p  { font-size: 1.125rem; margin: 16px auto 32px; }

/* ── Checklist ──────────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--grey);
}
.checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(251,113,18,.1);
  border: 2px solid var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Inline notice ──────────────────────────────────────────── */
.notice {
  background: rgba(251,113,18,.06);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 40px;
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-grid .gallery-main {
  grid-row: 1 / 3;
}
.gallery-grid img,
.gallery-grid .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.gallery-grid .img-ph { min-height: 240px; }

/* ── Team cards ─────────────────────────────────────────────── */
.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
}
.team-card .team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--grey-light);
}
.team-card .team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 4px; color: var(--charcoal); }
.team-card p  { font-size: 0.875rem; color: var(--grey); margin: 0; }

/* ── Protocol / stack list ──────────────────────────────────── */
.stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pill {
  padding: 6px 14px;
  border: 1px solid var(--grey-light);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s, color .2s;
}
.pill:hover { border-color: var(--orange); color: var(--orange); }

/* ── Values ─────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-item {
  padding: 28px;
  border-left: 3px solid var(--orange);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value-item h3 { color: var(--charcoal); margin-bottom: 8px; }
.value-item p  { font-size: 0.9rem; margin: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
  .roadmap::before { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-y: var(--section-y-mobile);
  }
  .site-nav, .header-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .phone-link { font-size: 0.8125rem; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }

  .hero { min-height: 440px; }
  .hero-body { padding-block: 56px; }

  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  .card-grid-2,
  .card-grid-3,
  .card-grid-4 { grid-template-columns: 1fr; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-img,
  .split.reverse .split-text { order: unset; }

  .service-row { grid-template-columns: 1fr; }
  .service-img { display: none; }
  .service-text { padding: 32px 24px; }

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

  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .deliverables { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-main { grid-row: auto; }
}

@media (max-width: 480px) {
  .deliverables { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
}
