:root {
  --ink: #12181d;
  --muted: #526c78;
  --line: #b9ddea;
  --paper: #eaf7fd;
  --soft: #d8eef7;
  --green: #0f8f95;
  --green-dark: #075763;
  --gold: #10a7a0;
  --gold-soft: #d7f3f1;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 87, 99, .14);
  --max: 1180px;
  --header-height: clamp(132px, 11.5vw, 166px);
  --anchor-offset: calc(var(--header-height) + 24px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  max-width: 100%;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

#instruction-form {
  scroll-margin-top: calc(var(--header-height) + 10px);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: grid;
  grid-template-columns: clamp(220px, 22vw, 330px) minmax(230px, 1fr) auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(10px, 1.7vw, 24px);
  row-gap: 8px;
  padding: 12px clamp(18px, 3.6vw, 48px);
  background: rgba(234, 247, 253, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(7, 87, 99, .12);
}

.brand {
  display: contents;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.4vw, 4.2rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: center;
  width: clamp(190px, 18vw, 310px);
  height: clamp(88px, 8.6vw, 136px);
  object-fit: contain;
}

.brand span {
  grid-column: 2 / -1;
  grid-row: 1;
  align-self: end;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  color: #10202b;
}

.site-header::after {
  content: "Decades of Expertise. Accelerated by AI.";
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  color: #456873;
  font-size: clamp(1rem, 1.45vw, 1.36rem);
  line-height: 1.2;
  white-space: nowrap;
}

.nav {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
}

.nav a,
.header-call {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(15, 143, 149, .18);
  border-radius: 0;
  color: var(--green-dark);
  background: rgba(255,255,255,.58);
  box-shadow: 0 8px 18px rgba(7, 87, 99, .06);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.nav a:hover,
.header-call {
  color: #ffffff;
  background: linear-gradient(135deg, #14b8b0, #087a87);
}

.nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 143, 149, .42);
}

.header-call {
  grid-column: 4;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  font-size: .9rem;
}

.main-nav-toggle,
.mobile-phone-link {
  display: none;
}

@media (max-width: 1460px) {
  .site-header {
    column-gap: 10px;
  }

  .site-header::after {
    max-width: 310px;
    white-space: normal;
    font-size: .98rem;
  }

  .nav {
    gap: 6px;
  }

  .nav a,
  .header-call {
    min-height: 40px;
    padding: 0 10px;
    font-size: .72rem;
  }

  .header-call {
    font-size: .78rem;
  }
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(26px, 5vw, 66px) 0;
}

.choice-landing {
  min-height: calc(100vh - var(--header-height));
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(30px, 5vh, 58px) 0 clamp(28px, 4vw, 56px);
  display: grid;
  align-content: start;
  gap: clamp(22px, 3vh, 34px);
}

.choice-copy {
  position: relative;
  display: grid;
  gap: clamp(14px, 1.8vh, 22px);
  align-items: center;
  padding-right: clamp(380px, 41vw, 560px);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(16px, 2vw, 26px);
}

.choice-copy .eyebrow,
.services-choice-page .simple-hero .eyebrow {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 0 0 0 0;
  padding: 11px 24px 11px 22px;
  border: 2px solid rgba(8, 122, 135, .32);
  border-radius: 999px;
  color: #075763;
  background: rgba(255, 255, 255, .72);
  box-shadow:
    0 10px 26px rgba(7, 87, 99, .09),
    inset 0 0 18px rgba(20, 184, 176, .12);
  overflow: visible;
  animation: choiceEyebrowIn .7s ease-out both, choiceEyebrowGlow 3.8s ease-in-out 1s infinite;
}

.choice-copy .eyebrow::after,
.services-choice-page .simple-hero .eyebrow::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -10px;
  border-radius: 999px;
  background:
    conic-gradient(from 0deg, transparent 0 44%, rgba(20, 184, 176, .26) 50%, #14b8b0 58%, #075763 67%, transparent 76% 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 4px;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(20, 184, 176, .56));
  animation: choiceEyebrowOrbit 2.4s linear infinite;
}

.choice-copy .eyebrow::before,
.services-choice-page .simple-hero .eyebrow::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -14px;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0a6b76;
  border: 3px solid #5ee7df;
  box-shadow:
    0 0 0 6px rgba(20, 184, 176, .22),
    0 0 22px rgba(7, 87, 99, .82);
  transform: translateX(-50%);
  offset-path: inset(-14px -14px -14px -14px round 999px);
  offset-distance: 0%;
  animation: choiceEyebrowDot 2.4s linear infinite;
}

.choice-copy h1 {
  max-width: 1220px;
  margin: 0;
  font-size: clamp(2.65rem, 5.4vw, 5.45rem);
  line-height: .94;
}

.choice-copy p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.choice-copy .eyebrow,
.choice-copy h1,
.choice-copy p:not(.eyebrow) {
  grid-column: 1;
}

.tech-screen-visual {
  position: absolute;
  right: clamp(-34px, -2.4vw, -18px);
  top: 50%;
  width: clamp(430px, 42vw, 610px);
  min-height: clamp(300px, 33vw, 420px);
  overflow: visible;
  transform: translateY(-50%);
  filter: drop-shadow(0 34px 54px rgba(7, 87, 99, .24));
}

.tech-halo {
  position: absolute;
  inset: 2% 0 0 3%;
  border: 1px solid rgba(7, 87, 99, .16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 52%, rgba(20, 184, 176, .22), transparent 34%),
    conic-gradient(from 28deg, transparent, rgba(7, 87, 99, .18), transparent 34%, rgba(20, 184, 176, .22), transparent 68%);
  opacity: .72;
  animation: techHaloSpin 12s linear infinite;
}

.program-monitor {
  position: absolute;
  left: 2%;
  right: 1%;
  top: 8%;
  height: 68%;
  padding: clamp(10px, 1.2vw, 15px);
  border: 1px solid rgba(18, 24, 29, .68);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.28), transparent 18%),
    linear-gradient(135deg, #061a22 0%, #0d3842 48%, #06161c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    inset 0 -18px 34px rgba(0,0,0,.34),
    0 10px 0 rgba(7, 87, 99, .18),
    0 30px 60px rgba(7, 87, 99, .28);
  transform: perspective(900px) rotateX(2deg) rotateY(-8deg) rotateZ(1.5deg);
}

