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

:root {
  --bg: #f7f6f3;
  --bg-2: #efede8;
  --white: #ffffff;
  --ink: #18181b;
  --ink-2: #52525b;
  --ink-3: #a1a1aa;
  --indigo: #4f46e5;
  --indigo-2: #6366f1;
  --indigo-bg: #eef2ff;
  --indigo-dim: #c7d2fe;
  --border: rgba(24, 24, 27, 0.08);
  --border-2: rgba(24, 24, 27, 0.14);
  --shadow-s: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-m: 0 4px 24px rgba(0, 0, 0, 0.09), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-l: 0 12px 48px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.04);
  --r: 20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a { color: inherit; }
img { max-width: 100%; }
input, textarea, button, select { font: inherit; }

main {
  display: block;
  min-height: calc(100vh - 200px);
}

.container,
.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

main > .section:first-child {
  padding-top: 120px;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(247, 246, 243, 0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled {
  box-shadow: var(--shadow-s);
}

.nav-logo {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.nav-logo em {
  font-style: normal;
  color: var(--indigo);
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--bg-2);
  color: var(--ink);
}

.nav-links .nav-cta {
  background: var(--indigo);
  color: #fff;
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  background: var(--indigo-2);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 130;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-2);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-s);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
  border-color: var(--indigo-dim);
}

.nav-toggle-line {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-nav.open .nav-toggle {
  background: var(--indigo-bg);
  border-color: var(--indigo-dim);
  transform: translateY(1px);
}

.site-nav.open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-nav.open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 14, 24, 0.44);
  backdrop-filter: blur(2px);
  border: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 98;
}

.site-nav.open + .nav-overlay {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.flash {
  margin-top: 84px;
  margin-bottom: 12px;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.84rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.flash.success {
  border-color: #86efac;
  background: #dcfce7;
  color: #166534;
}

.flash.error {
  border-color: #fca5a5;
  background: #fee2e2;
  color: #991b1b;
}

/* HERO */
.hero-wrap {
  padding-top: 80px;
}

.hero-bento {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, 300px);
  grid-template-rows: auto auto;
  gap: 12px;
  padding-top: 20px;
  padding-bottom: 12px;
}

.tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  min-width: 0;
  box-shadow: var(--shadow-s);
  transition: box-shadow 0.25s, transform 0.25s;
}

.tile-main,
.tile-hero-main {
  grid-column: span 2;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.tile-main::before,
.tile-hero-main::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  transform: translate(34%, -34%);
  pointer-events: none;
}

.tile-main h1,
.tile-hero-main h1 {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--white);
  overflow-wrap: break-word;
  word-break: normal;
}

.tile-main h1 em,
.tile-hero-main h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--indigo-2);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 36px;
  gap: 24px;
  min-width: 0;
}

.hero-sub {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
  max-width: 380px;
  min-width: 240px;
  flex: 1 1 360px;
}

.hero-btns,
.hero-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.btn,
.btn-primary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--indigo);
  color: #fff;
  padding: 13px 24px;
  font-size: 0.86rem;
  font-weight: 700;
  min-height: 50px;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--indigo-2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.7);
  padding: 13px 20px;
  font-size: 0.86rem;
  font-weight: 600;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.15s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline {
  background: var(--white);
  color: var(--ink);
  padding: 13px 28px;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1.5px solid var(--border-2);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.btn-outline:hover {
  background: var(--bg-2);
  border-color: var(--ink-3);
  transform: translateY(-2px);
}

.btn-outline::after {
  content: '→';
  color: var(--indigo);
}

.btn.btn-primary {
  background: var(--indigo);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.btn.btn-primary:hover {
  background: var(--indigo-2);
}

.btn.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border-2);
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.btn.btn-ghost:hover {
  background: var(--bg-2);
}

.tile-photo {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--indigo-bg) 0%, #dde4ff 100%);
  border-color: var(--indigo-dim);
}

.photo-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.63rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 600;
  min-height: 260px;
}

