:root {
  --navy-950: #081a2b;
  --navy-900: #102a43;
  --navy-800: #173f61;
  --blue-600: #1463ff;
  --blue-700: #0d47c7;
  --yellow-400: #f4c430;
  --paper: #fafbf8;
  --surface: #ffffff;
  --surface-alt: #e8eef5;
  --surface-blue: #f1f6ff;
  --ink: #102a43;
  --muted: #52606d;
  --line: #d5dee8;
  --green-700: #137052;
  --green-100: #e5f5ef;
  --white: #ffffff;
  --shadow-soft: 0 1rem 2.5rem rgb(16 42 67 / 0.09);
  --shadow-strong: 0 1.5rem 3.75rem rgb(8 26 43 / 0.2);
  --radius-sm: 0.625rem;
  --radius-md: 1rem;
  --radius-lg: 1.375rem;
  --container: 73.75rem;
  --header-height: 4.75rem;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.3vw + 0.94rem, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--white);
  background: var(--blue-600);
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.01;
}

h2 {
  font-size: clamp(1.85rem, 3.3vw, 3rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

small {
  font-size: 0.82rem;
  line-height: 1.45;
}

:focus-visible {
  outline: 0.1875rem solid var(--yellow-400);
  outline-offset: 0.1875rem;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--blue-700);
  border-radius: var(--radius-sm);
  transform: translateY(-200%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.concept-banner {
  color: var(--navy-900);
  background: var(--yellow-400);
}

.concept-banner__inner {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding-block: 0.45rem;
}

.concept-banner svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.concept-banner p {
  margin: 0;
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
}

.concept-banner p span {
  margin-left: 0.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-height);
  border-bottom: 1px solid rgb(213 222 232 / 0.88);
  background: rgb(250 251 248 / 0.95);
  transition: box-shadow 200ms var(--ease), background 200ms var(--ease);
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    backdrop-filter: blur(0.85rem);
  }
}

.site-header.is-scrolled {
  box-shadow: 0 0.55rem 1.75rem rgb(16 42 67 / 0.08);
  background: rgb(255 255 255 / 0.96);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.brand__mark {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--yellow-400);
  border-radius: 0.8rem;
  box-shadow: inset 0 0 0 1px rgb(16 42 67 / 0.08);
}

.brand__mark svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 0.98rem;
  letter-spacing: -0.015em;
}

.brand__text small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  margin-left: auto;
}

.site-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 160ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-600);
}

.button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease);
}

.button svg,
.mobile-call svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button--compact {
  color: var(--white);
  background: var(--blue-600);
}

.button--primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 0.75rem 1.75rem rgb(20 99 255 / 0.22);
}

.button--large {
  min-height: 3.35rem;
  padding-inline: 1.35rem;
}

.button--light {
  color: var(--navy-900);
  background: var(--white);
}

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--navy-900);
  font-weight: 700;
}

.text-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms var(--ease);
}

.text-link:hover svg {
  transform: translateY(0.18rem);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 12%, rgb(244 196 48 / 0.14), transparent 24rem),
    linear-gradient(135deg, #f9fbff 0%, var(--paper) 55%, #f1f5f9 100%);
}

.hero__grid {
  min-height: min(47rem, calc(100svh - var(--header-height)));
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-block: clamp(3.25rem, 8vw, 6rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero__lead {
  max-width: 37rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1.08rem, 1vw + 0.8rem, 1.32rem);
  line-height: 1.55;
}

.hero__actions {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.hero__proof {
  display: grid;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero__proof > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__proof-icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 0.75rem;
}

.hero__proof-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero__proof p {
  display: grid;
  margin: 0;
}

.hero__proof strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.hero__proof small {
  margin-top: 0.08rem;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  z-index: 2;
  width: min(100%, 34rem);
  margin-inline: auto;
}

.hero__image-frame {
  position: relative;
  overflow: hidden;
  border: 0.45rem solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  background: var(--surface-alt);
}

.hero__image-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(transparent, rgb(8 26 43 / 0.35));
}

.hero__image-frame picture,
.hero__image-frame img {
  width: 100%;
}

.hero__image-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 60% center;
}

