:root {
  --primary-blue: #124B81;
  --secondary-blue: #0B3256;
  --navy-950: #0B3256;
  --navy-900: #0B3256;
  --navy-850: #124B81;
  --charcoal: #19212a;
  --ink: #17202b;
  --muted: #5b6878;
  --line: #dbe3ec;
  --paper: #ffffff;
  --soft: #f4f8fc;
  --soft-warm: #fff9e8;
  --accent: #F6C135;
  --accent-dark: #9a6a00;
  --teal: #124B81;
  --teal-soft: #e5f0f8;
  --gold-soft: #fff4d4;
  --shadow: 0 22px 70px rgba(11, 50, 86, 0.18);
  --shadow-soft: 0 14px 36px rgba(11, 50, 86, 0.12);
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

/* Apply to all elements targeted by an anchor link */
:target {
  scroll-margin-top: 250px; /* Match this to the exact height of your fixed header */
}


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

body::selection {
  background: var(--accent);
  color: var(--navy-950);
}

img,
svg {
  display: block;
}

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

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

button {
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 50, 86, 0.92);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  color: var(--paper);
  font-weight: 800;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 0.32rem;
  background: var(--paper);
  border: 1px solid rgba(246, 193, 53, 0.34);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(11, 50, 86, 0.24);
}

.brand__text {
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a,
.header__phone {
  transition: color 180ms ease;
}

.nav a:hover,
.header__phone:hover {
  color: var(--paper);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header__phone {
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 800;
  min-width: max-content;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(246, 193, 53, 0.6);
  outline-offset: 3px;
}

.button--primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, #f9d873, var(--accent));
  box-shadow: 0 16px 34px rgba(246, 193, 53, 0.26);
}

.button--primary:hover {
  background: linear-gradient(135deg, #ffe28b, #F6C135);
}

.button--secondary {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button--small {
  min-height: 42px;
  padding: 0.72rem 1rem;
  color: var(--navy-950);
  background: var(--paper);
  box-shadow: none;
  font-size: 0.9rem;
}

.button--full {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 78svh;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(1.6rem, 3vw, 2.4rem);
  color: var(--paper);
  background: var(--navy-950);
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 50, 86, 0.96) 0%, rgba(11, 50, 86, 0.9) 35%, rgba(18, 75, 129, 0.58) 70%, rgba(18, 75, 129, 0.32) 100%),
    linear-gradient(180deg, rgba(11, 50, 86, 0.32) 0%, rgba(11, 50, 86, 0.1) 48%, rgba(11, 50, 86, 0.78) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 460px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--accent-dark);
}

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

h1,
h2,
h3 {
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.45rem, 4.1vw, 4.25rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 930;
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 850;
}

.hero__subhead {
  max-width: 720px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.45rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 0.42rem 0.54rem 0.42rem 1.22rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.trust-list li::before {
  position: absolute;
  top: 50%;
  left: 0.52rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.lead-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.lead-card--hero {
  padding: clamp(0.75rem, 1vw, 0.85rem);
  backdrop-filter: blur(18px);
}

.lead-card--final {
  padding: clamp(1.2rem, 2vw, 1.75rem);
}

.lead-card__header {
  margin-bottom: 1rem;
}

.lead-card--hero .lead-card__header {
  margin-bottom: 0.55rem;
  padding: 0.5rem 0.45rem 0;
}

.lead-card__tag {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.34rem 0.62rem;
  color: var(--accent-dark);
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-card__header h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
}

.lead-card--hero .lead-card__header h2 {
  font-size: clamp(1.35rem, 1.9vw, 1.78rem);
}

.lead-card .hs-form-frame {
  width: 100%;
  min-height: 0;
  margin: 0;
}

.lead-card .hs-form-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.lead-card__header p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: #263140;
  font-size: 0.86rem;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  padding: 0.72rem 0.84rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #aebccc;
}

.field [aria-invalid="true"] {
  border-color: #c93625;
  box-shadow: 0 0 0 4px rgba(201, 54, 37, 0.12);
}

.lead-form .button {
  margin-top: 1rem;
}

.form-status {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: #0d6f4f;
}

.form-status[data-state="error"] {
  color: #a92b1c;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.problem.section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section--light {
  background: var(--soft);
}

.section--dark {
  color: var(--paper);
  background:
    radial-gradient(circle at top right, rgba(246, 193, 53, 0.14), transparent 34rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-850));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}

.split h2 {
  margin-bottom: 0;
}

.problem__copy {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.25vw, 1.16rem);
}

