/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --sand:        #f3ede4;
  --warm:        #faf8f5;
  --navy:        #123524;
  --blue:        #1f6f43;
  --blue-hover:  #155735;
  --blue-soft:   rgba(31,111,67,0.10);
  --green-deep:  #0f2f20;
  --green-dark:  #143c28;
  --green-glow:  rgba(31,111,67,0.28);

  --ink:         #1a1714;
  --ink-2:       #4a453f;
  --ink-3:       #9a9089;

  --rule:        #e8e0d5;
  --rule-2:      #d5ccc0;

  --radius:      8px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.09);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--warm);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; }

/* ─── Wrap ───────────────────────────────────────────────────────────────── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--sand); }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  margin-left: 8px;
  animation: cta-pulse 3s ease-in-out infinite;
}
.nav-cta:hover {
  background: var(--blue-hover) !important;
  animation: none;
  box-shadow: 0 4px 14px var(--green-glow);
}
@keyframes cta-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(31,111,67,0.40); }
  60%      { box-shadow: 0 0 0 8px rgba(31,111,67,0); }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink-2);
  border-radius: 4px;
  transform-origin: center;
  transition: background 0.15s, opacity 0.15s, transform 0.15s;
}
.menu-toggle:hover span { background: var(--ink); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 4px 16px var(--green-glow);
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.btn-white:hover {
  background: rgba(255,255,255,0.90);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-2);
}
.btn-outline:hover { background: var(--sand); border-color: var(--rule-2); }
.btn-outline-white {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: 8px 16px; font-size: 0.84rem; }

/* ─── Type helpers ───────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 14px;
  display: block;
}
.eyebrow-muted {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 14px;
  display: block;
}
h2.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-sub {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0 120px;
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(8,30,20,0.90) 0%, rgba(18,53,36,0.82) 55%, rgba(31,111,67,0.52) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: rgba(255,255,255,0.35);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.03;
  margin: 0;
  color: #fff;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.72;
  max-width: 580px;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-proof {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-proof-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-proof-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.30);
}
.hero-proof-item:first-child::before { display: none; }

/* ─── Section scaffolding (NO card wrappers) ─────────────────────────────── */
.section {
  padding: 96px 0;
  scroll-margin-top: 80px;
}
.section-alt { background: var(--sand); }
.section-dark {
  background: var(--navy);
  color: #fff;
}
.section-dark h2.section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,0.78); }