.program-monitor::before,
.program-monitor::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.program-monitor::before {
  inset: -18px;
  z-index: -1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 62% 42%, rgba(20, 184, 176, .34), transparent 34%),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.22), transparent 24%);
  filter: blur(3px);
  opacity: .9;
}

.program-monitor::after {
  top: 11%;
  left: 8%;
  width: 42%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.26), transparent 68%);
  transform: rotate(-8deg);
  opacity: .72;
}

.program-screen-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 176, .48);
  border-radius: 18px;
  background: #071018;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.1),
    inset 0 0 38px rgba(20, 184, 176, .18);
}

.program-screen-frame::before,
.program-screen-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.program-screen-frame::before {
  background:
    linear-gradient(115deg, rgba(255,255,255,.32), transparent 28% 72%, rgba(20, 184, 176, .12)),
    radial-gradient(circle at 78% 36%, rgba(20, 184, 176, .24), transparent 26%);
  mix-blend-mode: screen;
}

.program-screen-frame::after {
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 5px);
  opacity: .16;
}

.program-screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}

.tech-screen {
  position: absolute;
  top: 18%;
  width: 48%;
  height: 52%;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 176, .58);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(7, 16, 24, .96), rgba(7, 87, 99, .84)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 18px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    inset 0 -24px 46px rgba(20, 184, 176, .14),
    0 18px 42px rgba(7, 87, 99, .24);
}

.tech-screen::before,
.tech-screen::after {
  content: "";
  position: absolute;
}

.tech-screen::before {
  inset: 14px;
  border-radius: 11px;
  background:
    linear-gradient(90deg, rgba(20, 184, 176, .95) 0 18%, transparent 18% 26%, rgba(255,255,255,.78) 26% 30%, transparent 30%),
    linear-gradient(180deg, transparent 0 18%, rgba(20, 184, 176, .34) 18% 19%, transparent 19% 35%, rgba(255,255,255,.24) 35% 36%, transparent 36% 60%, rgba(20, 184, 176, .24) 60% 61%, transparent 61%),
    radial-gradient(circle at 72% 34%, rgba(20, 184, 176, .86), transparent 14%),
    radial-gradient(circle at 74% 34%, transparent 0 20%, rgba(255,255,255,.56) 21% 22%, transparent 23%),
    linear-gradient(135deg, transparent, rgba(20, 184, 176, .12));
  animation: techScan 3.8s ease-in-out infinite;
}

.tech-screen::after {
  left: 0;
  right: 0;
  top: -35%;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(20, 184, 176, .26), transparent);
  transform: skewY(-8deg);
  animation: techSweep 3s ease-in-out infinite;
}

.tech-screen span {
  position: absolute;
  left: 17%;
  right: 16%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dff7fb, #14b8b0, transparent);
  opacity: .86;
  animation: techLinePulse 2.6s ease-in-out infinite;
}

.tech-screen span:nth-child(1) { top: 26%; width: 48%; }
.tech-screen span:nth-child(2) { top: 42%; width: 66%; animation-delay: -.7s; }
.tech-screen span:nth-child(3) { top: 58%; width: 38%; animation-delay: -1.4s; }
.tech-screen span:nth-child(4) { top: 74%; width: 58%; animation-delay: -2s; }

.tech-screen-left {
  left: 2%;
  transform: perspective(900px) rotateY(11deg) rotateZ(-2deg);
}

.tech-screen-right {
  right: 2%;
  top: 10%;
  transform: perspective(900px) rotateY(-12deg) rotateZ(2deg);
}

.tech-base {
  position: absolute;
  left: 22%;
  right: 14%;
  bottom: 12%;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(7, 87, 99, .72), rgba(20, 184, 176, .85), rgba(7, 87, 99, .72), transparent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 18px 34px rgba(7, 87, 99, .2);
}

.tech-base::before,
.tech-base::after {
  content: "";
  position: absolute;
  bottom: 12px;
  width: 44px;
  height: 62px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, rgba(15, 143, 149, .62), rgba(7, 87, 99, .18));
}

.tech-base::before {
  left: 46%;
  width: 58px;
  height: 76px;
  transform: translateX(-50%);
}

.tech-base::after {
  display: none;
}

.tech-chip {
  position: absolute;
  right: 8%;
  bottom: 2%;
  width: 112px;
  height: 72px;
  border: 1px solid rgba(20, 184, 176, .45);
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 42%, #14b8b0 0 11%, transparent 12%),
    radial-gradient(circle at 68% 58%, rgba(255,255,255,.7) 0 7%, transparent 8%),
    linear-gradient(135deg, rgba(255,255,255,.7), rgba(215, 243, 241, .42));
  box-shadow: 0 18px 36px rgba(7, 87, 99, .13);
  animation: techChipFloat 4.2s ease-in-out infinite;
}

.tech-chip i {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(7, 87, 99, .72);
}

.tech-chip i:nth-child(1) { top: 22px; }
.tech-chip i:nth-child(2) { top: 34px; right: 34px; }
.tech-chip i:nth-child(3) { top: 46px; left: 34px; }

@keyframes choiceEyebrowIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes choiceEyebrowGlow {
  0%, 100% {
    color: var(--green);
    text-shadow: none;
  }
  50% {
    color: var(--green-dark);
    text-shadow: 0 0 14px rgba(15, 143, 149, .24);
  }
}

@keyframes choiceEyebrowOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes choiceEyebrowDot {
  to {
    offset-distance: 100%;
  }
}