.problem__copy p:last-child {
  margin-bottom: 0;
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.signal-card,
.service-card,
.build-card,
.risk-card,
.faq details {
  background: var(--paper);
  border: 1px solid rgba(219, 227, 236, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.signal-card {
  padding: 1.35rem;
}

.signal-card h3 {
  margin-bottom: 0.5rem;
}

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

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  place-items: center;
  background: var(--gold-soft);
  border-radius: 14px;
}

.icon::before,
.icon::after {
  content: "";
}

.icon--search::before {
  width: 15px;
  height: 15px;
  border: 3px solid var(--accent-dark);
  border-radius: 50%;
}

.icon--search::after {
  width: 11px;
  height: 3px;
  margin-top: -2px;
  margin-left: 18px;
  background: var(--accent-dark);
  border-radius: 999px;
  transform: rotate(45deg);
}

.icon--star::before {
  width: 22px;
  height: 22px;
  background: var(--accent-dark);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 80% 92%, 50% 70%, 20% 92%, 32% 56%, 2% 35%, 39% 35%);
}

.icon--phone::before {
  width: 24px;
  height: 28px;
  border: 3px solid var(--accent-dark);
  border-radius: 7px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0.8rem;
}

.section-heading p {
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
}

.service-card::after {
  position: absolute;
  right: -4.5rem;
  bottom: -5.5rem;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(18, 75, 129, 0.14), transparent 68%);
  content: "";
}

.service-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 1.25rem;
  place-items: center;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 16px;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.video-work {
  background: var(--paper);
}

.video-tabs {
  display: grid;
  gap: 1rem;
}

.video-tabs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 0.45rem;
  background: var(--soft);
  border: 1px solid rgba(219, 227, 236, 0.86);
  border-radius: 999px;
}

.video-tab {
  min-height: 42px;
  padding: 0.75rem 1rem;
  color: var(--secondary-blue);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.video-tab:hover,
.video-tab.is-active {
  color: var(--paper);
  background: var(--secondary-blue);
}

.video-tab.is-active {
  box-shadow: 0 10px 24px rgba(11, 50, 86, 0.18);
}

.video-tabs__panels {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(219, 227, 236, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.video-panel {
  margin: 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-950);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.work-system {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5.25rem);
  align-items: start;
}

.work-system__copy {
  position: sticky;
  top: 112px;
}

.work-system__copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.needle-list {
  display: grid;
  gap: 0.8rem;
}

.needle-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.needle-item span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--navy-950);
  background: #fff;
  border-radius: 16px;
  font-weight: 950;
}

.needle-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.build-card {
  overflow: hidden;
  min-height: 280px;
  padding: 1.25rem;
}

.build-card--wide {
  grid-column: span 2;
}

.build-card h3 {
  margin: 1rem 0 0.55rem;
}

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

.mock-browser {
  display: flex;
  gap: 0.38rem;
  height: 38px;
  align-items: center;
  padding-inline: 1rem;
  background: var(--navy-900);
  border-radius: 16px 16px 0 0;
}