/* ─── Services ───────────────────────────────────────────────────────────── */
.services-intro {
  margin-bottom: 64px;
}
.services-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.service-panel {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-deep), var(--blue));
}
.service-panel:last-child { background: var(--warm); }
.service-panel-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.service-panel h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.service-panel > p {
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.72;
  margin: 0;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.service-tag {
  display: inline-flex;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--blue-soft);
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid rgba(31,111,67,0.16);
}
.service-outcome {
  font-size: 0.875rem;
  color: var(--ink-2);
  line-height: 1.65;
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  background: var(--blue-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
}
.service-outcome strong { color: var(--ink); }
.service-use-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-use-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.45;
}
.service-use-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.service-fit {
  background: var(--blue-soft);
  border: 1px solid rgba(31,111,67,0.16);
  border-radius: 10px;
  color: var(--ink-2);
  font-size: 0.88rem;
  line-height: 1.58;
  padding: 14px 16px;
}
.service-fit strong { color: var(--ink); }
.service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.services-guide {
  margin-top: 22px;
  background: var(--green-deep);
  border-radius: 14px;
  padding: 28px 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.services-guide h3 {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 780;
  margin: 0 0 6px;
}
.services-guide p {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 660px;
}

/* ─── CTA interrupt ──────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--blue) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.cta-band-inner { max-width: 620px; margin: 0 auto; display: grid; gap: 24px; }
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.025rem; line-height: 1.72; }
.cta-band-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cta-note { font-size: 0.79rem; color: rgba(255,255,255,0.40); }

/* ─── Results (case studies) ─────────────────────────────────────────────── */
.results-intro {
  margin-bottom: 48px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  min-height: 100%;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.case-card:hover {
  background: var(--warm);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.case-type {
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
}
.case-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin: 0;
}
.case-card p {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.68;
  margin: 0;
}
.case-metrics {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.case-metrics span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-2);
  line-height: 1.35;
}
.case-metrics strong {
  min-width: 54px;
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.case-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: auto;
  transition: color 0.15s;
}
.case-card:hover .case-link { color: var(--blue-hover); }

/* ─── Value props (flat, no cards) ──────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--rule);
}
.value-item {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value-item:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.value-item:nth-child(2), .value-item:nth-child(3) { padding: 40px 32px; }
.value-icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border-radius: 10px;
}
.value-icon-wrap svg { width: 18px; height: 18px; color: var(--blue); }
.value-item h3 { font-size: 0.97rem; font-weight: 700; color: var(--ink); margin: 0; }
.value-item p { font-size: 0.875rem; color: var(--ink-2); line-height: 1.65; }

/* ─── Process ────────────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--rule);
}
.process-step {
  padding: 44px 40px 44px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-step:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.process-step:nth-child(2) { padding: 44px 40px; }
.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--rule-2);
  line-height: 1;
}
.process-step h3 { font-size: 1.1rem; font-weight: 700; margin: 0; color: var(--ink); }
.process-step p { font-size: 0.9rem; color: var(--ink-2); line-height: 1.7; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 48px; }
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.faq-item[open] summary { color: var(--blue); }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--blue); }
.faq-body {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.78;
  max-width: 820px;
}

/* ─── Blog preview ───────────────────────────────────────────────────────── */
.blog-preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
}
.blog-preview-item {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.blog-preview-item:hover {
  background: var(--sand);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--rule);
  transform: translateY(-2px);
}
.blog-preview-item:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.blog-preview-item:nth-child(2) { padding: 36px 32px; }
.blog-cat {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.blog-preview-item h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.blog-preview-item p {
  font-size: 0.875rem;
  color: var(--ink-2);
  line-height: 1.65;
  flex: 1;
}
.blog-preview-date { font-size: 0.77rem; color: var(--ink-3); }
.blog-read-more { font-size: 0.82rem; font-weight: 700; color: var(--blue); }

/* ─── Contact section ────────────────────────────────────────────────────── */
.contact-section {
  scroll-margin-top: 80px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 48%, var(--blue) 100%);
  padding: 88px 5%;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.12fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.contact-left {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  color: #fff;
}
.contact-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #fff;
  margin: 0;
}
.contact-left > p { color: rgba(255,255,255,0.70); font-size: 0.96rem; line-height: 1.72; }
.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 8px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
}
.trust-item::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='rgba(255,255,255,0.65)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}
.contact-right {
  background: transparent;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.schedule-panel {
  width: 100%;
  background: var(--warm);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 14px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(8,30,20,0.24);
}
.schedule-panel-header {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  max-width: 620px;
}
.schedule-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
}
.schedule-panel-header h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0;
}
.schedule-panel-header p {
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.65;
}
.contact-steps {
  display: block;
  width: 100%;
}
.contact-step {
  background: transparent;
  border-top: 1px solid var(--rule);
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  box-shadow: none;
}
.step-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 700;
  width: fit-content;
}
.contact-step h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 4px 0; }
.contact-step .hint { font-size: 0.84rem; color: var(--ink-2); }

/* Day grid */
.day-grid { display: flex; flex-direction: column; gap: 8px; }
.day-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  padding: 11px 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--warm);
  color: var(--ink);
  text-align: left;
  transition: border-color 0.15s, color 0.15s;
}
.day-btn span { font-size: 0.78rem; font-weight: 400; color: var(--ink-3); }
.day-btn:hover { border-color: var(--blue); color: var(--blue); }
.day-btn:hover span { color: var(--blue); }
.day-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.day-btn.active span { color: rgba(255,255,255,0.72); }

