/* ==========================================================
   SI Global Tax Solutions — Website UI Kit
   Builds on ../../colors_and_type.css. Site-specific layout.
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --brand-dark: #063131;
  --brand-teal: #0C7573;
  --brand-deep-card: #0C4F4F;
  --mint-section: #D7E7D6;
  --mint-soft: #EFF5EE;
  --white: #ffffff;
  --body-text: #6C7D7D;
  --body-text-strong: #2D3B3B;
  --muted-on-dark: #A2BDBD;
  --mint-on-dark: #77D0C1;
  --accent-star: #FFA20B;
  --hairline: #D1DFD8;
  --hairline-dark: rgba(255,255,255,0.08);
  --font-sans: 'Fira Sans', system-ui, sans-serif;
  --r-section: 28px;
  --r-card: 16px;
  --r-image: 14px;
  --r-pill: 999px;
  --page-gutter: 30px;
  --container: calc(100vw - (var(--page-gutter) * 2));
  --section-y: 110px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.625;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html,
body {
  max-width: 100%;
}

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

a { color: var(--brand-teal); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--brand-dark); }

button { font-family: inherit; }

/* ─── layout ─── */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0; }
.boxed { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0; }

.section { padding: var(--section-y) 0; }
.section-tight { padding: 70px 0; }
.services-section { padding-bottom: 0; }

/* ─── typography ─── */
.h1, .h2, .h3, .h4 { color: var(--brand-dark); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.02em; }
.h2 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; }
.h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; }
.h4 { font-size: 20px; line-height: 1.3; font-weight: 500; }
.h1, .h2, .h3, .h4, .hero h1 { overflow-wrap: break-word; }
.on-dark .h1, .on-dark .h2, .on-dark .h3, .on-dark .h4 { color: #fff; }

.lead { font-size: 17px; line-height: 1.7; max-width: 640px; }
.on-dark .lead { color: var(--muted-on-dark); }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-teal);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 13px;
  border-radius: var(--r-pill);
  background: rgba(20, 184, 166, 0.10);
  border: 1px solid rgba(20, 184, 166, 0.28);
  line-height: 1;
  white-space: normal;
}
.eyebrow.on-dark {
  color: var(--mint-on-dark);
  background: rgba(94, 234, 212, 0.10);
  border-color: rgba(94, 234, 212, 0.28);
}