.mock-browser span {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

.mock-hero {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1rem;
  min-height: 170px;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fbff, #fff3e8);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.mock-hero div:first-child {
  background:
    linear-gradient(#19212a 0 0) 0 12px / 70% 16px no-repeat,
    linear-gradient(#d2dbe5 0 0) 0 44px / 88% 9px no-repeat,
    linear-gradient(#d2dbe5 0 0) 0 64px / 60% 9px no-repeat,
    linear-gradient(var(--accent) 0 0) 0 104px / 118px 36px no-repeat;
  border-radius: 8px;
}

.mock-hero div:last-child {
  background:
    radial-gradient(circle at 72% 28%, var(--teal) 0 0.55rem, transparent 0.6rem),
    linear-gradient(135deg, rgba(246, 193, 53, 0.55), rgba(18, 75, 129, 0.28));
  border-radius: 16px;
}

.review-visual,
.map-visual,
.form-visual {
  display: grid;
  min-height: 155px;
  padding: 1rem;
  background: linear-gradient(135deg, #ffffff, #f2f6fb);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.stars {
  color: var(--accent);
  font-size: 1.55rem;
  letter-spacing: 0.16rem;
}

.bars {
  display: grid;
  gap: 0.65rem;
  align-self: end;
}

.bars span {
  height: 12px;
  background: linear-gradient(90deg, var(--teal), rgba(24, 123, 131, 0.22));
  border-radius: 999px;
}

.bars span:nth-child(2) {
  width: 78%;
}

.bars span:nth-child(3) {
  width: 54%;
}

.map-visual {
  position: relative;
  background:
    linear-gradient(90deg, transparent 48%, rgba(24, 123, 131, 0.16) 49%, transparent 50%) 0 0 / 54px 54px,
    linear-gradient(0deg, transparent 48%, rgba(24, 123, 131, 0.14) 49%, transparent 50%) 0 0 / 54px 54px,
    #f8fbff;
}

.map-visual span {
  position: absolute;
  top: 44%;
  left: 46%;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: var(--shadow-soft);
  transform: rotate(-45deg);
}

.map-visual i,
.map-visual b {
  position: absolute;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.map-visual i {
  top: 1.2rem;
  right: 1rem;
  width: 44%;
  height: 18px;
}

.map-visual b {
  bottom: 1.3rem;
  left: 1rem;
  width: 52%;
  height: 18px;
}

.phone-card {
  display: flex;
  flex-direction: column;
}

.phone-mock {
  display: grid;
  width: 112px;
  min-height: 176px;
  margin-inline: auto;
  padding: 0.55rem;
  background: var(--navy-900);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.phone-mock__screen {
  display: grid;
  gap: 0.6rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: 18px;
}

.phone-mock__screen span {
  border-radius: 10px;
  background: #e8eef5;
}

.phone-mock__screen span:first-child {
  height: 48px;
  background: linear-gradient(135deg, rgba(246, 193, 53, 0.5), rgba(18, 75, 129, 0.28));
}

.phone-mock__screen span:nth-child(2),
.phone-mock__screen span:nth-child(3) {
  height: 28px;
}

.form-visual {
  gap: 0.7rem;
  align-content: center;
}

.form-visual span {
  height: 18px;
  background: #e7eef6;
  border-radius: 999px;
}

.form-visual span:nth-child(2) {
  width: 75%;
}

.form-visual span:nth-child(3) {
  width: 58%;
}

.form-visual b {
  width: 132px;
  height: 42px;
  background: var(--accent);
  border-radius: 999px;
}

.offer {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft-warm) 100%);
}

.offer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.offer__copy p {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.22vw, 1.16rem);
}

.risk-card {
  padding: 1.35rem;
}

.risk-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  color: var(--paper);
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  border-radius: 16px;
}

.risk-card__label {
  display: grid;
  gap: 0.15rem;
}

.risk-card__headline {
  color: var(--paper);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 950;
  line-height: 0.95;
}

.risk-card__label span {
  font-weight: 850;
}

.risk-card__time {
  color: var(--accent);
  font-size: 1.2rem;
  white-space: nowrap;
}

.risk-card ul {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0 0 1.2rem;
  list-style: none;
}

.risk-card li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted);
  font-weight: 700;
}

.risk-card li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 0.95rem;
  height: 0.95rem;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.risk-card li::after {
  position: absolute;
  top: 0.48rem;
  left: 0.25rem;
  width: 0.42rem;
  height: 0.22rem;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.faq__items {
  display: grid;
  gap: 0.8rem;
}

.faq details {
  padding: 1rem 1.15rem;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq details p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(4rem, 7vw, 7rem) 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 16%, rgba(246, 193, 53, 0.16), transparent 30rem),
    linear-gradient(135deg, var(--secondary-blue), var(--primary-blue) 58%, var(--secondary-blue));
}

.final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.final-cta__grid--simple {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

.final-cta__copy h2 {
  margin-bottom: 1rem;
}

.final-cta__copy p {
  max-width: 610px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.13rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.phone-panel {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1rem;
  padding: 1.1rem 1.3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
}

.phone-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-panel strong {
  color: #fff;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  letter-spacing: 0;
}

.site-footer {
  padding: 1.5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  font-weight: 800;
}

.footer__brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 0.28rem;
  background: var(--paper);
  border: 1px solid rgba(246, 193, 53, 0.34);
  border-radius: 11px;
}

.footer__inner a {
  font-weight: 900;
}

.mobile-cta {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.55rem;
  background: rgba(11, 50, 86, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--paper);
  border-radius: 15px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.mobile-cta a:last-child {
  color: var(--navy-950);
  background: var(--accent);
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .hero__grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .lead-card--hero,
  .lead-card--final {
    max-width: 720px;
  }

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

  .work-system,
  .offer__grid {
    grid-template-columns: 1fr;
  }

  .work-system__copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1.1rem, var(--container));
  }

  .site-header {
    position: fixed;
    width: 100%;
  }

  .header__inner {
    min-height: 64px;
  }

  .brand__logo {
    width: 40px;
    height: 40px;
  }

  .brand__text {
    max-width: 11rem;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .header__actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 6rem;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(11, 50, 86, 0.94) 0%, rgba(11, 50, 86, 0.84) 44%, rgba(11, 50, 86, 0.74) 100%),
      linear-gradient(90deg, rgba(11, 50, 86, 0.95), rgba(18, 75, 129, 0.45));
  }

  .hero__media img {
    object-position: 70% center;
  }

  h1 {
    font-size: clamp(2.28rem, 10vw, 2.8rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.75rem);
  }

  .hero__subhead {
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .final-cta__actions {
    flex-direction: column;
  }

  .video-tabs__list {
    width: 100%;
    border-radius: 18px;
  }

  .video-tab {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .trust-list li {
    display: flex;
    align-items: center;
    min-height: 42px;
    line-height: 1.15;
  }

  .lead-card {
    border-radius: 22px;
  }

  .form-grid,
  .split,
  .problem__cards,
  .service-grid,
  .work-system,
  .build-grid,
  .offer__grid,
  .faq__grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .build-card--wide {
    grid-column: auto;
  }

  .needle-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .needle-item span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .footer__inner {
    flex-direction: column;
  }

  .mobile-cta.is-visible {
    display: grid;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 0.9rem, var(--container));
  }

  .lead-card--hero,
  .lead-card--final,
  .risk-card,
  .build-card,
  .service-card,
  .signal-card {
    padding: 1rem;
  }

  .lead-card--hero {
    padding: 0.75rem;
  }
}