@keyframes techHaloSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes techScan {
  0%, 100% {
    opacity: .78;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes techSweep {
  0%, 18% {
    transform: translateY(0) skewY(-8deg);
  }
  68%, 100% {
    transform: translateY(360%) skewY(-8deg);
  }
}

@keyframes techLinePulse {
  0%, 100% {
    opacity: .45;
    transform: scaleX(.82);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes techChipFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .choice-copy .eyebrow,
  .choice-copy .eyebrow::before,
  .choice-copy .eyebrow::after,
  .tech-halo,
  .tech-screen::before,
  .tech-screen::after,
  .tech-screen span,
  .tech-chip,
  .fee-background span,
  .fee-card::before,
  .fee-orbit,
  .fee-orbit i,
  .home-service-menu a::before,
  .service-choice-menu a::before {
    animation: none;
  }
}

.home-service-menu a {
  min-height: clamp(126px, 15vh, 166px);
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: clamp(16px, 2vw, 24px);
  row-gap: 8px;
  padding: clamp(20px, 2.5vw, 30px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,250,255,.94));
  border: 1px solid rgba(15, 143, 149, .22);
  border-radius: 20px;
  box-shadow: 0 20px 52px rgba(7, 87, 99, .11);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-service-menu a:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 143, 149, .52);
  box-shadow: 0 18px 42px rgba(7, 87, 99, .16);
}

.home-service-menu em {
  grid-row: 1 / span 2;
  width: clamp(64px, 6.4vw, 82px);
  height: clamp(64px, 6.4vw, 82px);
  display: grid;
  place-items: center;
  align-self: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 28% 24%, #40d8d0, #087a87 70%);
  border: 3px solid rgba(255,255,255,.88);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(7, 87, 99, .22);
  font-style: normal;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 900;
  letter-spacing: .03em;
}

.home-service-menu strong {
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
}

.home-service-menu span {
  font-size: clamp(.96rem, 1.18vw, 1.08rem);
}

.instruction-section {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(22px, 3.5vw, 46px) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.instruction-copy {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(8px, 1vw, 12px);
  align-items: start;
  padding-bottom: clamp(10px, 1.3vw, 18px);
  border-bottom: 1px solid rgba(15, 143, 149, .18);
}

.instruction-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.instruction-copy .eyebrow,
.instruction-copy h2 {
  grid-column: 1;
}

.instruction-copy h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.instruction-copy p {
  grid-column: 1;
  grid-row: auto;
}

.hero-copy {
  position: relative;
  padding: clamp(24px, 4vw, 52px) 0;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: -34px;
  width: min(420px, 46vw);
  aspect-ratio: 1;
  background: url("assets/lco-logo.png") center / contain no-repeat;
  opacity: .06;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.hero-lede {
  max-width: 720px;
  color: #365663;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #14b8b0, #087a87);
  box-shadow: 0 14px 28px rgba(7, 87, 99, .22);
}

.button.secondary {
  color: var(--green-dark);
  background: #e3f7fb;
  border-color: #a8d8e4;
}

.button.ghost {
  color: var(--green-dark);
  background: var(--white);
  border-color: #a8d8e4;
}

.quick-trust {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  max-width: 620px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #3f6270;
}

.quick-trust li {
  display: flex;
  gap: 10px;
  align-items: start;
}

.quick-trust li::before,
.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: .45em;
  border-radius: 50%;
  background: var(--gold);
}

.instruction-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,.98), rgba(239,250,255,.95));
  border: 1px solid rgba(15, 143, 149, .24);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(7, 87, 99, .16);
  isolation: isolate;
}

.instruction-panel::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -110px;
  width: 320px;
  aspect-ratio: 1;
  background: url("assets/lco-logo.png") center / contain no-repeat;
  opacity: .045;
  pointer-events: none;
  z-index: -1;
}

.panel-heading {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .72fr);
  gap: 12px clamp(20px, 3vw, 48px);
  align-items: end;
  padding: clamp(22px, 2.6vw, 32px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 87, 99, .98), rgba(15, 143, 149, .9));
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(7, 87, 99, .2);
}

.panel-heading > span {
  color: #dff7fb;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel-heading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  line-height: 1;
}

.panel-heading p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 1rem;
}

.form-status-row {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.form-status-row span {
  min-height: 32px;
  display: grid;
  place-items: center;
  color: #0b5964;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-section {
  display: grid;
  grid-column: span 4;
  gap: 16px;
  margin: 0;
  padding: clamp(18px, 2vw, 24px);
  min-width: 0;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15, 143, 149, .18);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(7, 87, 99, .06);
}

.form-section.feature-section {
  grid-column: 1 / span 4;
  background:
    linear-gradient(135deg, rgba(215, 243, 241, .72), rgba(255,255,255,.88));
  border-color: rgba(15, 143, 149, .28);
}

.form-section.feature-section select {
  min-height: 72px;
  font-weight: 900;
}

.form-section legend {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px 8px 0;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-section legend span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 24%, #45dcd4, #087a87 72%);
  border-radius: 50%;
  box-shadow: 0 9px 18px rgba(7, 87, 99, .2);
  letter-spacing: 0;
}

label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #243e49;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .01em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--ink);
  background: #f8fdff;
  border: 1px solid #aecad8;
  border-radius: 12px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  font-size: .98rem;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 143, 149, .16);
}

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

.preview-label {
  grid-column: 9 / -1;
  grid-row: 3 / span 2;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  padding: clamp(18px, 2vw, 24px);
  background: #eefaff;
  border: 1px solid rgba(15, 143, 149, .18);
  border-radius: 16px;
}

#instructionPreview {
  min-height: 520px;
  height: 100%;
  color: #203a45;
  background: #ffffff;
  border-left: 5px solid var(--green);
}

.instruction-panel .form-section:nth-of-type(2) {
  grid-column: 5 / -1;
}

.instruction-panel .form-section:nth-of-type(3) {
  grid-column: 1 / span 8;
}

.instruction-panel .form-section:nth-of-type(4) {
  grid-column: 1 / span 8;
}

