:root {
  --ink: #1f2430;
  --muted: #626673;
  --line: #e4e3ef;
  --paper: #f7f7fb;
  --white: #ffffff;
  --brand: #7f7eb3;
  --brand-dark: #555486;
  --green: #00c875;
  --green-dark: #008f5a;
  --blue: #0073ea;
  --teal: #00a9b7;
  --gold: #ffcb00;
  --rose: #e2445c;
  --shadow: 0 20px 55px rgba(24, 27, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 234, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 172px;
  height: auto;
  object-fit: contain;
}

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

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--green-dark);
  box-shadow: 0 14px 28px rgba(0, 143, 90, 0.2);
}

.button:active {
  transform: translateY(0);
  background: #007a4d;
  box-shadow: none;
}

.button:focus-visible {
  outline: 3px solid rgba(0, 200, 117, 0.3);
  outline-offset: 3px;
}

.button.secondary {
  background: var(--white);
  color: var(--brand-dark);
  border-color: var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--brand-dark);
  color: var(--white);
  border-color: var(--brand-dark);
  box-shadow: 0 14px 28px rgba(85, 84, 134, 0.18);
}

.button.secondary:active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.button svg {
  width: 18px;
  height: 18px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(14, 19, 28, 0.92), rgba(14, 19, 28, 0.58), rgba(14, 19, 28, 0.12)),
    url("hero-ai-agents.png") center/cover;
  color: var(--white);
}

.hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 70px;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
  color: #f0efff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 7vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 54px;
}

.proof-pill {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: 84px 24px;
}

.section.alt {
  background: var(--white);
}

.trust-band {
  padding-top: 22px;
  padding-bottom: 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-bar span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfe;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.container.narrow {
  width: min(920px, 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.section-head p,
.lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.proof-section {
  background: #fbfbfe;
}

.legal-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(31, 36, 48, 0.06);
}

.legal-card h2 {
  margin: 32px 0 10px;
  font-size: 1.35rem;
}

.legal-card h2:first-of-type {
  margin-top: 18px;
}

.legal-card p {
  color: var(--muted);
}

.legal-card a {
  color: var(--green-dark);
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.05);
}

.card p,
.step p,
.feature p,
.contact-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--green-dark);
  background: #e5f5ee;
}

.icon.blue {
  color: #173f83;
  background: #e8effc;
}

.icon.gold {
  color: #81550f;
  background: #fff7cf;
}

.icon.teal {
  color: #087174;
  background: #e3f5f5;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-visual {
  border: 1px solid var(--line);
  background: var(--white);
}

.product-visual img {
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(135deg, #eef7f8, #f8f6ff);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.feature .mini-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.partner-strip span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.monday-logo {
  width: 190px;
  height: auto;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.credential-grid.compact {
  grid-template-columns: 1fr;
  margin: 22px 0 4px;
}

.credential-badge {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 102px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f9f9ff);
  box-shadow: 0 10px 24px rgba(31, 36, 48, 0.06);
}

.credential-badge img {
  width: 58px;
  height: auto;
}

.credential-badge img.official-partner-badge {
  width: 72px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.services-products {
  margin-bottom: 34px;
}

.product-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(31, 36, 48, 0.06);
}

.product-card img {
  width: min(100%, 340px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.product-card img.product-shot {
  width: 100%;
  height: auto;
  max-height: 210px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6fbfc;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.local-grid {
  display: grid;
  gap: 14px;
}

.local-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(31, 36, 48, 0.05);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.local-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 202, 114, 0.45);
  box-shadow: 0 16px 32px rgba(31, 36, 48, 0.08);
}

.local-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.solution-section {
  background: linear-gradient(180deg, #f8f8fd 0%, #ffffff 100%);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  min-height: 188px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(31, 36, 48, 0.07);
}

.solution-card h3 {
  margin-top: 0;
}

.solution-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.solution-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f0efff;
  color: var(--brand-dark);
  font-weight: 900;
}

.solution-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.solution-footer p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.offer-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(31, 36, 48, 0.06);
}

.offer-card h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fine-print {
  color: var(--muted);
  font-size: 0.9rem;
}

.featured-offer {
  border-color: rgba(127, 126, 179, 0.42);
  background: linear-gradient(180deg, #ffffff, #f7f6ff);
}

.credential-badge strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.credential-badge span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.trust-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trust-card img {
  width: auto;
  max-width: 150px;
  max-height: 62px;
  margin-bottom: 14px;
  object-fit: contain;
}

.trust-card strong {
  display: block;
  line-height: 1.25;
}

.trust-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.industry-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.industry-card h3 {
  margin-top: 0;
}

.section-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.founder-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(31, 36, 48, 0.06);
}

.founder-card p {
  color: var(--muted);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: #f4f4fb;
}

.founder-title {
  margin: 4px 0 14px;
  color: var(--brand-dark) !important;
  font-weight: 900;
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.founder-badges img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
  padding: 4px;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.founder-badges img:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(127, 126, 179, 0.18);
}

.founder-badges .text-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  border: 1px solid var(--line);
  cursor: default;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.founder-badges .text-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(127, 126, 179, 0.18);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 20px;
  margin-top: 32px;
  justify-items: center;
}

.cert-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
  text-align: center;
  max-width: 160px;
  transition: transform 0.18s ease;
}