/* Time grid */
.time-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 7px; }
.time-slot {
  border: 1.5px solid var(--rule);
  border-radius: 7px;
  padding: 8px 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--warm);
  color: var(--ink);
  text-align: center;
  transition: border-color 0.15s, color 0.15s;
}
.time-slot:hover:not(.disabled) { border-color: var(--blue); color: var(--blue); }
.time-slot.selected { background: var(--blue); color: #fff; border-color: var(--blue); }
.time-slot.disabled { opacity: 0.26; border-style: dashed; pointer-events: none; cursor: not-allowed; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: flex; gap: 10px; flex-wrap: wrap; }
.field { display: flex; flex-direction: column; gap: 5px; width: 100%; }
.form-row .field { flex: 1 1 220px; width: auto; }
label { font-size: 0.82rem; font-weight: 600; color: var(--ink-2); }
input, textarea {
  background: var(--warm);
  border: 1.5px solid var(--rule-2);
  color: var(--ink);
  border-radius: 8px;
  padding: 10px 13px;
  font-family: inherit;
  font-size: 0.91rem;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,111,67,0.12);
}
textarea { resize: vertical; min-height: 84px; }
.selection-summary { font-size: 0.82rem; color: var(--ink-2); font-weight: 500; }
.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* ─── Page hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--blue) 100%);
  padding: 88px 0 80px;
  color: #fff;
}
.page-hero-inner { max-width: 720px; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  margin: 16px 0;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.72; }

/* ─── Service landing pages ──────────────────────────────────────────────── */
.service-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 52%, var(--blue) 100%);
  color: #fff;
  padding: 104px 0 88px;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 56px;
  align-items: center;
}
.service-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: #fff;
  margin: 0 0 24px;
  max-width: 840px;
}
.service-hero p {
  color: rgba(255,255,255,0.76);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 660px;
  margin: 0 0 32px;
}
.service-hero-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 28px;
}
.service-hero-panel span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 16px;
}
.service-hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.service-hero-panel li {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}
.service-hero-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.52);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px;
}
.service-detail-card h3 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.3;
  margin: 0 0 10px;
}
.service-detail-card p {
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.68;
}
.service-process {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: start;
}
.service-process-list {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
}
.service-process-list div {
  background: var(--white);
  padding: 26px;
}
.service-process-list strong {
  display: block;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  margin-bottom: 8px;
}
.service-process-list h3 {
  font-size: 1rem;
  font-weight: 750;
  color: var(--ink);
  margin: 0 0 8px;
}
.service-process-list p {
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.66;
}
.use-case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}
.use-case-list span {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 0.87rem;
  font-weight: 560;
  padding: 9px 15px;
}
.service-cta {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--blue) 100%);
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.service-cta .wrap {
  max-width: 760px;
}
.service-cta h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.service-cta p {
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0 auto 28px;
  max-width: 620px;
}