/* ─── rotating star (icon) ─── */
.star {
  width: 18px; height: 18px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1.5l1.6 6.6 6.6-2.4-3.9 5.7 6.2 3.6-7 .6 1.6 6.7-5.1-4.7-5.1 4.7 1.6-6.7-7-.6 6.2-3.6L3.8 5.7l6.6 2.4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1.5l1.6 6.6 6.6-2.4-3.9 5.7 6.2 3.6-7 .6 1.6 6.7-5.1-4.7-5.1 4.7 1.6-6.7-7-.6 6.2-3.6L3.8 5.7l6.6 2.4z'/></svg>") center/contain no-repeat;
  animation: spin 14s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.star-badge {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: var(--mint-on-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
.star-badge .star { width: 32px; height: 32px; }
.eyebrow > .star {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  -webkit-mask: none;
  mask: none;
  animation: none;
}

/* ─── section head pattern ─── */
.section-head { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.section-head .eyebrow { margin-bottom: 14px; justify-content: center; }
.section-head p { margin-top: 18px; color: var(--body-text); }
.on-dark .section-head p { color: var(--muted-on-dark); }
.section-head.left { text-align: left; margin-left: 0; }
.section-head.left .eyebrow { justify-content: flex-start; }

/* ─── buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.3s ease; display:inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--brand-teal); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { background: var(--mint-section); color: var(--brand-dark); }
.btn-outline { background: transparent; color: var(--brand-dark); border-color: var(--brand-dark); }
.btn-outline:hover { background: var(--brand-dark); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: #fff; color: var(--brand-dark); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--brand-teal); padding: 10px 0; }
.btn-ghost:hover { color: var(--brand-dark); }

/* ─── icon circles ─── */
.icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--mint-section);
  color: var(--brand-teal);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle.dark { background: var(--brand-deep-card); color: var(--mint-on-dark); }
.icon-circle.solid { background: var(--brand-teal); color: #fff; }
.icon-circle svg { width: 26px; height: 26px; }
.icon-circle.sm { width: 44px; height: 44px; }
.icon-circle.sm svg { width: 20px; height: 20px; }

/* ─── boxed dark/mint sections ─── */
.band {
  border-radius: var(--r-section);
  padding: 90px 56px;
  position: relative;
  overflow: hidden;
}
.band.dark { background: var(--brand-dark); color: #fff; }
.band.mint { background: var(--mint-soft); color: var(--body-text); }
.band.mint-section { background: var(--mint-section); color: var(--body-text-strong); }
.band.white-card { background: #fff; border: 1px solid var(--hairline); }

/* ─── header ─── */
.site-header-shell {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  max-width: calc(100vw - (var(--page-gutter) * 2));
  z-index: 200;
  pointer-events: none;
}
.site-header {
  background: rgba(6,49,49,0.96);
  border: 1px solid transparent;
  border-radius: 0 0 24px 24px;
  padding: 18px 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  color: #fff;
  margin-top: 0;
  pointer-events: auto;
  box-shadow: 0 18px 45px -34px rgba(6,49,49,0.55);
  backdrop-filter: saturate(140%) blur(10px);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}
.site-header-shell.over-hero .site-header,
.site-header-shell.on-dark .site-header {
  background: rgba(6,49,49,0.96);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}
.site-header-shell.on-light .site-header {
  background: rgba(255,255,255,0.94);
  border-color: var(--hairline);
  color: var(--brand-dark);
  box-shadow: 0 18px 50px -32px rgba(6,49,49,0.28);
}
.site-header-shell.on-mint .site-header {
  background: rgba(239,245,238,0.95);
  border-color: rgba(12,117,115,0.14);
  color: var(--brand-dark);
  box-shadow: 0 18px 50px -34px rgba(6,49,49,0.24);
}
.site-logo { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 18px; color: #fff; }
.site-header-shell.on-light .site-logo,
.site-header-shell.on-mint .site-logo { color: var(--brand-dark); }
.site-logo .mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--brand-teal);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
}
.site-logo .word-2 { opacity: 0.7; font-weight: 400; }
.site-header-shell.on-light .site-logo .word-2,
.site-header-shell.on-mint .site-logo .word-2 { color: var(--body-text); opacity: 1; }
.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.site-nav a, .site-nav button {
  background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 4px 0;
  position: relative;
  transition: color 0.3s ease;
}
.site-header-shell.on-light .site-nav a,
.site-header-shell.on-light .site-nav button,
.site-header-shell.on-mint .site-nav a,
.site-header-shell.on-mint .site-nav button { color: rgba(6,49,49,0.72); }
.site-nav a:hover, .site-nav a.active,
.site-nav button:hover, .site-nav button.active { color: #fff; }
.site-header-shell.on-light .site-nav a:hover,
.site-header-shell.on-light .site-nav a.active,
.site-header-shell.on-light .site-nav button:hover,
.site-header-shell.on-light .site-nav button.active,
.site-header-shell.on-mint .site-nav a:hover,
.site-header-shell.on-mint .site-nav a.active,
.site-header-shell.on-mint .site-nav button:hover,
.site-header-shell.on-mint .site-nav button.active { color: var(--brand-dark); }
.site-nav a.active::after, .site-nav button.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px;
  height: 2px; background: var(--mint-on-dark); border-radius: 2px;
}
.site-header-shell.on-light .site-nav a.active::after,
.site-header-shell.on-light .site-nav button.active::after,
.site-header-shell.on-mint .site-nav a.active::after,
.site-header-shell.on-mint .site-nav button.active::after { background: var(--brand-teal); }
.header-action {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: currentColor;
  display: none;
  place-items: center;
  cursor: pointer;
  position: relative;
}
.site-header-shell.on-light .menu-toggle,
.site-header-shell.on-mint .menu-toggle {
  border-color: rgba(6,49,49,0.12);
  background: rgba(12,117,115,0.08);
}
.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }
.menu-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }
.mobile-menu {
  display: none;
  pointer-events: auto;
}

/* ─── hero ─── */
.hero {
  background: var(--brand-dark);
  color: #fff;
  border-radius: 0 0 var(--r-section) var(--r-section);
  padding: 138px 56px 78px;
  margin-top: 0;
  min-height: clamp(720px, calc(100vh - var(--page-gutter)), 860px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 100% 0%, rgba(127,214,200,0.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  position: relative; z-index: 1;
}
.hero h1 {
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 600; line-height: 1.08; letter-spacing: -0.01em;
  color: #fff; margin: 18px 0 22px;
}
.hero p { color: var(--muted-on-dark); font-size: 17px; line-height: 1.7; margin-bottom: 36px; max-width: 540px; }
.hero-cta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.hero-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3.4;
  background: #0C4F4F;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image .play { display: none; }

.phone-pill {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff; font-size: 15px; font-weight: 500;
}
.phone-pill .icon-circle.sm {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

/* ─── breadcrumb hero (inner pages) ─── */
.breadcrumb-hero {
  background: var(--brand-dark);
  border-radius: var(--r-section);
  padding: 132px 56px 80px;
  color: #fff;
  margin-top: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.breadcrumb-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 380px at 50% 0%, rgba(127,214,200,0.08), transparent 60%);
  pointer-events: none;
}
.breadcrumb-hero h1 { color: #fff; font-size: clamp(36px, 4.6vw, 56px); margin-bottom: 18px; position: relative; z-index: 1; }
.breadcrumb-hero .crumb {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--muted-on-dark); font-size: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px; border-radius: 999px;
}
.breadcrumb-hero .crumb b { color: #fff; font-weight: 500; }

/* inner page image hero */
.page-hero {
  min-height: 450px;
  border-radius: 0 0 var(--r-section) var(--r-section);
  background:
    linear-gradient(rgba(6,49,49,0.48), rgba(6,49,49,0.58)),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1600&q=80") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 130px 28px 82px;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
}
.page-hero .h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero .h1::after {
  content: "";
  display: block;
  width: 116px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand-teal);
  margin: 18px auto 0;
}
.page-crumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  font-weight: 500;
}
.page-crumb b {
  color: #fff;
  font-weight: 600;
}
.page-hero > .eyebrow {
  margin-bottom: 18px;
}
.page-hero > .lead {
  max-width: 620px;
  text-align: center;
}

/* about page */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 58px;
  align-items: center;
}
.about-story-copy h2 {
  margin-top: 18px;
  max-width: 680px;
}
.about-story-copy p {
  margin-top: 20px;
  max-width: 660px;
  color: var(--body-text);
}
.about-story-copy .btn {
  margin-top: 30px;
}
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.about-proof-grid div {
  background: var(--mint-soft);
  border: 1px solid rgba(12,117,115,0.12);
  border-radius: var(--r-card);
  padding: 22px 20px;
}
.about-proof-grid strong {
  display: block;
  color: var(--brand-teal);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 600;
}
.about-proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--body-text);
  font-size: 13px;
  line-height: 1.45;
}
.about-story-image {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/4.4;
  background: var(--brand-deep-card);
}
.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-why-dark {
  background: var(--brand-dark);
  border-radius: var(--r-section);
  padding: 72px 56px;
  box-shadow: 0 30px 70px -42px rgba(3,48,47,0.55);
  overflow: hidden;
  position: relative;
}
.about-why-dark::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(141,226,219,0.08);
  pointer-events: none;
}
.about-why-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
}
.about-why-head .h2 {
  margin-top: 18px;
  color: #fff;
  max-width: 760px;
}
.about-why-head p {
  color: var(--muted-on-dark);
  line-height: 1.75;
  font-size: 17px;
  max-width: 540px;
}
.about-values-grid-dark {
  gap: 22px;
  position: relative;
  z-index: 1;
}
.about-value-card-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(141,226,219,0.18);
  min-height: 282px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.about-value-card-dark:hover {
  background: #fff;
  border-color: rgba(141,226,219,0.62);
  transform: translateY(-6px);
  box-shadow: 0 22px 45px -26px rgba(0,0,0,0.45);
}
.about-value-card-dark .icon-circle {
  background: rgba(141,226,219,0.12);
  color: var(--mint);
  border-color: rgba(141,226,219,0.2);
}
.about-value-card-dark:hover .icon-circle {
  background: var(--mint-soft);
  color: var(--brand-teal);
}
.about-value-card-dark .num {
  color: var(--mint);
  opacity: 0.72;
}
.about-value-card-dark:hover .num {
  color: var(--brand-teal);
  opacity: 0.7;
}
.about-value-card-dark h4 {
  color: #fff;
}
.about-value-card-dark p {
  color: var(--muted-on-dark);
}
.about-value-card-dark:hover h4 {
  color: var(--brand-dark);
}
.about-value-card-dark:hover p {
  color: var(--body-text);
}
.about-mission-band {
  background: #E0F1DF;
  border-radius: var(--r-section);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: end;
  border: 1px solid rgba(12,117,115,0.12);
}
.about-mission-band h2 {
  margin-top: 18px;
  max-width: 680px;
}
.about-mission-band p {
  color: var(--body-text-strong);
  font-size: 18px;
  line-height: 1.65;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.about-value-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 32px 26px;
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.about-value-card:hover {
  border-color: var(--brand-teal);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -28px rgba(6,49,49,0.22);
}
.about-value-card .icon-circle {
  margin-bottom: 22px;
}
.about-value-card .num {
  position: absolute;
  top: 28px;
  right: 26px;
  color: var(--brand-teal);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.55;
}
.about-value-card h4 {
  color: var(--brand-dark);
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 600;
}
.about-value-card p {
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.65;
}
.about-value-card.about-value-card-dark {
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
  border-color: rgba(141,226,219,0.22);
  min-height: 282px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 44px -34px rgba(0,0,0,0.65);
}
.about-value-card.about-value-card-dark:hover {
  background: linear-gradient(145deg, rgba(224,241,223,0.18), rgba(255,255,255,0.07));
  border-color: rgba(141,226,219,0.58);
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 28px 52px -32px rgba(0,0,0,0.7);
}
.about-value-card.about-value-card-dark .icon-circle {
  background: rgba(141,226,219,0.14);
  color: var(--mint);
  border: 1px solid rgba(141,226,219,0.24);
}
.about-value-card.about-value-card-dark .num {
  color: var(--mint);
  opacity: 0.72;
}
.about-value-card.about-value-card-dark h4 {
  color: #fff;
}
.about-value-card.about-value-card-dark p {
  color: var(--muted-on-dark);
}
.about-process-band {
  background: var(--mint-soft);
  border-radius: var(--r-section);
  padding: 78px 56px;
}
.about-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.about-step {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 28px 24px;
}
.about-step > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-teal);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-step h4 {
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.about-step p {
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.65;
}
.about-software-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}
.about-software-grid h2 {
  margin-top: 18px;
}
.about-software-grid p {
  margin: 20px 0 30px;
  color: var(--body-text);
}
.software-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.software-list span {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-card);
  border: 1px solid rgba(12,117,115,0.14);
  background: #fff;
  color: var(--brand-dark);
  font-weight: 600;
  text-align: center;
}
.software-list span:nth-child(3),
.software-list span:nth-child(6) {
  background: #E0F1DF;
}
.software-list span:nth-child(4) {
  background: var(--brand-dark);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
}
.about-cta-wrap {
  padding-top: 0;
}
.about-page-cta {
  border-radius: var(--r-section) var(--r-section) 0 0;
}