.cert-tile:hover {
  transform: translateY(-4px);
}

.cert-tile img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
}

.cert-tile .cert-text-badge {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(127, 126, 179, 0.25);
}

.cert-tile figcaption {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .certifications-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 12px;
  }
  .cert-tile img,
  .cert-tile .cert-text-badge {
    width: 88px;
    height: 88px;
  }
  .cert-tile .cert-text-badge {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .certifications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.badge-mark {
  width: 52px;
  height: 52px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--brand);
  font-size: 0.86rem !important;
  font-weight: 900;
}

.badge-mark.blue {
  background: var(--blue);
}

.embed-stack {
  display: grid;
  gap: 22px;
}

.embed-panel,
.booking-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.embed-copy {
  padding: 26px 28px 20px;
}

.embed-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.embed-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.embed-frame iframe,
.booking-card iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
}

.calendly-frame iframe {
  min-height: 720px;
}

.booking-fallback {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-fallback a {
  color: var(--blue);
  font-weight: 900;
}

.feature svg,
.mini-icon svg {
  width: 21px;
  height: 21px;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding: 26px;
  border-left: 4px solid var(--green);
  background: var(--white);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cta-band {
  padding: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(85, 84, 134, 0.94), rgba(0, 115, 234, 0.78)),
    url("hero-ai-agents.png") center/cover;
  color: var(--white);
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
}

.page-hero {
  padding: 86px 24px 70px;
  background:
    linear-gradient(90deg, rgba(14, 19, 28, 0.9), rgba(14, 19, 28, 0.46)),
    url("team-consulting.jpg") center/cover;
  color: var(--white);
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(14, 19, 28, 0.9), rgba(14, 19, 28, 0.42)),
    url("hero-project-workshop.png") center/cover;
}

.monday-hero {
  background:
    linear-gradient(90deg, rgba(14, 19, 28, 0.9), rgba(14, 19, 28, 0.42)),
    url("monday-crm-product-board.png") center/cover;
}

.dmv-hero {
  background:
    linear-gradient(90deg, rgba(14, 19, 28, 0.9), rgba(14, 19, 28, 0.42)),
    url("monday-wm-product-dashboard.png") center/cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(14, 19, 28, 0.9), rgba(14, 19, 28, 0.42)),
    url("hero-consulting-team.png") center/cover;
}

.founders-hero {
  background:
    linear-gradient(90deg, rgba(14, 19, 28, 0.9), rgba(14, 19, 28, 0.42)),
    url("team-collaboration.jpg") center/cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(14, 19, 28, 0.9), rgba(14, 19, 28, 0.42)),
    url("monday-crm-product-item-card.png") center/cover;
}

.public-sector-hero {
  background:
    linear-gradient(90deg, rgba(14, 19, 28, 0.91), rgba(14, 19, 28, 0.38)),
    url("hero-government-nonprofit-projects.png") center/cover;
}

.construction-hero {
  background:
    linear-gradient(90deg, rgba(14, 19, 28, 0.91), rgba(14, 19, 28, 0.36)),
    url("hero-construction-mobile-work-management.jpg") center/cover;
}

.public-sector-cta {
  background:
    linear-gradient(135deg, rgba(85, 84, 134, 0.94), rgba(0, 143, 90, 0.76)),
    url("visual-public-program-dashboard.png") center/cover;
}

.construction-cta {
  background:
    linear-gradient(135deg, rgba(85, 84, 134, 0.94), rgba(0, 115, 234, 0.72)),
    url("visual-construction-dashboard-mobile.jpg") center/cover;
}

.page-hero .container {
  max-width: 980px;
}

.page-hero h1 {
  max-width: 870px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.service-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row p {
  color: var(--muted);
  margin-top: 0;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--brand);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-item a {
  color: var(--green-dark);
  font-weight: 800;
}

.form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cbd7df;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-footer {
  padding: 44px 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--brand-dark);
}

.trademark-note {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.footer-inner a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 16px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 76px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a,
  .nav-links .button {
    justify-content: start;
    width: 100%;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .grid.five,
  .credential-grid,
  .trust-bar,
  .trust-grid,
  .industry-grid,
  .product-grid,
  .offer-grid,
  .solution-grid,
  .founder-card,
  .split,
  .service-row,
  .contact-wrap,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }

  .solution-footer {
    display: grid;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 142px;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .industry-card {
    min-height: auto;
  }

  .nav,
  .hero-inner {
    width: calc(100% - 32px);
    padding-left: 0;
    padding-right: 0;
  }

  .section {
    padding: 48px 16px;
  }

  .solution-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .hero {
    min-height: 640px;
    background-position: 62% center;
  }

  .hero-inner {
    padding-bottom: 46px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 220px;
  }

  .card,
  .form,
  .cta-band {
    padding: 22px;
  }

  .booking-card,
  .booking-card iframe,
  .embed-frame iframe {
    min-height: 620px;
  }

  .embed-copy {
    padding: 22px;
  }

  .page-hero {
    padding: 54px 16px 42px;
  }

  .page-hero p {
    font-size: 1.02rem;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .offer-grid,
  .solution-grid,
  .industry-grid,
  .grid {
    gap: 14px;
  }
}

.service-cta {
  margin-top: 16px;
}