/* ─── About page ─────────────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.body-text { color: var(--ink-2); font-size: 0.97rem; line-height: 1.80; margin-bottom: 18px; }

.sidebar-facts { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
.sidebar-fact { padding: 22px 24px; border-bottom: 1px solid var(--rule); }
.sidebar-fact:last-child { border-bottom: none; }
.sidebar-fact-label { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.sidebar-fact p { font-size: 0.90rem; color: var(--ink-2); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 56px;
}
.team-member {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-member:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.team-member:nth-child(2), .team-member:nth-child(3), .team-member:nth-child(4) { padding: 40px 32px; }
.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.team-name { font-weight: 700; font-size: 1rem; color: var(--ink); }
.team-role { font-size: 0.73rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.07em; }
.team-bio { font-size: 0.855rem; color: var(--ink-2); line-height: 1.65; }

.principles-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
}
.principle {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.principle:last-child { border-right: none; padding-right: 0; padding-left: 36px; }
.principle:nth-child(2) { padding: 40px 36px; }
.principle h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0; }
.principle p { font-size: 0.875rem; color: var(--ink-2); line-height: 1.68; }

/* ─── Blog landing ───────────────────────────────────────────────────────── */
.blog-filters { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-pill {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--rule-2);
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--white);
  text-decoration: none;
  transition: all 0.15s;
}
.filter-pill:hover, .filter-pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.blog-featured {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 56px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}
.blog-featured:hover { box-shadow: var(--shadow-md); }
.blog-featured-text { padding: 52px 48px; background: var(--white); display: flex; flex-direction: column; gap: 16px; }
.blog-featured-text h2 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; margin: 0; }
.blog-featured-text p { color: var(--ink-2); font-size: 0.96rem; line-height: 1.72; flex: 1; }
.blog-featured-text .meta { font-size: 0.79rem; color: var(--ink-3); }
.blog-featured-art {
  background: linear-gradient(135deg, var(--green-deep), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  min-height: 240px;
}

.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); }
.blog-list-item {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.blog-list-item:hover {
  background: var(--sand);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--rule);
  transform: translateY(-2px);
}
.blog-list-item:nth-child(3n) { border-right: none; padding-right: 0; padding-left: 32px; }
.blog-list-item:nth-child(3n+2) { padding: 36px 32px; }
.blog-list-item h3 { font-size: 0.97rem; font-weight: 700; line-height: 1.4; color: var(--ink); margin: 0; }
.blog-list-item p { font-size: 0.875rem; color: var(--ink-2); line-height: 1.65; flex: 1; }
.blog-list-meta { font-size: 0.77rem; color: var(--ink-3); }

/* ─── Blog article ───────────────────────────────────────────────────────── */
.article-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 5% 96px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 40px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--blue); }
.article-header { margin-bottom: 48px; }
.article-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.cat-tag {
  display: inline-flex;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blue-soft);
  color: var(--blue);
}
.post-date { font-size: 0.79rem; color: var(--ink-3); }
.article-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 18px;
}
.article-lead { font-size: 1.08rem; color: var(--ink-2); line-height: 1.78; }
.article-divider { border: none; border-top: 1px solid var(--rule); margin: 44px 0; }
.article-body h2 { font-size: 1.35rem; font-weight: 700; margin: 40px 0 12px; letter-spacing: -0.02em; }
.article-body h3 { font-size: 1.05rem; font-weight: 700; margin: 30px 0 8px; }
.article-body p { font-size: 0.97rem; line-height: 1.82; color: var(--ink-2); margin-bottom: 18px; }
.article-body p strong { color: var(--ink); }
.article-body ul, .article-body ol { font-size: 0.97rem; color: var(--ink-2); line-height: 1.78; padding-left: 22px; margin-bottom: 18px; }
.article-cta-box {
  background: linear-gradient(135deg, var(--green-deep), var(--blue));
  border-radius: 14px;
  padding: 44px 40px;
  text-align: center;
  margin-top: 64px;
  color: #fff;
}
.article-cta-box h3 { color: #fff; font-size: 1.25rem; font-weight: 700; margin: 0 0 8px; }
.article-cta-box p { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin: 0 0 24px; line-height: 1.7; }

/* ─── Case studies ───────────────────────────────────────────────────────── */
.case-study-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 5% 96px;
}
.case-study-section {
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}
.case-study-section:first-of-type {
  border-top: none;
  padding-top: 16px;
}
.case-study-section h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.16;
  margin: 0 0 18px;
}
.case-study-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
}
.case-study-kpis div {
  background: var(--white);
  padding: 30px;
}
.case-study-kpis strong {
  display: block;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}