.hero__image-note {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.55rem;
  color: var(--white);
  background: rgb(8 26 43 / 0.78);
  border-radius: 0.45rem;
  font-size: 0.68rem;
  line-height: 1.2;
}

.hero__local-card {
  position: relative;
  z-index: 3;
  width: calc(100% - 2rem);
  margin: -1.2rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero__local-card > span {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--navy-900);
  background: var(--yellow-400);
  border-radius: 0.75rem;
}

.hero__local-card svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero__local-card p {
  display: grid;
  margin: 0;
}

.hero__local-card strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.hero__local-card small {
  color: var(--muted);
}

.hero__circuit {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-color: rgb(20 99 255 / 0.18);
  border-style: solid;
}

.hero__circuit::before,
.hero__circuit::after {
  content: "";
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--yellow-400);
  border: 0.16rem solid var(--paper);
  border-radius: 50%;
}

.hero__circuit--one {
  top: 14%;
  right: -4rem;
  width: 15rem;
  height: 11rem;
  border-width: 1px 0 0 1px;
  border-radius: 7rem 0 0;
}

.hero__circuit--one::before {
  top: -0.28rem;
  left: 4rem;
}

.hero__circuit--one::after {
  bottom: 1.4rem;
  left: -0.28rem;
}

.hero__circuit--two {
  bottom: -4rem;
  left: -5rem;
  width: 14rem;
  height: 10rem;
  border-width: 1px 1px 0 0;
  border-radius: 0 7rem 0 0;
}

.hero__circuit--two::before {
  top: -0.28rem;
  right: 3rem;
}

.hero__circuit--two::after {
  right: -0.28rem;
  bottom: 2rem;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-strip__grid {
  display: grid;
}

.trust-strip article {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-block: 1.15rem;
}

.trust-strip article + article {
  border-top: 1px solid var(--line);
}

.trust-strip__icon {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-600);
  background: var(--surface-blue);
  border-radius: 0.8rem;
}

.trust-strip__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.trust-strip strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.trust-strip p {
  margin: 0.05rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.section {
  padding-block: clamp(3.75rem, 8vw, 6.5rem);
}

.section-heading {
  max-width: 43rem;
  margin-bottom: clamp(2rem, 4.5vw, 3.25rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 60ch;
  margin-bottom: 0;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.9rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.service-card.is-highlighted {
  border-color: var(--yellow-400);
  background: #fffdf5;
  box-shadow: 0 0 0 0.2rem rgb(244 196 48 / 0.2), var(--shadow-soft);
}

.service-card__icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  background: var(--surface-blue);
  border-radius: 0.85rem;
}

.service-card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card h3 {
  margin-bottom: 0.45rem;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.service-card__details {
  max-height: none;
  margin: 0.8rem 0 0;
  padding: 0;
  overflow: visible;
  color: var(--muted);
  list-style: none;
  opacity: 1;
  transition: max-height 280ms var(--ease), margin 260ms var(--ease), opacity 200ms var(--ease);
}

.js .service-card__details {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
}

.service-card__details li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.86rem;
}

.service-card__details li + li {
  margin-top: 0.28rem;
}

.service-card__details li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.33rem;
  height: 0.33rem;
  background: var(--yellow-400);
  border-radius: 50%;
}

.js .service-card.is-open .service-card__details {
  max-height: 11rem;
  margin-top: 0.8rem;
  opacity: 1;
}

.service-card__toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  color: var(--blue-600);
  background: var(--white);
  cursor: pointer;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}

.js .service-card__toggle {
  display: grid;
}

.service-card__toggle svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 220ms var(--ease);
}

.service-card.is-open .service-card__toggle {
  color: var(--white);
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.service-card.is-open .service-card__toggle svg {
  transform: rotate(180deg);
}

.problem-finder {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 120%, rgb(20 99 255 / 0.3), transparent 26rem),
    var(--navy-900);
}

.problem-finder::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -7rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgb(244 196 48 / 0.25);
  border-radius: 50%;
}

.problem-finder__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
}

.section-label--light {
  color: var(--yellow-400);
}

.problem-finder h2,
.problem-finder p,
.contact h2,
.contact p {
  color: var(--white);
}

.problem-finder__intro > p:not(.section-label) {
  color: #cdd9e4;
}