.photo-area img,
.about-photo-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-nameplate {
  padding: 16px 20px;
  border-top: 1px solid var(--indigo-dim);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.photo-nameplate h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.photo-nameplate span {
  font-size: 0.76rem;
  color: var(--ink-3);
  margin-top: 2px;
  display: block;
}

.tile-stats {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
}

.stat-cell {
  padding: 26px 30px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.15s;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell:hover {
  background: var(--bg);
}

.stat-n {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--indigo);
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: anywhere;
}

.stat-l {
  font-size: 0.76rem;
  color: var(--ink-3);
  line-height: 1.45;
  margin-top: 2px;
}

.promise-strip {
  background: var(--indigo);
  border-radius: var(--r);
  padding: 36px 52px;
  margin: 0 0 12px;
}

.promise-strip p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.55;
  letter-spacing: 0;
  max-width: 780px;
  overflow-wrap: anywhere;
}

.promise-strip p span {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* SECTIONS */
.section {
  padding: 72px 0;
}

.section-header {
  margin-bottom: 36px;
}

.sec-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--indigo-bg);
  color: var(--indigo);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.sec-title {
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.sec-sub,
.muted {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-2);
  max-width: 600px;
  margin-top: 10px;
  overflow-wrap: anywhere;
}

/* PROBLEMS */
.problems-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.prob-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow-s);
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.prob-tile:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-3px);
}

.prob-tile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.25s;
}

.prob-tile:hover::after {
  background: var(--indigo);
}

.prob-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--indigo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.prob-tile h3 {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 8px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.prob-tile p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--ink-2);
  overflow-wrap: anywhere;
}

/* SERVICES */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.srv-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px;
  box-shadow: var(--shadow-s);
  transition: box-shadow 0.25s, transform 0.25s;
  min-height: 420px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.srv-tile:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-3px);
}

.srv-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--indigo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.srv-title {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 9px;
  overflow-wrap: anywhere;
}

.srv-desc {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--ink-2);
  overflow-wrap: anywhere;
}

.srv-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
  min-height: 28px;
}

.srv-chip {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--indigo-bg);
  color: var(--indigo);
  border: 1px solid var(--indigo-dim);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--indigo);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}

.srv-link:hover {
  gap: 10px;
}

.srv-link::after {
  content: '→';
}

.service-preview {
  background: linear-gradient(160deg, #fbfcff 0%, #eef2ff 100%);
  border: 1px solid var(--indigo-dim);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 700;
}

.service-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 18px;
}

.service-preview-detail {
  aspect-ratio: auto;
  min-height: 280px;
}

.service-detail-card {
  cursor: default;
}

.service-detail-title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.service-detail-sub {
  margin-top: 0;
  margin-bottom: 16px;
}

.service-detail-body {
  font-size: 0.86rem;
  color: var(--ink-2);
  line-height: 1.85;
  margin-top: 14px;
  overflow-wrap: anywhere;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* MATERIAL-LIKE DETAIL PAGES */
.md-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-m);
  padding: 32px;
  overflow: hidden;
}

.md-detail-card:hover {
  transform: none;
}

.md-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  gap: 32px;
  align-items: center;
}

.md-detail-copy {
  min-width: 0;
}

.md-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: var(--indigo-bg);
  color: var(--indigo);
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.md-detail-title {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 900;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.md-detail-subtitle {
  margin-top: 14px;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-2);
  overflow-wrap: anywhere;
}

.md-detail-media {
  min-height: 300px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--indigo);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.md-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 20px;
}

.md-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.md-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.md-metric {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  padding: 18px;
  box-shadow: var(--shadow-s);
}

.md-metric span {
  display: block;
  color: var(--indigo);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.md-metric small {
  display: block;
  margin-top: 7px;
  color: var(--ink-2);
  font-size: 0.74rem;
  line-height: 1.45;
}

.md-richtext {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.md-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* STEPS */
.steps-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.step-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px;
  box-shadow: var(--shadow-s);
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.step-tile:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-3px);
}

.step-num-bg {
  position: absolute;
  right: -8px;
  top: -12px;
  font-size: 6rem;
  font-weight: 900;
  color: var(--indigo-bg);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: 0;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--indigo);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-tile h3 {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 9px;
  overflow-wrap: anywhere;
}

.step-tile p {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--ink-2);
  overflow-wrap: anywhere;
}

/* CASES */
.cases-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.case-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  min-height: 500px;
  height: 100%;
}

.case-tile:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-3px);
}

.case-cover {
  background: linear-gradient(160deg, #fbfcff 0%, #eef2ff 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 700;
  aspect-ratio: 16 / 9;
}

.case-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 18px;
}