.case-study-kpis span {
  display: block;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.45;
}
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.case-study-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 26px;
}
.case-study-card h3 {
  font-size: 1rem;
  font-weight: 750;
  color: var(--ink);
  margin: 0 0 10px;
}
.case-study-card p {
  color: var(--ink-2);
  font-size: 0.88rem;
  line-height: 1.68;
}
.case-study-callout {
  background: var(--blue-soft);
  border: 1px solid rgba(31,111,67,0.16);
  border-radius: 14px;
  padding: 36px;
  margin-top: 24px;
}
.case-study-callout p {
  color: var(--ink-2);
  font-size: 0.97rem;
  line-height: 1.72;
  max-width: 780px;
  margin: 0 0 24px;
}

/* ─── Legal ──────────────────────────────────────────────────────────────── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 64px 5% 96px; }
.legal-wrap h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin: 0 0 6px; letter-spacing: -0.03em; }
.legal-wrap .effective { font-size: 0.84rem; color: var(--ink-3); margin: 0 0 48px; }
.legal-wrap h2 { font-size: 1.1rem; font-weight: 700; margin: 32px 0 10px; }
.legal-wrap p, .legal-wrap li { font-size: 0.95rem; color: var(--ink-2); line-height: 1.82; margin: 0 0 14px; }
.legal-wrap ul { padding-left: 20px; }

/* ─── Footer (warm, cohesive) ────────────────────────────────────────────── */
.site-footer { background: var(--sand); border-top: 1px solid var(--rule); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 0 56px;
}
.footer-brand img { height: 40px; }
.footer-brand p { font-size: 0.875rem; color: var(--ink-2); line-height: 1.72; margin: 18px 0 14px; max-width: 260px; }
.footer-email { font-size: 0.875rem; font-weight: 600; color: var(--blue); display: block; transition: color 0.15s; }
.footer-email:hover { color: var(--blue-hover); }
.footer-city { font-size: 0.79rem; color: var(--ink-3); margin: 5px 0 0; }
.footer-col h4 { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li { margin: 0; }
.footer-col ul a { font-size: 0.875rem; color: var(--ink-2); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--rule); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: var(--ink-3); margin: 0; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--ink-3); transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--ink-2); }

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item { padding: 36px 28px; border-right: none; border-bottom: 1px solid var(--rule); }
  .value-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .service-hero { padding: 84px 0 72px; }
  .service-hero-grid,
  .service-process {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }
  .services-intro { margin-bottom: 36px; }
  .services-panels { grid-template-columns: 1fr; gap: 18px; }
  .service-panel { padding: 34px 28px; }
  .service-panel:last-child { border-top: 1px solid var(--rule); }
  .services-guide {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-tags { gap: 6px; }
  .service-tag {
    padding: 5px 10px;
    font-size: 0.76rem;
  }
  .service-outcome {
    border-left: none;
    border-top: 3px solid var(--blue);
    border-radius: var(--radius);
  }
  .contact-section { padding: 64px 5%; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { padding: 42px; }
  .contact-right { padding: 0; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { padding: 26px; }
  .case-study-kpis,
  .case-study-grid {
    grid-template-columns: 1fr;
  }
  .case-study-section { padding: 44px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 36px 0; border-right: none; border-bottom: 1px solid var(--rule); }
  .process-step:last-child { border-bottom: none; padding-left: 0; }
  .process-step:nth-child(2) { padding: 36px 0; }
  .blog-preview-row, .blog-list {
    grid-template-columns: 1fr;
    gap: 12px;
    border-top: none;
  }
  .blog-preview-item,
  .blog-preview-item:nth-child(2),
  .blog-preview-item:last-child,
  .blog-list-item,
  .blog-list-item:nth-child(3n),
  .blog-list-item:nth-child(3n+2) {
    padding: 22px;
    border: 1px solid var(--rule);
    border-radius: 10px;
    background: var(--white);
  }
  .blog-preview-item:hover,
  .blog-list-item:hover {
    padding: 22px;
    background: var(--warm);
    transform: none;
  }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-art { display: none; }
  .principles-row { grid-template-columns: 1fr; }
  .principle { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--rule); }
  .principle:last-child { border-bottom: none; padding-left: 0; }
  .principle:nth-child(2) { padding: 32px 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-member { padding: 32px 24px 32px 0; }
  .team-member:nth-child(even) { padding: 32px 0 32px 24px; border-right: none; }
  .team-member:nth-child(2), .team-member:nth-child(3), .team-member:nth-child(4) { padding: 32px 24px 32px 0; }
}

@media (max-width: 768px) {
  .site-header {
    background: rgba(250,248,245,0.98);
  }
  .header-inner { height: 68px; }
  .logo img { height: 40px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    background: var(--warm);
    border-radius: 14px;
    border: 1px solid var(--rule);
    box-shadow: 0 18px 50px rgba(8,30,20,0.18);
    flex-direction: column;
    padding: 8px;
    gap: 2px;
    list-style: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li:last-child {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--rule);
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 550;
    text-align: left;
  }
  .nav-links a:hover { background: var(--sand); }
  .nav-cta {
    display: block;
    margin: 0;
    text-align: center !important;
    padding: 14px 16px !important;
    box-shadow: none;
    animation: none;
  }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rule);
    border-radius: 10px;
    background: var(--white);
  }
  .section { padding: 72px 0; }
  .hero { padding: 100px 0 80px; }
  .hero h1 { font-size: 2.6rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 40px; }
  .contact-step { min-height: 0; }
}