.instruction-panel .form-actions {
  grid-column: 1 / span 8;
  align-self: start;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(15, 143, 149, .14);
  border-radius: 16px;
}

.instruction-panel .form-actions .button {
  min-width: min(240px, 100%);
  min-height: 56px;
  padding: 0 22px;
  font-size: .98rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.service-strip article {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.service-strip article:last-child {
  border-right: 0;
}

.service-strip span,
.process-list span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green-dark);
  background: var(--gold-soft);
  border-radius: 50%;
  font-weight: 900;
}

.service-strip p,
.process-list p,
.section-copy p,
.contact-copy p {
  color: var(--muted);
}

.service-strip article a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.page-main {
  background: var(--paper);
}

.simple-hero,
.landing-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 94px) 0 clamp(36px, 6vw, 72px);
}

.simple-hero {
  display: grid;
  gap: 22px;
}

.simple-hero h1,
.landing-hero h1 {
  max-width: 920px;
  margin-bottom: 14px;
}

.simple-hero p,
.landing-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.12rem;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.landing-card,
.cta-band,
.service-menu {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.landing-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.landing-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.landing-card ul,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-card li,
.plain-list li {
  display: flex;
  gap: 10px;
  align-items: start;
  color: #315663;
  font-weight: 700;
}

.landing-card li::before,
.plain-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: .48em;
  border-radius: 50%;
  background: var(--gold);
}

.landing-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.services-choice-page .landing-section {
  padding: clamp(14px, 2vw, 24px) 0 clamp(24px, 4vw, 40px);
}

.services-choice-page .service-choice-menu {
  gap: clamp(12px, 1.4vw, 18px);
}

.services-choice-page .service-choice-menu a {
  min-height: clamp(126px, 16vh, 154px);
  padding: clamp(16px, 1.8vw, 22px);
}