.case-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-niche {
  display: inline-flex;
  max-width: 100%;
  width: fit-content;
  background: var(--indigo-bg);
  color: var(--indigo);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.case-body h2,
.case-body h3,
.case-title {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  margin-bottom: 9px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.case-body p,
.case-summary {
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  min-height: 84px;
}

.case-nums,
.metrics {
  display: flex;
  gap: 12px 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.c-n,
.metric {
  display: flex;
  flex: 1 1 74px;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.c-nn,
.metric strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--indigo);
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: anywhere;
}

.c-nl,
.metric span {
  font-size: 0.64rem;
  color: var(--ink-3);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--indigo);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
}

.case-link:hover {
  gap: 10px;
}

.case-link::after {
  content: '→';
}

.cases-footer {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.case-detail-card .case-cover {
  max-height: 420px;
  aspect-ratio: auto;
}

.case-full {
  font-size: 0.86rem;
  color: var(--ink-2);
  line-height: 1.85;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.case-detail-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* REVIEWS */
.reviews-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rev-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow-s);
  transition: box-shadow 0.25s, transform 0.25s;
}

.rev-tile:hover {
  box-shadow: var(--shadow-m);
  transform: translateY(-3px);
}

.rev-tile.dark {
  background: var(--ink);
  border-color: var(--ink);
}

.rev-tile.dark .rev-text {
  color: rgba(255, 255, 255, 0.55);
}

.rev-tile.dark .rev-name {
  color: var(--white);
}

.rev-tile.dark .rev-role {
  color: rgba(255, 255, 255, 0.38);
}

.rev-tile.dark .rev-line {
  background: rgba(255, 255, 255, 0.1);
}

.rev-tile.dark .rev-av {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.rev-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.rev-star {
  font-size: 0.8rem;
  color: #f59e0b;
}

.rev-text {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.rev-line {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

.rev-person {
  display: flex;
  align-items: center;
  gap: 11px;
}

.rev-av {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--indigo-bg);
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rev-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
}

.rev-role {
  font-size: 0.7rem;
  color: var(--ink-3);
  margin-top: 1px;
}

/* ABOUT */
.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-photo-tile {
  background: linear-gradient(160deg, var(--indigo-bg) 0%, #dde4ff 100%);
  border: 1px solid var(--indigo-dim);
  border-radius: var(--r);
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.about-photo-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.63rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 700;
}

.about-stats-bar {
  margin: 0 16px 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  box-shadow: var(--shadow-m);
}

.ab-it {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ab-n {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--indigo);
  letter-spacing: 0;
  line-height: 1;
}

.ab-l {
  font-size: 0.6rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0;
}

.about-text-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 44px;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.about-text-tile h2 {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.about-text-tile p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--ink-2);
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.check-icon,
.about-list .check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--indigo-bg);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  width: 10px;
  height: 10px;
}

.about-list .check {
  color: var(--indigo);
  font-size: 0.72rem;
  font-weight: 700;
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 12px;
  align-items: stretch;
}

.about-page-card {
  min-height: 100%;
}

.about-page-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 16px 0 20px;
  background: var(--bg);
}

.about-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-single-card {
  max-width: 940px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 20px;
}

.about-single-head {
  max-width: 680px;
  margin-bottom: 24px;
}

.about-single-head h1 {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 10px;
}

.about-single-head p {
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.7;
}

.about-single-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.about-single-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
}

.about-single-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}

.about-single-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo-note {
  flex: 1;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.about-photo-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.95rem;
}

.about-photo-note span {
  display: block;
  color: var(--ink-2);
  font-size: 0.84rem;
  line-height: 1.55;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.about-facts li {
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.about-single-content {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
}

.about-single-content p,
.about-approach p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--ink-2);
  margin-bottom: 12px;
}

.about-approach {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.about-approach h2 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.about-single-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

/* CTA */
.cta-section {
  padding-top: 20px;
}

.cta-tile {
  background: var(--ink);
  border-radius: var(--r);
  padding: 56px 64px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-l);
}

.cta-tile::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  transform: translate(35%, -35%);
  pointer-events: none;
}

.cta-l .sec-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
}

.cta-l h2 {
  font-size: 2.35rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.cta-l p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.48);
}

.cta-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(79, 70, 229, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.68rem;
  color: #a5b4fc;
}