@media (max-width: 480px) {
  .hero { padding: 88px 0 72px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .btn-outline-white, .btn-white { width: 100%; justify-content: center; }
  .section { padding: 60px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .team-member { padding: 28px 0; border-right: none; border-bottom: 1px solid var(--rule); }
  .team-member:nth-child(even) { padding: 28px 0; border-left: none; }
  .services-panels { gap: 14px; }
  .service-panel { padding: 30px 22px; border-radius: 12px; }
  .service-panel h3 { font-size: 1.22rem; }
  .service-panel > p { font-size: 0.91rem; }
  .service-use-list { grid-template-columns: 1fr; }
  .service-actions .btn,
  .services-guide .btn {
    width: 100%;
  }
  .services-guide { padding: 24px 22px; }
  .service-tags {
    display: grid;
    grid-template-columns: 1fr;
  }
  .service-tag {
    justify-content: flex-start;
    border-radius: 8px;
    padding: 8px 10px;
  }
  .service-hero { padding: 68px 0 56px; }
  .service-hero h1 { font-size: 2.15rem; }
  .service-hero p { font-size: 0.98rem; }
  .service-hero-panel,
  .service-detail-card,
  .service-process-list div {
    padding: 22px;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .use-case-list {
    display: grid;
    grid-template-columns: 1fr;
  }
  .use-case-list span {
    border-radius: 8px;
  }
  .service-cta { padding: 56px 0; }
  .case-card,
  .case-study-card,
  .case-study-kpis div,
  .case-study-callout {
    padding: 22px;
  }
  .case-study-wrap { padding: 44px 5% 72px; }
  .blog-preview-row { margin-top: 32px; }
  .blog-preview-item,
  .blog-preview-item:nth-child(2),
  .blog-preview-item:last-child,
  .blog-list-item,
  .blog-list-item:nth-child(3n),
  .blog-list-item:nth-child(3n+2),
  .blog-preview-item:hover,
  .blog-list-item:hover {
    padding: 18px;
  }
  .blog-preview-item h3,
  .blog-list-item h3 {
    font-size: 0.96rem;
  }
  .blog-preview-item p,
  .blog-list-item p {
    font-size: 0.84rem;
  }
  .contact-section { padding: 48px 5%; }
  .contact-left, .schedule-panel { padding: 30px 24px; }
  .step-actions { align-items: stretch; }
  .step-actions .btn { width: 100%; }
}