.services-choice-page .service-choice-menu em {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

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

.service-menu a {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-menu a:nth-child(3n) {
  border-right: 0;
}

.service-menu strong {
  color: var(--green-dark);
}

.service-menu span {
  color: var(--muted);
  font-size: .92rem;
}

.service-choice-menu {
  counter-reset: services;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-choice-menu a {
  position: relative;
  grid-column: span 2;
  min-height: 188px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  align-content: start;
  column-gap: 18px;
  row-gap: 8px;
  padding: clamp(22px, 2.4vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(15, 143, 149, .22);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(236,250,255,.92));
  box-shadow: 0 18px 46px rgba(7, 87, 99, .1);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-choice-menu a::before {
  content: "";
  position: absolute;
  inset: auto 18px 14px auto;
  width: 116px;
  height: 116px;
  border: 2px solid rgba(8, 122, 135, .34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(20, 184, 176, .34), rgba(20, 184, 176, .12) 31%, transparent 66%),
    conic-gradient(from 34deg, transparent 0 18%, rgba(7, 87, 99, .18) 22%, transparent 34%, rgba(20, 184, 176, .24) 52%, transparent 68% 100%);
  box-shadow:
    inset 0 0 28px rgba(20, 184, 176, .16),
    0 12px 30px rgba(7, 87, 99, .12);
  transform: translate(22px, 24px);
  animation: serviceCardCue 5.5s ease-in-out infinite;
  transition: transform .18s ease, opacity .18s ease;
}

.service-choice-menu a::after {
  content: "Start instruction";
  grid-column: 2;
  align-self: end;
  justify-self: start;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #14b8b0, #087a87);
  box-shadow: 0 12px 24px rgba(7, 87, 99, .16);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-choice-menu a:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 143, 149, .52);
  box-shadow: 0 28px 70px rgba(7, 87, 99, .17);
}

.service-choice-menu a:hover::before {
  opacity: .9;
  transform: translate(12px, 12px) scale(1.12);
}

.service-choice-menu a:nth-child(3n) {
  border-right: 1px solid rgba(15, 143, 149, .22);
}

.service-choice-menu em {
  grid-row: 1 / span 3;
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  align-self: start;
  color: #ffffff;
  background: radial-gradient(circle at 28% 24%, #40d8d0, #087a87 72%);
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(7, 87, 99, .2);
  font-style: normal;
  font-weight: 950;
}

.service-choice-menu strong,
.service-choice-menu span,
.service-choice-menu small {
  position: relative;
  z-index: 1;
}

.service-choice-menu strong {
  color: var(--green-dark);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.service-choice-menu span {
  color: #355f6c;
  font-size: .98rem;
}

.service-choice-menu small {
  display: none;
}

.service-choice-menu a:nth-child(7) {
  grid-column: 2 / span 2;
}

.service-choice-menu a:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-choice-menu a:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-choice-menu a:nth-child(2)::before { animation-delay: -.8s; }
.service-choice-menu a:nth-child(3)::before { animation-delay: -1.6s; }
.service-choice-menu a:nth-child(4)::before { animation-delay: -2.4s; }
.service-choice-menu a:nth-child(5)::before { animation-delay: -3.2s; }
.service-choice-menu a:nth-child(6)::before { animation-delay: -4s; }
.service-choice-menu a:nth-child(7)::before { animation-delay: -4.8s; }

@keyframes serviceCardCue {
  0%, 100% {
    opacity: .62;
    transform: translate(22px, 24px) scale(1);
  }
  50% {
    opacity: .96;
    transform: translate(12px, 12px) scale(1.08);
  }
}

.home-service-menu {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.home-service-menu a {
  position: relative;
  grid-column: span 2;
  min-height: clamp(86px, 10.5vh, 112px);
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 14px;
  row-gap: 5px;
  padding: clamp(13px, 1.6vw, 18px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,250,255,.94));
  border: 1px solid rgba(15, 143, 149, .22);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(7, 87, 99, .09);
  overflow: hidden;
}

.home-service-menu a::before {
  content: "";
  position: absolute;
  inset: auto 16px 12px auto;
  width: 104px;
  height: 104px;
  border: 2px solid rgba(8, 122, 135, .34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(20, 184, 176, .34), rgba(20, 184, 176, .12) 31%, transparent 66%),
    conic-gradient(from 34deg, transparent 0 18%, rgba(7, 87, 99, .18) 22%, transparent 34%, rgba(20, 184, 176, .24) 52%, transparent 68% 100%);
  box-shadow:
    inset 0 0 28px rgba(20, 184, 176, .16),
    0 12px 30px rgba(7, 87, 99, .12);
  opacity: .62;
  transform: translate(22px, 24px) scale(1);
  animation: serviceCardCue 5.5s ease-in-out infinite;
  transition: transform .18s ease, opacity .18s ease;
}

.home-service-menu a:hover::before {
  opacity: .96;
  transform: translate(12px, 12px) scale(1.08);
}

.home-service-menu a:nth-child(2)::before { animation-delay: -.8s; }
.home-service-menu a:nth-child(3)::before { animation-delay: -1.6s; }
.home-service-menu a:nth-child(4)::before { animation-delay: -2.4s; }
.home-service-menu a:nth-child(5)::before { animation-delay: -3.2s; }

.home-service-menu em,
.home-service-menu strong,
.home-service-menu span {
  position: relative;
  z-index: 1;
}

.home-service-menu a:nth-child(3n) {
  border-right: 1px solid rgba(15, 143, 149, .22);
}

.home-service-menu a:nth-child(7) {
  grid-column: 1 / -1;
  width: min(430px, 100%);
  justify-self: center;
}

.home-service-menu a:nth-child(4) {
  grid-column: 2 / span 2;
}

.home-service-menu a:nth-child(5) {
  grid-column: 4 / span 2;
}

.home-service-menu strong {
  align-self: end;
}

.home-service-menu span {
  align-self: start;
}

/* Raised 3D treatment for service buttons; keeps the cards clean without animated circles. */
.home-service-menu a,
.service-choice-menu a {
  border: 1px solid rgba(8, 122, 135, .26);
  border-bottom: 5px solid rgba(7, 87, 99, .34);
  background:
    linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(246,253,255,.98) 44%, rgba(218,241,248,.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 12px 12px 28px rgba(255,255,255,.72),
    inset -16px -18px 30px rgba(7, 87, 99, .08),
    0 8px 0 rgba(7, 87, 99, .08),
    0 24px 46px rgba(7, 87, 99, .16);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.home-service-menu a::before,
.service-choice-menu a::before {
  content: none;
  display: none;
}

.home-service-menu a:hover,
.service-choice-menu a:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 122, 135, .42);
  border-bottom-color: rgba(7, 87, 99, .5);
  background:
    linear-gradient(145deg, #ffffff 0%, #f4fdff 42%, #d0edf4 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 10px 10px 24px rgba(255,255,255,.72),
    inset -18px -20px 34px rgba(7, 87, 99, .1),
    0 12px 0 rgba(7, 87, 99, .1),
    0 34px 64px rgba(7, 87, 99, .2);
}

/* Final mobile navigation override. Keep this at the end so older mobile
   header rules cannot restore the horizontal button strip on phones. */
@media (max-width: 680px) {
  :root {
    --header-height: 104px;
    --anchor-offset: 116px;
  }

  .site-header {
    grid-template-columns: 72px minmax(0, 1fr) 46px;
    grid-template-rows: auto;
    align-items: center;
    gap: 8px;
    overflow: visible;
    padding: 8px 12px 10px;
  }

  .brand img {
    grid-column: 1;
    grid-row: 1;
    width: 72px;
    height: 46px;
  }

  .brand span {
    grid-column: 2;
    grid-row: 1;
    padding-right: 0;
    font-size: clamp(1.42rem, 7vw, 2.1rem);
    line-height: .96;
    white-space: normal;
  }

  .site-header::after,
  .header-call {
    display: none;
  }

  .main-nav-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid rgba(15, 143, 149, .28);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 24px rgba(7, 87, 99, .16);
    cursor: pointer;
  }

  .main-nav-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #075763;
    transition: transform .18s ease, opacity .18s ease;
  }

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

  .site-header.is-open .main-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    z-index: 1001;
    display: none;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    width: auto;
    max-height: calc(100vh - 116px);
    padding: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(15, 143, 149, .22);
    background: rgba(234, 247, 253, .98);
    box-shadow: 0 22px 46px rgba(7, 87, 99, .22);
    scrollbar-width: thin;
  }

  .site-header.is-open .nav {
    display: grid;
  }

  .nav a,
  .nav .mobile-phone-link {
    order: initial;
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    justify-content: center;
    padding: 0 12px;
    font-size: .72rem;
  }
}

@media (max-width: 380px) {
  :root {
    --header-height: 98px;
    --anchor-offset: 110px;
  }

  .site-header {
    grid-template-columns: 64px minmax(0, 1fr) 44px;
  }

  .brand img {
    width: 64px;
    height: 42px;
  }

  .brand span {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 104px;
    --anchor-offset: 116px;
  }

  .site-header {
    grid-template-columns: 74px minmax(0, 1fr) 46px;
    grid-template-rows: auto;
    align-items: center;
    overflow: visible;
  }

  .brand img {
    grid-column: 1;
    grid-row: 1;
  }

  .brand span {
    grid-column: 2;
    grid-row: 1;
    padding-right: 4px;
  }

  .main-nav-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid rgba(15, 143, 149, .24);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 24px rgba(7, 87, 99, .14);
    cursor: pointer;
  }

  .main-nav-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #075763;
    transition: transform .18s ease, opacity .18s ease;
  }

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

  .site-header.is-open .main-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

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

  .header-call {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    z-index: 1001;
    display: none;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: calc(100vh - 116px);
    padding: 12px;
    overflow-y: auto;
    border: 1px solid rgba(15, 143, 149, .22);
    background: rgba(234, 247, 253, .98);
    box-shadow: 0 22px 46px rgba(7, 87, 99, .22);
  }

  .site-header.is-open .nav {
    display: grid;
  }

  .nav a,
  .nav .mobile-phone-link {
    order: initial;
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    justify-content: center;
    padding: 0 12px;
    font-size: .72rem;
  }
}

@media (max-width: 380px) {
  :root {
    --header-height: 98px;
    --anchor-offset: 110px;
  }
}

.home-service-menu a:active,
.service-choice-menu a:active {
  transform: translateY(1px);
  border-bottom-width: 3px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.94),
    inset 0 12px 28px rgba(7, 87, 99, .08),
    0 4px 0 rgba(7, 87, 99, .08),
    0 16px 34px rgba(7, 87, 99, .14);
}