/* ─── trust strip ─── */
.trust-strip {
  text-align: center;
  background: #fff;
  border-radius: var(--r-card);
  border: 1px solid var(--hairline);
  padding: 50px 30px;
  margin-top: 22px;
}
.trust-strip .label { font-size: 14px; color: var(--body-text); margin-bottom: 26px; }
.trust-strip .label em { color: var(--brand-teal); font-style: normal; font-weight: 500; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 56px; opacity: 0.7; }
.trust-logos .logo {
  font-weight: 600; font-size: 20px; color: var(--brand-dark);
  display: flex; align-items: center; gap: 8px;
  letter-spacing: -0.01em;
}
.trust-logos .logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand-teal); }

/* ─── feature cards (light) ─── */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
}
.feature-card {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 36px 28px 32px; text-align: center; position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover {
  border-color: var(--brand-teal);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -28px rgba(6,49,49,0.22);
}
.feature-card .icon-circle { margin: 0 auto 22px; }
.feature-card h4 { color: var(--brand-dark); font-size: 18px; font-weight: 500; margin-bottom: 10px; line-height: 1.35; }
.feature-card p { font-size: 14px; line-height: 1.6; color: var(--body-text); }
.feature-card .num {
  position: absolute; bottom: 18px; right: 22px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500;
  color: var(--brand-teal); opacity: 0.55;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-mini-card {
  min-height: 270px;
  padding: 30px 28px 32px;
  border-radius: var(--r-card);
  border: 1px solid var(--hairline);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.service-mini-card::after {
  content: "";
  position: absolute;
  inset: auto -42px -54px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--mint-soft);
  transition: transform 0.35s ease, background 0.35s ease;
}
.service-mini-card:hover {
  border-color: rgba(12,117,115,0.42);
  transform: translateY(-4px);
  box-shadow: 0 24px 54px -34px rgba(6,49,49,0.34);
}
.service-mini-card:hover::after {
  transform: scale(1.14);
  background: var(--mint-section);
}
.service-mini-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint-section);
  color: var(--brand-teal);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 24px;
}
.service-mini-card h3 {
  color: var(--brand-dark);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.service-mini-card p {
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.process-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.process-mini-card {
  min-height: 255px;
}
.process-mini-card:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 26px 58px -34px rgba(6,49,49,0.52);
}
.process-mini-card:hover::after {
  background: rgba(119,208,193,0.12);
}
.process-mini-card:hover .service-mini-number {
  background: var(--mint-on-dark);
  color: var(--brand-dark);
}
.process-mini-card:hover h3 {
  color: #fff;
}
.process-mini-card:hover p {
  color: var(--muted-on-dark);
}

/* ─── service cards on dark ─── */
.service-grid-dark {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.service-card-dark {
  background: var(--brand-deep-card); border-radius: var(--r-card); overflow: hidden;
  transition: transform 0.4s ease, background 0.4s ease;
  border: 1px solid rgba(255,255,255,0.06);
}
.service-card-dark:hover { transform: translateY(-4px); background: #0d5c5b; }
.service-card-dark .img { aspect-ratio: 16/10; overflow: hidden; }
.service-card-dark .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card-dark:hover .img img { transform: scale(1.05); }
.service-card-dark .body { padding: 24px 24px 26px; }
.service-card-dark .body h4 { color: #fff; font-size: 18px; font-weight: 500; margin-bottom: 10px; }
.service-card-dark .body p { color: var(--muted-on-dark); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.service-card-dark .read-more {
  color: var(--mint-on-dark); font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; gap: 8px; align-items: center;
}

/* service row directory */
.service-row-list {
  display: grid;
  gap: 18px;
}
.service-row-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 28px;
  min-height: 154px;
  padding: 18px 22px 18px 18px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  box-shadow: 0 18px 44px -34px rgba(6,49,49,0.24);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.service-row-card:hover {
  border-color: rgba(12,117,115,0.42);
  transform: translateY(-3px);
  box-shadow: 0 24px 54px -34px rgba(6,49,49,0.34);
}
.service-row-image {
  height: 118px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--mint-soft);
}
.service-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-row-card:hover .service-row-image img { transform: scale(1.05); }
.service-row-copy h3 {
  color: var(--brand-dark);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-row-copy p {
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.65;
  max-width: 680px;
}
.service-row-action {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(12,117,115,0.18);
  background: var(--mint-section);
  color: var(--brand-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-row-action span {
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}
.service-row-action:hover {
  background: var(--brand-teal);
  color: #fff;
  transform: translateX(3px);
}

/* ─── about ─── */
.about-band {
  background: #E0F1DF;
  border-radius: var(--r-section);
  padding: 78px 56px;
}
.about-band .eyebrow {
  background: #fff;
  border-color: rgba(12,117,115,0.18);
}
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-image { border-radius: 22px; overflow: hidden; aspect-ratio: 4/4.4; background:#0C4F4F; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { margin-bottom: 22px; }
.about-content > p { margin-bottom: 26px; color: var(--body-text); }
.checklist { list-style: none; display: grid; gap: 14px; margin-bottom: 30px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; color: var(--brand-dark); font-weight: 500; }
.checklist .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand-teal); color: #fff; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.about-meta {
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--hairline);
}
.about-meta .contact-block strong {
  display: block; color: var(--brand-dark); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.about-meta .contact-block span { color: var(--brand-teal); font-weight: 500; font-size: 16px; }

/* ─── stats band ─── */
.stats-band {
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--r-section);
  margin-top: 72px;
  padding: 82px 42px 76px;
  display: block;
}
.stats-band h2 { color: #fff; }
.stats-band-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.stats-band-head .btn {
  flex-shrink: 0;
}
.stats-band-head .h2 {
  max-width: 620px;
  line-height: 1.22;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 42px;
}
.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding-right: 34px;
  margin-right: 34px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}
.stat .num {
  font-size: clamp(44px, 4.5vw, 60px); font-weight: 600;
  color: var(--mint-section); letter-spacing: -0.02em; line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
  white-space: nowrap;
}
.stat .num small { font-size: 20px; font-weight: 500; }
.stat .label {
  font-size: 18px; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--muted-on-dark); margin-top: 0;
}

/* ─── process steps ─── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.process-card {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 30px 26px;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.process-card:hover { border-color: var(--brand-teal); transform: translateY(-4px); }
.process-card .step-num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--brand-teal); letter-spacing: 0.1em;
}
.process-card h4 { color: var(--brand-dark); font-size: 18px; font-weight: 500; margin: 8px 0 10px; }
.process-card p { font-size: 14px; color: var(--body-text); line-height: 1.6; }

/* software cards */
.software-section {
  background: #fff;
}
.software-cta-row {
  display: flex;
  justify-content: center;
  margin: -28px 0 48px;
}
.software-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.software-card {
  min-height: 344px;
  border-radius: 6px;
  padding: 38px 28px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.software-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -34px rgba(6,49,49,0.35);
}
.software-card.white {
  background: #fff;
  color: var(--brand-teal);
  border: 1px solid var(--hairline);
}
.software-card.light-grey {
  background: #f4f7f5;
  color: var(--brand-teal);
  border: 1px solid var(--hairline);
}
.software-card.light-green {
  background: #E0F1DF;
  color: var(--brand-teal);
  border: 1px solid rgba(12,117,115,0.14);
}
.software-card.dark-green {
  background: var(--brand-dark);
  color: var(--mint-on-dark);
  border: 1px solid rgba(255,255,255,0.08);
}
.software-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.software-icon svg {
  width: 56px;
  height: 56px;
}
.software-label {
  color: var(--brand-dark);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  position: relative;
}
.software-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 22px;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
}
.software-card.dark-green .software-label,
.software-card.dark-green h4 {
  color: #fff;
}
.software-card h4 {
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 16px;
}
.software-card p {
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.software-card.dark-green p {
  color: rgba(255,255,255,0.68);
}
.software-arrow {
  margin-top: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(12,117,115,0.22);
  background: rgba(12,117,115,0.08);
  color: var(--brand-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.software-card.dark-green .software-arrow {
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}
.software-arrow:hover {
  transform: translate(4px, -4px);
}

/* ─── pricing ─── */
.pricing-band {
  background: var(--brand-dark); color: #fff;
  border-radius: var(--r-section);
  padding: 90px 56px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start;
}
.pricing-band h2 { color: #fff; margin-bottom: 22px; }
.pricing-band .lead { color: var(--muted-on-dark); margin-bottom: 30px; }
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.pricing-card {
  background: #fff; border-radius: var(--r-card); padding: 30px 26px;
  color: var(--brand-dark); position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.4); }
.pricing-card .icon-circle { margin-bottom: 20px; }
.pricing-card h4 { font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.pricing-card .meta { font-size: 12px; color: var(--body-text); text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-card ul {
  list-style: none; margin: 18px 0 22px;
  padding: 18px 0 0; border-top: 1px solid var(--hairline);
  display: grid; gap: 10px;
}
.pricing-card ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--body-text-strong);
}
.pricing-card ul li::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  background: var(--mint-section); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c6e6d' stroke-width='3'><path d='M5 12l5 5L20 7'/></svg>");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}
.pricing-card .footer-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; border-top: 1px solid var(--hairline);
}
.pricing-card .quote { font-size: 13px; color: var(--body-text); }

/* ─── blog cards ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: #fff; border-radius: var(--r-card); overflow: hidden;
  border: 1px solid var(--hairline);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -30px rgba(6,49,49,0.25); }
.blog-card .img { aspect-ratio: 16/10; overflow: hidden; background:#0C4F4F; }
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .img img { transform: scale(1.05); }
.blog-card .body { padding: 22px 24px 26px; }
.blog-card .meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; font-size: 12px; }
.blog-card .pill {
  background: var(--mint-section); color: var(--brand-dark);
  padding: 5px 12px; border-radius: var(--r-pill);
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
}
.blog-card .date { color: var(--body-text); }
.blog-card h4 { color: var(--brand-dark); font-size: 18px; font-weight: 500; line-height: 1.35; margin-bottom: 12px; }
.blog-card p { font-size: 13px; line-height: 1.55; color: var(--body-text); margin-bottom: 14px; }
.blog-card .read-more {
  color: var(--brand-teal); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: inline-flex; gap: 6px; align-items: center;
}

/* ─── testimonial ─── */
.testimonial-band {
  background: #E0F1DF;
  color: var(--brand-dark);
  border-radius: var(--r-section);
  padding: 84px 56px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(12,117,115,0.12);
}
.testimonial-band::before,
.testimonial-band::after {
  content: "";
  position: absolute;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  opacity: 0.22;
  background-image: radial-gradient(var(--brand-teal) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}
.testimonial-band::before { left: -36px; top: 110px; }
.testimonial-band::after { right: 44px; bottom: 34px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 1.35fr);
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.testimonial-summary .eyebrow {
  background: #fff;
  border-color: rgba(12,117,115,0.18);
}
.testimonial-summary h2 {
  margin-top: 18px;
  max-width: 560px;
}
.testimonial-summary > p {
  margin-top: 20px;
  max-width: 520px;
  color: var(--body-text);
}
.testimonial-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 26px 0;
  border-top: 1px solid rgba(12,117,115,0.14);
  border-bottom: 1px solid rgba(12,117,115,0.14);
}
.testimonial-score strong {
  display: block;
  color: var(--brand-teal);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.testimonial-score span {
  display: block;
  margin-top: 8px;
  color: var(--body-text);
  font-size: 15px;
}
.testimonial-score .rating-stars {
  color: var(--accent-star);
  font-size: 20px;
  letter-spacing: 5px;
  margin-top: 0;
}
.testimonial-note {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--body-text-strong);
}
.testimonial-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-teal);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M5 12l5 5L20 7'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonial-slider {
  min-width: 0;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.testimonial-slider:active {
  cursor: grabbing;
}
.testimonial-window {
  overflow: hidden;
  padding: 4px;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  transform: translateX(calc(var(--slide-index, 0) * -1 * (50% + 12px)));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc((100% - 24px) / 2);
  min-height: 360px;
  background: #fff;
  border: 1px solid rgba(12,117,115,0.10);
  border-radius: var(--r-card);
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
  border-color: var(--brand-teal);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -28px rgba(6,49,49,0.22);
}
.testimonial-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.testimonial-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #fff 0 17%, transparent 18%),
    radial-gradient(circle at 50% 78%, rgba(255,255,255,0.95) 0 28%, transparent 29%),
    linear-gradient(135deg, var(--brand-teal), var(--brand-dark));
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px var(--mint-section);
}
.testimonial-person h4 {
  color: var(--brand-dark);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 4px;
}
.testimonial-person span:not(.testimonial-avatar) {
  color: var(--body-text);
  font-size: 14px;
}
.testimonial-card blockquote {
  color: var(--body-text-strong);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.rating-stars {
  color: var(--accent-star);
  font-size: 19px;
  letter-spacing: 5px;
  white-space: nowrap;
  margin-top: auto;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}
.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(12,117,115,0.25);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.testimonial-dots button.is-active {
  background: var(--brand-teal);
  transform: scale(1.15);
}

/* ─── form ─── */
.contact-form {
  background: var(--mint-soft);
  border-radius: var(--r-section);
  padding: 50px 56px;
}
.contact-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form .field.full { grid-column: 1 / -1; }
.contact-form label {
  font-size: 13px; font-weight: 500; color: var(--brand-dark);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 14px 18px; border-radius: 10px; border: 1px solid var(--hairline);
  background: #fff; font-family: inherit; font-size: 15px; color: var(--brand-dark);
  outline: none; transition: border 0.3s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(7,57,56,0.42);
  opacity: 1;
}
.contact-form select:invalid {
  color: rgba(7,57,56,0.52);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--brand-teal);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .submit-row {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.contact-form .submit-row p { font-size: 13px; color: var(--body-text); }

/* ─── marquee ─── */
.marquee-band {
  padding: 70px 0; overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  background: #fff;
}
.services-marquee {
  margin: 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-size: clamp(63px, 8vw, 123px);
  font-weight: 600; letter-spacing: -0.02em;
}
.marquee-word {
  display: inline-block;
  color: var(--brand-dark);
}
.marquee-word.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand-dark);
}
.marquee-dot {
  color: var(--brand-dark);
}
.marquee-track .star { color: var(--brand-teal); width: 32px; height: 32px; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── footer ─── */
.footer {
  background: var(--brand-dark); color: #fff;
  border-radius: 0 0 var(--r-section) var(--r-section);
  padding: 80px 56px 30px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.home-cta-section {
  padding-top: 0;
}
.home-cta {
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--r-section) var(--r-section) 0 0;
  padding: 88px 56px 78px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.home-cta .h2 {
  color: #fff;
  max-width: 720px;
  margin: 20px auto 18px;
}
.home-cta p {
  color: var(--muted-on-dark);
  max-width: 650px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.7;
}
.home-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 60px;
}
.footer h5 { color: #fff; font-size: 16px; font-weight: 500; margin-bottom: 22px; letter-spacing: 0.02em; }
.footer p, .footer li { color: var(--muted-on-dark); font-size: 14px; line-height: 1.75; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: var(--muted-on-dark); transition: color 0.3s, padding 0.3s; }
.footer ul a:hover { color: var(--mint-on-dark); padding-left: 6px; }
.footer .brand-block .site-logo { color: #fff; margin-bottom: 18px; }
.footer .socials { display: flex; gap: 12px; margin-top: 22px; }
.footer .socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand-teal); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer .socials a:hover { background: #fff; color: var(--brand-dark); transform: translateY(-3px); }
.footer .socials svg { width: 14px; height: 14px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: var(--muted-on-dark);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .legal-links { display: flex; gap: 24px; }
.footer-bottom .legal-links a { color: var(--muted-on-dark); }
.footer-bottom .legal-links a:hover { color: #fff; }

/* ─── blog page sidebar ─── */
.blog-page-grid { display: grid; grid-template-columns: 2.4fr 1fr; gap: 48px; align-items: start; }
.sidebar { display: grid; gap: 24px; position: sticky; top: 24px; }
.sidebar .panel {
  background: #fff; border: 1px solid var(--hairline);
  border-radius: var(--r-card); padding: 26px 28px;
}
.sidebar h5 {
  font-size: 16px; font-weight: 600; color: var(--brand-dark);
  margin-bottom: 16px;
}
.sidebar .cat-list { list-style: none; display: grid; gap: 12px; }
.sidebar .cat-list a {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--body-text-strong); font-weight: 400;
  padding: 8px 0; border-bottom: 1px solid var(--hairline);
}
.sidebar .cat-list a:last-child { border-bottom: 0; }
.sidebar .cat-list a span.count {
  background: var(--mint-section); color: var(--brand-dark);
  font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 999px;
}

/* ─── faq ─── */
.faq-panel,
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}
.faq-card,
.faq-item {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 18px 42px -36px rgba(6,49,49,0.22);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.faq-card:hover,
.faq-item:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  box-shadow: 0 24px 52px -38px rgba(6,49,49,0.46);
  transform: translateY(-2px);
}
.faq-card:hover .faq-question,
.faq-item:hover summary {
  color: #fff;
}
.faq-card:hover .faq-toggle,
.faq-item:hover summary::after {
  background: var(--mint-on-dark);
  color: var(--brand-dark);
}
.faq-card:hover .faq-answer p,
.faq-item:hover p {
  color: var(--muted-on-dark);
}
.faq-card.is-open {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 24px 52px -38px rgba(6,49,49,0.46);
}
.faq-card.is-open .faq-question {
  color: #fff;
}
.faq-question,
.faq-item summary {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle,
.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mint-section);
  color: var(--brand-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.faq-card.is-open .faq-toggle,
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--brand-teal);
  color: #fff;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}
.faq-card.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p,
.faq-item p {
  overflow: hidden;
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.75;
  padding: 0 28px;
}
.faq-card.is-open .faq-answer p,
.faq-item[open] p {
  color: var(--muted-on-dark);
  padding-bottom: 24px;
}

/* ─── contact details ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-details { display: grid; gap: 18px; }
.contact-details .item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px; background: #fff;
  border: 1px solid var(--hairline); border-radius: var(--r-card);
}
.contact-details h4 { font-size: 14px; font-weight: 500; color: var(--brand-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-details p { font-size: 15px; color: var(--body-text-strong); line-height: 1.55; }
.contact-details a { color: var(--brand-teal); font-weight: 500; }

/* contact page */
.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}
.contact-intro h2 {
  margin-top: 18px;
  max-width: 560px;
}
.contact-intro > p {
  margin-top: 20px;
  color: var(--body-text);
  max-width: 580px;
}
.contact-details-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.contact-detail-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 22px 24px;
}
.contact-detail-card h4 {
  color: var(--brand-dark);
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.contact-detail-card p {
  color: var(--body-text-strong);
  font-size: 15px;
  line-height: 1.5;
}
.contact-detail-card span:not(.icon-circle) {
  display: block;
  margin-top: 4px;
  color: var(--body-text);
  font-size: 13px;
}
.contact-support-band {
  background: var(--brand-dark);
  border: 1px solid rgba(141,226,219,0.2);
  border-radius: var(--r-section);
  padding: 70px 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  box-shadow: 0 30px 70px -42px rgba(3,48,47,0.55);
  overflow: hidden;
  position: relative;
}
.contact-support-band::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(141,226,219,0.08);
  pointer-events: none;
}
.contact-support-band > * {
  position: relative;
  z-index: 1;
}
.contact-support-band h2 {
  margin-top: 18px;
  color: #fff;
}
.contact-support-band .eyebrow {
  color: var(--mint);
  border-color: rgba(141,226,219,0.32);
  background: rgba(141,226,219,0.1);
}
.contact-support-list {
  display: grid;
  gap: 18px;
}
.contact-support-list article {
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
  border: 1px solid rgba(141,226,219,0.2);
  border-radius: var(--r-card);
  padding: 24px 26px;
  color: var(--muted-on-dark);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.contact-support-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(141,226,219,0.52);
  background: linear-gradient(145deg, rgba(224,241,223,0.18), rgba(255,255,255,0.07));
}
.contact-support-list span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(141,226,219,0.14);
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
}
.contact-support-list p {
  color: var(--muted-on-dark);
  line-height: 1.7;
}

/* post archives and single post */
.cat-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.cat-pill {
  border: 1px solid rgba(12,117,115,0.18);
  background: #fff;
  color: var(--brand-dark);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.cat-pill.is-active,
.cat-pill:hover {
  background: var(--brand-teal);
  color: #fff;
  border-color: var(--brand-teal);
}
.archive-filter-row {
  margin-bottom: 34px;
}
.archive-grid {
  margin-top: 0;
}
.archive-card .read-more {
  color: var(--brand-teal);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: start;
}
.post-article {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-section);
  padding: 58px 64px;
}
.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--body-text);
  font-size: 14px;
}
.post-lead {
  color: var(--brand-dark);
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.post-article p {
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 22px;
}
.post-article h2 {
  color: var(--brand-dark);
  font-size: 28px;
  line-height: 1.25;
  margin: 38px 0 16px;
}
.post-article blockquote {
  margin: 34px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--brand-teal);
  background: var(--mint-soft);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.55;
}
.blog-state {
  text-align: center;
  color: var(--body-text);
  font-size: 17px;
  margin-top: 34px;
}
.blog-state.error {
  color: #9b2f2f;
}
.post-like-button {
  border: 1px solid rgba(12,117,115,0.18);
  background: var(--mint-soft);
  color: var(--brand-teal);
  border-radius: 999px;
  padding: 7px 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.post-like-button:hover {
  background: var(--brand-teal);
  color: #fff;
  border-color: var(--brand-teal);
}
.post-comments {
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--hairline);
}
.comment-card {
  background: var(--mint-soft);
  border: 1px solid rgba(12,117,115,0.12);
  border-radius: var(--r-card);
  padding: 20px 22px;
  margin-top: 16px;
}
.comment-card strong {
  color: var(--brand-dark);
}
.comment-card p {
  margin-top: 8px;
}
.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.comment-form .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.comment-form .full,
.comment-form button,
.comment-status {
  grid-column: 1 / -1;
}
.comment-form label {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.comment-form input,
.comment-form textarea {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--brand-dark);
}
.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}
.comment-status {
  color: var(--brand-teal);
  font-weight: 600;
}
.post-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 110px;
}
.sidebar-card {
  background: var(--mint-soft);
  border: 1px solid rgba(12,117,115,0.12);
  border-radius: var(--r-card);
  padding: 28px 26px;
}
.sidebar-card h4 {
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.sidebar-card p {
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.related-posts {
  list-style: none;
  display: grid;
  gap: 16px;
}
.related-posts li {
  border-bottom: 1px solid rgba(12,117,115,0.14);
  padding-bottom: 16px;
}
.related-posts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.related-posts button {
  background: none;
  border: 0;
  color: var(--brand-dark);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}
.related-posts span {
  display: block;
  margin-top: 5px;
  color: var(--brand-teal);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── responsive ─── */
@media (max-width: 920px) {
  :root { --page-gutter: 0px; --section-y: 70px; }
  .wrap, .boxed { max-width: 100vw; }
  .section.wrap,
  .section .wrap,
  .software-section .wrap,
  .home-cta-section.wrap { padding-left: 18px; padding-right: 18px; }
  .wrap:has(> .hero),
  .section.wrap:has(> .page-hero),
  .section.wrap:has(> .breadcrumb-hero),
  .section.wrap:has(> .band),
  .section.wrap:has(> .about-band),
  .section.wrap:has(> .stats-band),
  .section.wrap:has(> .pricing-band),
  .section.wrap:has(> .testimonial-band),
  .home-cta-section.wrap,
  .footer.wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .section.wrap > .section-head,
  .section.wrap > .feature-grid,
  .section.wrap > .blog-grid,
  .section.wrap > .cat-row,
  .section.wrap > .blog-page-grid,
  .section.wrap > .contact-grid,
  .section.wrap > .service-row-list,
  .section.wrap > .faq-panel,
  .section.wrap > [style*="text-align"] {
    margin-left: 18px;
    margin-right: 18px;
  }
  .hero {
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 24px 24px;
  }
  .hero, .band, .about-band, .stats-band, .pricing-band, .testimonial-band, .home-cta,
  .footer, .breadcrumb-hero, .contact-form { padding: 60px 26px; }
  .hero { padding: 122px 26px 60px; min-height: auto; }
  .page-hero { min-height: 380px; padding: 122px 26px 70px; }
  .breadcrumb-hero { padding-top: 120px; }
  .hero-grid, .about-grid, .stats-band, .pricing-band,
  .testimonial-grid, .blog-page-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-page-grid, .contact-support-band, .single-post-layout { grid-template-columns: 1fr; gap: 36px; }
  .post-sidebar { position: static; }
  .about-story-grid, .about-why-head, .about-mission-band, .about-software-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-values-grid, .about-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-grid, .process-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-row-card { grid-template-columns: 150px minmax(0, 1fr) 56px; gap: 20px; }
  .service-row-image { height: 104px; }
  .service-row-action { width: 52px; height: 52px; }
  .about-why-dark, .about-mission-band, .about-process-band { padding: 60px 26px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .software-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-band-head {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 30px;
  }
  .stats-band-head .btn {
    align-self: flex-start;
    max-width: 100%;
    white-space: normal;
  }
  .stats-grid { grid-template-columns: 1fr; gap: 26px; padding-top: 30px; }
  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    padding-right: 0;
    padding-bottom: 24px;
    margin-right: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 0 0 20px 20px;
  }
  .site-nav { display: none; }
  .header-action { display: none; }
  .menu-toggle { display: grid; }
  .mobile-menu {
    width: 100%;
    display: grid;
    gap: 8px;
    padding: 0 16px 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--hairline);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 22px 44px -34px rgba(6,49,49,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-menu button:not(.btn) {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--brand-dark);
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    text-align: left;
    padding: 13px 14px;
  }
  .mobile-menu button:not(.btn).active,
  .mobile-menu button:not(.btn):hover {
    background: var(--mint-soft);
    color: var(--brand-teal);
  }
  .mobile-menu .btn {
    width: 100%;
    margin-top: 6px;
  }
}
@media (max-width: 560px) {
  :root { --page-gutter: 0px; }
  .section.wrap,
  .section .wrap,
  .software-section .wrap,
  .home-cta-section.wrap { padding-left: 14px; padding-right: 14px; }
  .wrap:has(> .hero),
  .section.wrap:has(> .page-hero),
  .section.wrap:has(> .breadcrumb-hero),
  .section.wrap:has(> .band),
  .section.wrap:has(> .about-band),
  .section.wrap:has(> .stats-band),
  .section.wrap:has(> .pricing-band),
  .section.wrap:has(> .testimonial-band),
  .home-cta-section.wrap,
  .footer.wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .section.wrap > .section-head,
  .section.wrap > .feature-grid,
  .section.wrap > .blog-grid,
  .section.wrap > .cat-row,
  .section.wrap > .blog-page-grid,
  .section.wrap > .contact-grid,
  .section.wrap > .service-row-list,
  .section.wrap > .faq-panel,
  .section.wrap > [style*="text-align"] {
    margin-left: 14px;
    margin-right: 14px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .hero, .band, .about-band, .stats-band, .pricing-band, .testimonial-band, .home-cta,
  .footer, .breadcrumb-hero, .contact-form { padding: 50px 22px; border-radius: 22px; }
  .page-hero { min-height: 330px; padding: 116px 22px 58px; border-radius: 0 0 22px 22px; }
  .page-hero .h1 { font-size: clamp(34px, 10vw, 42px); }
  .home-cta { border-radius: 22px 22px 0 0; }
  .footer { border-radius: 0 0 22px 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-card-grid, .process-card-grid { grid-template-columns: 1fr; }
  .service-row-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }
  .service-row-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .service-row-action {
    justify-self: start;
  }
  .about-proof-grid, .about-values-grid, .about-steps, .software-list { grid-template-columns: 1fr; }
  .about-story-copy {
    padding-left: 20px;
  }
  .about-why-dark, .about-mission-band, .about-process-band { padding: 50px 22px; border-radius: 22px; }
  .about-why-head {
    gap: 24px;
    margin-bottom: 32px;
  }
  .about-why-head .h2,
  .about-why-head p {
    max-width: 100%;
  }
  .contact-support-band, .post-article { padding: 40px 22px; border-radius: 22px; }
  .post-lead { font-size: 19px; }
  .post-article h2 { font-size: 23px; }
  .comment-form { grid-template-columns: 1fr; }
  .software-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex-basis: 100%; }
  .testimonial-track {
    gap: 0;
    transform: translateX(calc(var(--slide-index, 0) * -100%));
  }
  .testimonial-score { align-items: flex-start; flex-direction: column; }
  .testimonial-card { min-height: auto; }
  .marquee-band { padding: 42px 0; }
  .services-marquee { margin: 4px 0 60px; }
  .hero { padding: 116px 22px 54px; border-radius: 0 0 22px 22px; }
  .hero h1 { font-size: clamp(30px, 8vw, 36px); line-height: 1.12; }
  .hero p { font-size: 15px; max-width: 100%; }
  .h2 { font-size: clamp(24px, 7vw, 28px); line-height: 1.15; }
  .section-head { max-width: 100%; }
  .eyebrow { max-width: 100%; font-size: 11px; letter-spacing: 0.1em; }
  .breadcrumb-hero { padding-top: 112px; }
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 14px;
  }
  .site-logo { gap: 10px; font-size: 16px; min-width: 0; }
  .site-logo .mark { width: 36px; height: 36px; border-radius: 9px; }
  .site-logo .word-2 { display: none; }
  .menu-toggle { width: 42px; height: 42px; }
  .contact-form-grid { grid-template-columns: 1fr; }
}