.cta-form-wrap {
  background: var(--white);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.cta-form-title {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.cta-form-sub {
  font-size: 0.76rem;
  color: var(--ink-3);
  margin-bottom: 16px;
  line-height: 1.5;
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.f-inp,
.field {
  background: var(--bg);
  border: 1.5px solid var(--border-2);
  color: var(--ink);
  padding: 11px 15px;
  border-radius: 11px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.f-inp:focus,
.field:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-bg);
}

.f-inp::placeholder,
.field::placeholder {
  color: var(--ink-3);
}

.f-btn {
  width: 100%;
  background: var(--indigo);
  color: #fff;
  padding: 14px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: 4px;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

.f-btn:hover {
  background: var(--indigo-2);
  transform: translateY(-1px);
}

.f-note,
.field-note {
  font-size: 0.68rem;
  color: var(--ink-3);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* FAQ */
.faq-wrap {
  max-width: 740px;
  margin-top: 36px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 20px;
  user-select: none;
}

.faq-q-t {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.4;
}

.faq-tog {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  color: var(--ink-2);
  transition: transform 0.3s, background 0.2s, color 0.2s;
}

.faq-a {
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--ink-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-item.open .faq-tog {
  transform: rotate(45deg);
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

/* FOOTER */
.site-footer {
  background: var(--ink);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.f-logo {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0;
}

.f-logo em {
  font-style: normal;
  color: var(--indigo-2);
}

.f-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.f-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.f-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.f-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
}

/* LEGACY PAGES */
.grid {
  display: grid;
  gap: 12px;
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-s);
}

.panel,
.about-card,
.form-card {
  padding: 30px;
}

.panel h1,
.panel h2,
.panel h3,
.about-card h1,
.about-card h2,
.about-card h3,
.form-card h1,
.form-card h2,
.form-card h3 {
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: 0;
}

.panel p,
.about-card p,
.form-card p,
.panel li,
.about-card li,
.form-card li,
label {
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--ink-2);
}

.panel ul,
.about-card ul {
  margin: 12px 0;
  padding-left: 20px;
}

.lead-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.contact-method {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.contact-method:hover {
  border-color: var(--indigo-dim);
  box-shadow: var(--shadow-s);
  transform: translateY(-2px);
}

.contact-method span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-3);
  font-size: 0.72rem;
  line-height: 1.35;
}

.contact-method strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
  word-break: break-word;
}

.contact-next {
  flex: 1;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-next h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.3;
}

.contact-next ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-next li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.contact-next li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--indigo-bg);
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-next p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.86rem;
  line-height: 1.65;
}

.contact-next strong {
  color: var(--ink);
}

.form-grid {
  display: grid;
  gap: 10px;
}

.captcha-check {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: left;
  vertical-align: top;
  font-size: 0.78rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.table th {
  background: var(--bg-2);
  color: var(--ink);
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 12px;
  padding-top: 120px;
  padding-bottom: 32px;
}

.admin-nav a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink-2);
  margin-top: 3px;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: var(--bg-2);
  color: var(--ink);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.35s; }