.home-service-menu em,
.service-choice-menu em {
  box-shadow:
    inset 0 3px 4px rgba(255,255,255,.42),
    inset 0 -10px 18px rgba(3, 64, 76, .28),
    0 8px 0 rgba(7, 87, 99, .12),
    0 18px 28px rgba(7, 87, 99, .2);
}

.service-choice-menu a::after {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    0 5px 0 rgba(7, 87, 99, .14),
    0 14px 24px rgba(7, 87, 99, .18);
}

.cta-band {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(26px, 5vw, 56px) auto clamp(54px, 8vw, 100px);
  padding: clamp(22px, 4vw, 34px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band div {
  max-width: 680px;
}

.cta-band h2 {
  margin-bottom: 6px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.cta-band p {
  margin-bottom: 0;
  color: var(--muted);
}

.small-note {
  color: var(--muted);
  font-size: .94rem;
}

.fee-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(22px, 3.2vw, 40px) 0 clamp(10px, 1.6vw, 18px);
}

.fee-hero h1 {
  max-width: 860px;
  margin-bottom: 8px;
  font-size: clamp(2.5rem, 5.1vw, 5rem);
}

.fee-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 0;
}

.fee-section {
  position: relative;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(10px, 1.4vw, 18px) 0 clamp(20px, 3vw, 34px);
  overflow: hidden;
}

.fee-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .24;
}

.fee-background span {
  position: absolute;
  border: 2px solid rgba(8, 122, 135, .22);
  border-radius: 50%;
  box-shadow: inset 0 0 44px rgba(20, 184, 176, .08);
  animation: feeFloat 9s ease-in-out infinite;
}

.fee-background span:nth-child(1) {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 30px;
}

.fee-background span:nth-child(2) {
  width: 260px;
  height: 260px;
  right: 4%;
  top: -24px;
  animation-delay: -2s;
}

.fee-background span:nth-child(3) {
  width: 520px;
  height: 520px;
  right: 22%;
  bottom: -280px;
  animation-delay: -4s;
}

.fee-background span:nth-child(4) {
  width: 120px;
  height: 120px;
  left: 46%;
  top: 120px;
  animation-delay: -1s;
}

.fee-background span:nth-child(5) {
  width: 180px;
  height: 180px;
  left: 12%;
  bottom: 22px;
  animation-delay: -6s;
}

.fee-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

.fee-card {
  position: relative;
  grid-column: span 2;
  min-height: clamp(178px, 22vh, 220px);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: clamp(16px, 2vw, 22px);
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(255,255,255,.98), rgba(239,250,255,.94));
  border: 2px solid rgba(15, 143, 149, .28);
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(7, 87, 99, .12);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fee-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(7, 16, 24, .72), transparent);
  transform: translateX(-28%);
  opacity: .42;
  animation: feePulse 3.6s ease-in-out infinite;
}

.fee-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 143, 149, .55);
  box-shadow: 0 34px 84px rgba(7, 87, 99, .18);
}

.fee-card:focus-visible {
  outline: 4px solid rgba(20, 184, 176, .32);
  outline-offset: 5px;
}

.fee-card.is-featured {
  border-color: rgba(15, 143, 149, .48);
}

.fee-card:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.fee-card:last-child {
  grid-column: 4 / span 2;
}

.fee-orbit {
  position: relative;
  width: 60px;
  height: 70px;
  border: 1px solid rgba(15, 143, 149, .3);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(220, 246, 250, .9));
  box-shadow: 0 18px 34px rgba(7, 87, 99, .13);
  animation: feeOrbitRing 5s linear infinite;
}

.fee-orbit::before,
.fee-orbit::after {
  content: "";
  position: absolute;
}

.fee-orbit::before {
  top: -1px;
  right: -1px;
  width: 18px;
  height: 18px;
  border-left: 1px solid rgba(15, 143, 149, .28);
  border-bottom: 1px solid rgba(15, 143, 149, .28);
  border-radius: 0 14px 0 10px;
  background: linear-gradient(135deg, rgba(20, 184, 176, .32), rgba(255,255,255,.9));
}

.fee-orbit::after {
  left: 14px;
  right: 14px;
  top: 21px;
  height: 31px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(to bottom, rgba(7, 16, 24, .82) 0 3px, transparent 3px 9px);
  opacity: .72;
}

.fee-orbit i {
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 12px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 16, 24, .08), #071018, rgba(7, 16, 24, .08));
  box-shadow: 0 0 14px rgba(7, 16, 24, .28);
  animation: feeOrbitDot 2.8s linear infinite;
}

.fee-card h2 {
  margin: 0;
  color: var(--green);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.03rem, 1.35vw, 1.34rem);
}

.fee-card p {
  max-width: 310px;
  margin: 0;
  color: #0b1730;
  font-weight: 800;
  font-size: clamp(.84rem, 1vw, .96rem);
  line-height: 1.34;
}

.fee-card strong {
  color: var(--green-dark);
  font-weight: 950;
}

@keyframes feeFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -18px, 0) scale(1.04);
  }
}

@keyframes feePulse {
  0%, 100% {
    transform: translateX(-28%);
    opacity: .28;
  }
  50% {
    transform: translateX(28%);
    opacity: .62;
  }
}

@keyframes feeOrbitRing {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1.5deg);
  }
}

@keyframes feeOrbitDot {
  0%, 100% {
    transform: translateX(-9px);
    opacity: .38;
  }
  50% {
    transform: translateX(9px);
    opacity: .95;
  }
}