.problem-finder__intro .button {
  margin-top: 0.55rem;
}

.problem-options {
  display: grid;
  gap: 0.75rem;
}

.problem-options button {
  min-height: 5.25rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius-md);
  color: var(--white);
  background: rgb(255 255 255 / 0.07);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}

.problem-options button > span:first-child {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--yellow-400);
  border-radius: 0.78rem;
}

.problem-options button > span:first-child svg,
.problem-options__arrow {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.problem-options button > span:nth-child(2) {
  display: grid;
}

.problem-options strong {
  font-size: 0.93rem;
  line-height: 1.35;
}

.problem-options small {
  margin-top: 0.16rem;
  color: #cdd9e4;
}

.problem-options__arrow {
  color: var(--yellow-400);
}

.process {
  background: var(--surface-alt);
}

.process__steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.process__number {
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process__steps h3 {
  margin-bottom: 0.45rem;
}

.process__steps p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.about {
  background: var(--paper);
}

.about__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about__visual {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  display: grid;
  place-content: center;
  gap: 1rem;
  padding: 2rem;
  color: var(--white);
  background:
    linear-gradient(145deg, rgb(20 99 255 / 0.2), transparent 55%),
    var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about__visual p {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0;
  color: var(--white);
  text-align: center;
}

.about__visual p strong {
  font-size: 1.2rem;
}

.about__visual p span {
  color: #cdd9e4;
  font-size: 0.9rem;
}

.about__icon {
  position: relative;
  z-index: 2;
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  margin-inline: auto;
  color: var(--navy-900);
  background: var(--yellow-400);
  border-radius: 1.25rem;
}

.about__icon svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.about__panel-line {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 0.14);
}

.about__panel-line--one {
  inset: -4rem 22% 42% -4rem;
  border-radius: 50%;
}

.about__panel-line--two {
  inset: 48% -5rem -5rem 30%;
  border-radius: 50%;
}

.about__copy > p:not(.section-label) {
  max-width: 58ch;
}

.about__note {
  padding: 1rem 1.1rem;
  border-left: 0.25rem solid var(--yellow-400);
  background: var(--surface-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
}

.reviews {
  background: var(--surface-alt);
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-card__quote {
  color: var(--blue-600);
  font-family: Georgia, serif;
  font-size: 2.8rem;
  line-height: 0.7;
}

.review-card__stars {
  color: #9b7200;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  flex: 1;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-size: clamp(1.12rem, 1vw + 0.9rem, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
}

.review-card__attribute {
  align-self: flex-start;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.6rem;
  margin: -0.25rem 0 1.25rem;
  padding: 0.45rem 0.7rem;
  color: var(--muted);
  background: var(--surface-blue);
  border-radius: 0.6rem;
  font-size: 0.78rem;
}

.review-card__attribute span {
  color: var(--blue-700);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.review-card__attribute strong {
  color: var(--ink);
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: #69483e;
  border-radius: 50%;
  font-weight: 700;
}

.review-card__avatar--blue {
  background: var(--blue-700);
}

.review-card figcaption p {
  display: grid;
  margin: 0;
}

.review-card figcaption strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.review-card figcaption small {
  color: var(--muted);
}

.review-card__reply {
  margin-top: 1.2rem;
  padding: 0.85rem 0.95rem;
  background: var(--surface-blue);
  border-radius: 0.75rem;
}

.review-card__reply span {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card__reply p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--navy-950);
}

.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.contact__copy > p:not(.section-label) {
  max-width: 36rem;
  color: #cdd9e4;
}

.contact__copy .button {
  margin-top: 0.6rem;
}

.contact__details {
  padding: 1.4rem;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 0.07);
}

.contact__details-title {
  margin-bottom: 0.9rem;
  color: var(--white) !important;
  font-weight: 700;
}

.contact__details dl {
  margin-bottom: 1rem;
}

.contact__details dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.72rem;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.contact__details dt {
  color: #cdd9e4;
}

.contact__details dd {
  color: var(--white);
  font-weight: 700;
  text-align: right;
}

.contact__caveat {
  margin: 0;
  color: #b9c8d5 !important;
  font-size: 0.82rem;
}

.contact__circuit {
  position: absolute;
  right: -7rem;
  top: -9rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgb(244 196 48 / 0.18);
  border-radius: 50%;
}

.contact__circuit::before,
.contact__circuit::after {
  content: "";
  position: absolute;
  border: 1px solid rgb(20 99 255 / 0.2);
  border-radius: 50%;
}

.contact__circuit::before {
  inset: 3rem;
}

.contact__circuit::after {
  inset: 7rem;
}

.site-footer {
  padding-block: 2rem calc(6.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer__grid {
  display: grid;
  gap: 1.15rem;
  align-items: center;
}

.site-footer__disclaimer,
.site-footer__meta {
  margin: 0;
  font-size: 0.8rem;
}

.site-footer__disclaimer strong {
  color: var(--ink);
}

.site-footer__meta {
  color: var(--muted);
}

.mobile-call {
  position: fixed;
  z-index: 100;
  right: 0.75rem;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: 0.75rem;
  min-height: 3.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.62rem 1rem;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 0.9rem;
  box-shadow: 0 0.9rem 2.2rem rgb(8 26 43 / 0.3);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms var(--ease);
}

.js .mobile-call {
  display: flex;
}

.mobile-call > span {
  display: grid;
  line-height: 1.1;
}

.mobile-call small {
  margin-top: 0.18rem;
  color: #e7efff;
}

.mobile-call.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(calc(100% + 1rem));
}

.js [data-reveal].reveal-pending {
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

@media (min-width: 30rem) {
  .container {
    width: min(var(--container), calc(100% - 2.5rem));
  }

  .hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

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

@media (min-width: 48rem) {
  .concept-banner p {
    font-size: 0.82rem;
  }

  .site-nav {
    display: flex;
  }

  .button--compact {
    min-width: 6.4rem;
  }

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

  .trust-strip article {
    padding: 1.3rem 1.25rem;
  }

  .trust-strip article + article {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

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

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

  .process__steps li {
    display: block;
    padding: 1.65rem;
  }

  .process__number {
    display: inline-block;
    margin-bottom: 1.5rem;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .contact__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .site-footer__grid {
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
  }

  .site-footer__disclaimer {
    text-align: center;
  }

  .site-footer__meta {
    text-align: right;
  }

  .mobile-call,
  .js .mobile-call {
    display: none;
  }
}

@media (min-width: 64rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(26rem, 0.96fr);
    gap: clamp(3rem, 6vw, 5.5rem);
  }

  .hero__visual {
    width: 100%;
  }

  .hero__image-frame img {
    aspect-ratio: 5 / 6;
  }

  .hero__local-card {
    position: absolute;
    right: -1rem;
    bottom: 2rem;
    width: min(18rem, 72%);
    margin: 0;
  }

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

  .service-card {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 14rem;
    padding: 1.65rem;
  }

  .service-card__toggle {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .service-card__content {
    padding-right: 0.3rem;
  }

  .problem-finder__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 7vw, 6rem);
    align-items: center;
  }

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

@media (hover: hover) {
  .button:hover {
    transform: translateY(-0.12rem);
  }

  .button--primary:hover,
  .button--compact:hover {
    background: var(--blue-700);
    box-shadow: 0 1rem 2.2rem rgb(20 99 255 / 0.28);
  }

  .button--light:hover {
    box-shadow: var(--shadow-soft);
  }

  .service-card:hover {
    border-color: rgb(20 99 255 / 0.4);
    box-shadow: var(--shadow-soft);
    transform: translateY(-0.2rem);
  }

  .service-card__toggle:hover {
    color: var(--white);
    background: var(--blue-600);
    border-color: var(--blue-600);
  }

  .problem-options button:hover {
    border-color: rgb(244 196 48 / 0.55);
    background: rgb(255 255 255 / 0.12);
    transform: translateY(-0.12rem);
  }

  .mobile-call:hover {
    background: var(--blue-700);
  }
}

@media (max-width: 25rem) {
  .concept-banner p span {
    display: block;
    margin-left: 0;
  }

  .button--compact {
    padding-inline: 0.85rem;
  }

  .contact__details dl > div {
    display: grid;
    gap: 0.2rem;
  }

  .contact__details dd {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal].reveal-pending,
  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}