/* RESPONSIVE */
@media (max-width: 1060px) {
  .hero-bento,
  .services-bento,
  .cases-bento,
  .reviews-bento,
  .about-bento,
  .about-page-grid,
  .steps-bento,
  .problems-bento,
  .cards-2,
  .cards-3,
  .lead-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tile-main,
  .tile-hero-main,
  .tile-stats,
  .tile-photo {
    grid-column: span 2;
  }

  .tile-stats {
    grid-template-columns: 1fr 1fr;
  }

  .tile-photo {
    min-height: 260px;
  }

  .cta-tile {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 36px;
    border-radius: var(--r);
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .md-detail-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .md-detail-media {
    min-height: 260px;
  }

  .about-single-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .about-single-photo {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .container,
  .page {
    padding: 0 20px;
  }

  .site-nav {
    padding: 0 20px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero-bento,
  .services-bento,
  .cases-bento,
  .reviews-bento,
  .about-bento,
  .about-page-grid,
  .steps-bento,
  .problems-bento,
  .cards-2,
  .cards-3,
  .lead-wrap,
  .tile-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .tile-main,
  .tile-hero-main,
  .tile-photo,
  .tile-stats {
    grid-column: span 1;
  }

  .tile-main,
  .tile-hero-main {
    padding: 32px 28px;
    min-height: auto;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .promise-strip {
    padding: 28px;
  }

  .cta-tile {
    padding: 32px 22px;
    gap: 24px;
  }

  .cta-form-wrap {
    padding: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding: 32px 0;
  }

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-cell:last-child {
    border-bottom: none;
  }

  .contact-methods {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  main > .section:first-child {
    padding-top: 98px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-wrap {
    padding-top: 58px;
  }

  .tile-main::before,
  .tile-hero-main::before,
  .cta-tile::before {
    display: none;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    width: 100%;
    max-width: 100%;
  }

  .hero-sub {
    width: 100%;
    max-width: 640px;
    min-width: 0;
    flex: none;
  }

  .tile-main h1,
  .tile-hero-main h1 {
    font-size: 2.35rem;
  }

  .service-detail-title,
  .cta-l h2 {
    font-size: 2.05rem;
  }

  .site-nav {
    height: 68px;
    padding: 0 20px;
    z-index: 110;
  }

  .nav-logo {
    font-size: 0.9rem;
    max-width: calc(100% - 70px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100dvh;
    padding: 90px 20px 24px;
    border-left: 1px solid var(--indigo-dim);
    background:
      radial-gradient(circle at top right, rgba(99, 102, 241, 0.22), transparent 58%),
      linear-gradient(180deg, #ffffff 0%, #f4f6ff 100%);
    box-shadow: -12px 0 36px rgba(24, 24, 27, 0.2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    transform: translateX(104%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.2s ease;
    z-index: 120;
    overflow-y: auto;
  }

  .site-nav.open .nav-links {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a,
  .nav-links a:not(.nav-cta) {
    display: flex;
    align-items: center;
    min-height: 46px;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.28);
  }

  .hero-btns,
  .hero-actions,
  .service-detail-actions,
  .case-detail-actions {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-ghost,
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    flex: 0 1 auto;
  }

  .btn-primary,
  .btn-ghost,
  .btn-outline {
    justify-content: center;
  }

  .panel,
  .about-card,
  .form-card {
    padding: 24px;
  }

  .table {
    min-width: 560px;
  }

  .md-detail-card {
    padding: 24px;
  }

  .md-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-single-card {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .container,
  .page {
    padding: 0 16px;
  }

  .site-nav {
    height: 62px;
    padding: 0 14px;
  }

  .nav-links {
    width: 100%;
    padding: 78px 14px 20px;
    border-left: none;
  }

  .flash {
    margin-top: 76px;
  }

  .section {
    padding: 52px 0;
  }

  .sec-title {
    font-size: 1.82rem;
  }

  .tile-main h1,
  .tile-hero-main h1 {
    font-size: 1.92rem;
  }

  .hero-sub {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .service-detail-title,
  .cta-l h2 {
    font-size: 1.78rem;
  }

  .tile-main,
  .tile-hero-main,
  .about-text-tile {
    padding: 24px 20px;
  }

  .cta-tile {
    padding: 24px 16px;
  }

  .cta-form-wrap {
    padding: 18px;
  }

  .promise-strip {
    padding: 22px 18px;
  }

  .hero-btns,
  .hero-actions {
    gap: 8px;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-ghost,
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost,
  .service-detail-actions .btn-primary,
  .service-detail-actions .btn-ghost,
  .service-detail-actions .btn-outline,
  .case-detail-actions .btn-primary,
  .case-detail-actions .btn-ghost,
  .case-detail-actions .btn-outline {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .case-body,
  .srv-tile,
  .step-tile,
  .rev-tile {
    padding: 20px;
  }

  .md-detail-card {
    padding: 20px;
  }

  .md-detail-media {
    min-height: 220px;
  }

  .md-detail-actions .btn-primary,
  .md-detail-actions .btn-outline {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .about-single-card {
    padding: 22px 18px;
  }

  .about-single-media,
  .about-single-content {
    padding: 14px;
  }

  .about-facts {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .about-facts li {
    min-height: 0;
  }

  .about-single-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .tile-main h1,
  .tile-hero-main h1 {
    font-size: 1.72rem;
  }

  .tile-main,
  .tile-hero-main,
  .about-text-tile {
    padding: 22px 18px;
  }
}