.process-section,
.documents-section,
.contact-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 100px) 0;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.section-copy {
  max-width: 500px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 18px;
  background: #f4fbfe;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.process-list strong {
  display: block;
  font-size: 1.08rem;
}

.process-list p {
  margin-bottom: 0;
}

.documents-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #315663;
  font-weight: 700;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: start;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.contact-image {
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.contact-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

address {
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 48px);
  color: #dff7fb;
  background: var(--green-dark);
  font-size: .9rem;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 214px;
    --anchor-offset: 228px;
  }

  .site-header {
    grid-template-columns: clamp(150px, 24vw, 220px) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    align-items: center;
    row-gap: 8px;
  }

  .brand {
    font-size: clamp(1.65rem, 4vw, 2.7rem);
  }

  .brand img {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: clamp(150px, 22vw, 220px);
    height: clamp(72px, 11vw, 106px);
  }

  .brand span {
    grid-column: 2;
    grid-row: 1;
    font-size: clamp(2rem, 5.2vw, 3.5rem);
    white-space: normal;
  }

  .site-header::after {
    grid-column: 2;
    grid-row: 2;
    font-size: clamp(.95rem, 2.2vw, 1.22rem);
    white-space: normal;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .header-call {
    grid-column: 1 / -1;
    grid-row: 4;
    justify-self: start;
  }

  .hero,
  .instruction-section,
  .process-section,
  .documents-section,
  .contact-section,
  .landing-hero,
  .two-column {
    grid-template-columns: 1fr;
  }

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

  .instruction-copy,
  .panel-heading {
    grid-template-columns: 1fr;
  }

  .instruction-copy p,
  .panel-heading > span,
  .panel-heading strong,
  .panel-heading p,
  .form-status-row {
    grid-column: 1;
    grid-row: auto;
  }

  .panel-heading,
  .form-section,
  .form-section.feature-section,
  .instruction-panel .form-section:nth-of-type(2),
  .instruction-panel .form-section:nth-of-type(3),
  .instruction-panel .form-section:nth-of-type(4),
  .instruction-panel .form-actions,
  .preview-label {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  #instructionPreview {
    min-height: 260px;
  }

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

  .choice-landing {
    width: min(100% - 36px, 1360px);
  }

  .choice-copy {
    padding-right: clamp(270px, 35vw, 380px);
  }

  .tech-screen-visual {
    width: clamp(270px, 34vw, 360px);
    min-height: 230px;
  }

  .home-service-menu a {
    min-height: clamp(112px, 13vh, 142px);
  }

  .home-service-menu em {
    width: clamp(58px, 7vw, 72px);
    height: clamp(58px, 7vw, 72px);
  }

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

  .fee-card,
  .fee-card:nth-last-child(2),
  .fee-card:last-child {
    grid-column: auto;
  }

  .service-strip article:nth-child(2) {
    border-right: 0;
  }

  .service-menu a:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .service-menu a:nth-child(2n) {
    border-right: 0;
  }

  .home-service-menu a,
  .home-service-menu a:nth-child(2n),
  .home-service-menu a:nth-child(3n) {
    border: 1px solid rgba(15, 143, 149, .22);
  }

  .home-service-menu a:nth-child(4) {
    grid-column: auto;
  }

  .home-service-menu a:nth-child(5) {
    grid-column: 1 / -1;
    width: min(430px, 100%);
    justify-self: center;
  }

  .service-choice-menu a:nth-child(4) {
    grid-column: auto;
  }

  .service-choice-menu a:nth-child(5) {
    grid-column: 1 / -1;
    width: min(540px, 100%);
    justify-self: center;
  }

  .service-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 136px;
    --anchor-offset: 146px;
  }

  .site-header {
    grid-template-columns: 74px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 7px 9px;
    padding: 8px 12px 10px;
  }

  .brand {
    font-size: clamp(1.35rem, 7vw, 2.1rem);
    letter-spacing: 0;
  }

  .brand img {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 74px;
    height: 48px;
  }

  .brand span {
    grid-column: 2 / -1;
    grid-row: 1;
    font-size: clamp(1.55rem, 7.6vw, 2.25rem);
    line-height: .96;
    white-space: normal;
  }

  .site-header::after {
    display: none;
  }

  .nav {
    grid-column: 1 / 3;
    grid-row: 2;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav a[href*="instruction-form"] {
    order: -2;
  }

  .nav a[href*="services"] {
    order: -1;
  }

  .header-call {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }

  .nav a,
  .header-call {
    width: auto;
    min-height: 36px;
    padding: 0 10px;
    font-size: .68rem;
  }

  .button,
  .hero-actions .button,
  .contact-actions .button,
  .form-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .hero {
    width: min(100% - 24px, 1320px);
    padding-top: 22px;
  }

  .form-grid,
  .service-strip,
  .service-menu,
  .fee-grid {
    grid-template-columns: 1fr;
  }

  .choice-landing {
    width: min(100% - 24px, 1360px);
    min-height: auto;
    padding: 16px 0 24px;
    gap: 14px;
  }

  .choice-copy {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-right: clamp(200px, 44vw, 280px);
    padding-bottom: 12px;
  }

  .choice-copy .eyebrow,
  .choice-copy h1,
  .choice-copy p:not(.eyebrow) {
    grid-column: 1;
  }

  .tech-screen-visual {
    display: block;
    width: clamp(210px, 42vw, 280px);
    min-height: clamp(170px, 34vw, 230px);
    top: 46%;
  }

  .choice-copy .eyebrow {
    padding: 7px 15px;
    font-size: .66rem;
  }

  .choice-copy h1 {
    margin-bottom: 0;
    font-size: clamp(2rem, 10.8vw, 2.85rem);
    line-height: .98;
  }

  .choice-copy p:not(.eyebrow) {
    margin-bottom: 0;
    font-size: .94rem;
    line-height: 1.45;
  }

  .home-service-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-service-menu a {
    min-height: 112px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    align-content: center;
    gap: 6px;
    padding: 12px 10px;
    text-align: center;
  }

  .home-service-menu em {
    grid-row: auto;
    width: 44px;
    height: 44px;
    font-size: .8rem;
  }

  .home-service-menu strong {
    font-size: .92rem;
    line-height: 1.16;
  }

  .home-service-menu span {
    font-size: .78rem;
    line-height: 1.3;
  }

  .instruction-panel {
    grid-template-columns: 1fr;
  }

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

  input,
  select,
  textarea {
    min-height: 56px;
  }

  .service-strip article,
  .service-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip article:last-child {
    border-bottom: 0;
  }

  .service-menu a,
  .service-menu a:nth-child(2n),
  .service-menu a:nth-child(3n) {
    border-right: 0;
  }

  .home-service-menu a,
  .home-service-menu a:nth-child(2n),
  .home-service-menu a:nth-child(3n),
  .home-service-menu a:nth-child(4),
  .home-service-menu a:nth-child(5) {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
    border: 1px solid rgba(15, 143, 149, .22);
  }

  .home-service-menu a:nth-child(5) {
    grid-column: 1 / -1;
    width: min(100%, 420px);
    justify-self: center;
  }

  .service-choice-menu a,
  .service-choice-menu a:nth-child(4),
  .service-choice-menu a:nth-child(5) {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .service-menu a:last-child {
    border-bottom: 0;
  }

  .home-service-menu a:last-child {
    border-bottom: 1px solid rgba(15, 143, 149, .22);
  }

  .service-choice-menu a:last-child {
    border-bottom: 1px solid rgba(15, 143, 149, .22);
  }

  .process-section,
  .documents-section,
  .contact-section,
  .choice-landing,
  .instruction-section,
  .simple-hero,
  .landing-hero,
  .landing-section,
  .fee-hero,
  .fee-section,
  .cta-band {
    width: min(100% - 24px, var(--max));
  }

  .fee-card {
    min-height: 210px;
  }
}

@media (max-width: 520px) {
  .choice-copy {
    padding-right: 0;
  }

  .tech-screen-visual {
    display: none;
  }
}

@media (max-width: 380px) {
  :root {
    --header-height: 128px;
    --anchor-offset: 138px;
  }

  .site-header {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 6px;
    padding: 7px 10px 9px;
  }

  .brand img {
    width: 64px;
    height: 42px;
  }

  .brand span {
    font-size: clamp(1.35rem, 7.3vw, 1.85rem);
  }

  .nav a,
  .header-call {
    min-height: 34px;
    padding: 0 8px;
    font-size: .62rem;
  }

  .home-service-menu a {
    min-height: 108px;
  }
}

.home-service-menu a,
.home-service-menu a:nth-child(2n),
.home-service-menu a:nth-child(3n),
.home-service-menu a:nth-child(4),
.home-service-menu a:nth-child(5),
.service-choice-menu a,
.service-choice-menu a:nth-child(4),
.service-choice-menu a:nth-child(5) {
  border: 1px solid rgba(8, 122, 135, .26);
  border-bottom: 5px solid rgba(7, 87, 99, .34);
  background:
    linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(246,253,255,.98) 44%, rgba(218,241,248,.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 12px 12px 28px rgba(255,255,255,.72),
    inset -16px -18px 30px rgba(7, 87, 99, .08),
    0 8px 0 rgba(7, 87, 99, .08),
    0 24px 46px rgba(7, 87, 99, .16);
}

.home-service-menu a::before,
.service-choice-menu a::before {
  content: none;
  display: none;
}

.home-service-menu a:hover,
.service-choice-menu a:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 122, 135, .42);
  border-bottom-color: rgba(7, 87, 99, .5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 10px 10px 24px rgba(255,255,255,.72),
    inset -18px -20px 34px rgba(7, 87, 99, .1),
    0 12px 0 rgba(7, 87, 99, .1),
    0 34px 64px rgba(7, 87, 99, .2);
}

/* Absolute final mobile navigation override. This intentionally sits at EOF so
   phones cannot fall back to the older horizontal button strip. */
@media (max-width: 680px) {
  :root {
    --header-height: 104px;
    --anchor-offset: 116px;
  }

  .site-header {
    grid-template-columns: 72px minmax(0, 1fr) 46px;
    grid-template-rows: auto;
    align-items: center;
    gap: 8px;
    overflow: visible;
    padding: 8px 12px 10px;
  }

  .brand img {
    grid-column: 1;
    grid-row: 1;
    width: 72px;
    height: 46px;
  }

  .brand span {
    grid-column: 2;
    grid-row: 1;
    padding-right: 0;
    font-size: clamp(1.42rem, 7vw, 2.1rem);
    line-height: .96;
    white-space: normal;
  }

  .site-header::after,
  .header-call {
    display: none;
  }

  .main-nav-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid rgba(15, 143, 149, .28);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 24px rgba(7, 87, 99, .16);
    cursor: pointer;
  }

  .main-nav-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #075763;
    transition: transform .18s ease, opacity .18s ease;
  }

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

  .site-header.is-open .main-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    z-index: 1001;
    display: none;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    width: auto;
    max-height: calc(100vh - 116px);
    padding: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(15, 143, 149, .22);
    background: rgba(234, 247, 253, .98);
    box-shadow: 0 22px 46px rgba(7, 87, 99, .22);
    scrollbar-width: thin;
  }

  .site-header.is-open .nav {
    display: grid;
  }

  .nav a,
  .nav .mobile-phone-link {
    order: initial;
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    justify-content: center;
    padding: 0 12px;
    font-size: .72rem;
  }
}

@media (max-width: 380px) {
  :root {
    --header-height: 98px;
    --anchor-offset: 110px;
  }

  .site-header {
    grid-template-columns: 64px minmax(0, 1fr) 44px;
  }

  .brand img {
    width: 64px;
    height: 42px;
  }

  .brand span {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
  }
}
