@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
}

:root {
  --brand: #0d44ff;
  --brand-bright: #1855ff;
  --brand-soft: #5b82ff;
  --brand-on-dark: var(--brand-soft);
  --brand-dark: #0028c8;
  --navy: #050816;
  --navy-800: #071326;
  --navy-700: #0a1730;
  --ink: #111827;
  --body: #374151;
  --muted: #4b5563;
  --soft-white: #d7dfea;
  --line: #e5e7eb;
  --soft: #f4f5f7;
  --paper: #ffffff;
  --success: #15803d;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--navy);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.js-loading .site-footer {
  visibility: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 10px;
  top: -48px;
  z-index: 100;
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: #fff;
  background: rgba(5, 8, 22, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 7px 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.branch-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.45;
}

.branch-label em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-weight: 400;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.72);
  transition: color .2s ease;
}

.topbar-phone:hover {
  color: #fff;
}

.topbar-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--brand-bright);
}

.topbar-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-weight: 800;
  color: #fff;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand-subtitle {
  color: var(--brand-on-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.brand span:not(.brand-subtitle) {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12.5px;
  font-weight: 500;
}

.main-nav a,
.main-nav .nav-label,
.nav-group summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 6px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-group summary:hover,
.nav-group[open] summary {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.main-nav .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--brand);
  font-weight: 600;
  padding-right: 14px;
  padding-left: 14px;
}

.main-nav .nav-cta:hover {
  background: var(--brand-dark);
}

.main-nav .nav-label[aria-disabled="true"],
.main-nav .nav-cta[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .58;
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 50;
  display: none;
  width: min(360px, calc(100vw - 40px));
  padding: 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 19, 38, 0.98);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
}

.nav-group[open] .nav-menu,
.nav-group:hover .nav-menu {
  display: grid;
  gap: 4px;
}

.nav-menu-wide {
  width: min(650px, calc(100vw - 40px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-group-right .nav-menu {
  right: 0;
  left: auto;
  transform: none;
}

.nav-menu a {
  display: grid;
  min-height: auto;
  padding: 11px 12px;
}

.nav-menu strong {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.nav-menu span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(5, 8, 22, 0.98), rgba(5, 8, 22, 0.82) 42%, rgba(5, 8, 22, 0.26) 70%, rgba(5, 8, 22, 0.08)),
    var(--hero-image);
  background-size: auto, cover;
  background-position: center, center center;
  background-repeat: no-repeat;
}

.hero::before,
.page-hero::before {
  content: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
  max-width: var(--max);
  min-height: 680px;
  margin: 0 auto;
  padding: 78px 20px;
}

.hero-inner > div:first-child {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.section .eyebrow,
.not-found .eyebrow {
  color: var(--brand);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section.dark .eyebrow {
  color: var(--brand-on-dark);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand-bright);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: 54px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--soft-white);
  font-size: 16px;
  line-height: 1.625;
  overflow-wrap: break-word;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 180px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  color: #fff;
  background: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 14px 36px rgba(13, 68, 255, 0.42);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(13, 68, 255, 0.72);
  background: rgba(13, 68, 255, 0.22);
  box-shadow: 0 14px 36px rgba(13, 68, 255, 0.24);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
  max-width: 1000px;
}

.trust-item {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 6px;
  min-height: 126px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-icon,
.service-icon,
.proof-icon,
.license-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-bright);
}

.trust-icon svg,
.service-icon svg,
.proof-icon svg,
.license-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.trust-icon {
  width: 36px;
  height: 36px;
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}

.trust-item > span:not(.trust-icon) {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10.5px;
  line-height: 1.35;
}

.lead-panel {
  border: 1px solid rgba(13, 68, 255, 0.24);
  border-radius: 12px;
  background: rgba(10, 23, 48, 0.82);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(13, 68, 255, 0.16),
    inset 0 1px 0 rgba(13, 68, 255, 0.45),
    inset 0 0 0 1px rgba(13, 68, 255, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.lead-column {
  width: 100%;
  min-width: 0;
  justify-self: end;
}

.lead-panel header {
  padding: 20px 20px 0;
}

.lead-panel h2 {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.lead-panel p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.5;
}

.lead-panel p span {
  color: var(--brand-bright);
  font-weight: 800;
}

.lead-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 20px 22px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  position: relative;
  display: block;
}

.field > span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.field > span span {
  color: var(--brand-soft);
}

.form-span-2 {
  grid-column: 1 / -1;
}

.form-privacy {
  margin: 2px 0 0 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 11px !important;
}

.form-assurance {
  margin: 2px 2px 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 10px !important;
  line-height: 1.45 !important;
}

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

.field-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.field-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.055);
  padding: 10px 12px;
  font-size: 13.5px;
  line-height: 1.5;
  outline: none;
}

.icon-field input {
  padding-left: 40px;
}

.field select {
  appearance: none;
  color: rgba(255, 255, 255, 0.82);
  padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.62)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.field select option {
  color: #fff;
  background: var(--navy-700);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(13, 68, 255, 0.8);
  box-shadow: 0 0 0 2px rgba(13, 68, 255, 0.24);
}

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

.form-note {
  margin: 0;
  color: #9ff3b4;
  font-size: 13px;
  font-weight: 800;
}

.form-note.is-error {
  color: #ffb3b3;
}

.form-note.is-success {
  color: #9ff3b4;
}

.lead-submit {
  width: 100%;
  min-height: 42px;
}

.lead-submit:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.section {
  padding: 82px 20px;
  background: var(--paper);
}

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

.section.dark {
  color: #fff;
  background: linear-gradient(180deg, var(--navy), var(--navy-800));
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.home-services .wrap {
  max-width: var(--max);
}

.commercial-depth .wrap,
.branch-section .wrap {
  max-width: var(--max);
}

#daytona-beach-areas .wrap,
.use-cases .wrap {
  max-width: var(--max);
}

.process-section .wrap {
  max-width: 1488px;
}

.commercial-depth .split {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 44px;
}

.branch-section .split {
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1.04fr);
  gap: 44px;
}

#daytona-beach-areas .split {
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, .8fr);
  gap: 44px;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

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

.section-head h2 {
  font-size: 38px;
  line-height: 1.15;
}

.section-head p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.section.dark .section-head p:not(.eyebrow),
.section.dark p {
  color: rgba(255, 255, 255, 0.82);
}

.home-services,
.branch-section,
.use-cases {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section.dark .proof-card,
.section.dark .faq-item {
  border-color: rgba(13, 68, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 23, 48, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.section.dark .proof-card h3,
.section.dark .faq-item h3 {
  color: #fff;
}

.section.dark .proof-card p,
.section.dark .faq-item p {
  color: rgba(255, 255, 255, 0.78);
}

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

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

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

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

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr);
  gap: 18px;
  align-items: stretch;
}

.service-feature,
.support-services {
  border: 1px solid rgba(13, 68, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 23, 48, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.service-feature-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
}

.service-feature h3,
.support-services h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.service-feature p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.625;
}

.service-feature-body > p:not(.mini-kicker) {
  margin: 14px 0 0;
}

.service-feature .btn {
  margin-top: 26px;
}

.mini-kicker {
  margin: 0 0 10px;
  color: var(--brand-bright);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.support-services {
  padding: 28px;
}

.support-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.support-service {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  transition: border-color .2s ease, transform .2s ease;
}

.support-service:first-child {
  border-top: 0;
}

.support-service:hover {
  border-color: rgba(24, 85, 255, 0.48);
  transform: translateX(2px);
}

.support-service .service-icon {
  margin-bottom: 0;
}

.support-service strong,
.support-service em {
  display: block;
}

.support-service strong {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.support-service em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12.5px;
  line-height: 1.5;
  font-style: normal;
}

.internal-link-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.internal-link-group {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(13, 68, 255, 0.2);
  border-radius: 8px;
  background: rgba(10, 23, 48, 0.58);
}

.internal-link-heading {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.internal-link-heading .service-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 0;
}

.internal-link-group h3 {
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.internal-link-group ul {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.internal-link-group li {
  border-bottom: 1px solid rgba(13, 68, 255, 0.22);
}

.internal-link-group li:last-child {
  border-bottom: 0;
}

.internal-link-group a {
  display: flex;
  width: 100%;
  min-height: 35px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  transition: color .2s ease;
}

.internal-link-group a::after {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-top: 1.5px solid var(--brand-bright);
  border-right: 1.5px solid var(--brand-bright);
  transform: rotate(45deg);
}

.internal-link-group a:hover {
  color: #fff;
}

.service-card,
.proof-card,
.faq-item,
.blog-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.service-card {
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.service-card img,
.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.section.dark .service-card {
  border-color: rgba(13, 68, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 23, 48, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.section.dark .service-card:hover {
  border-color: rgba(24, 85, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 50px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(13, 68, 255, 0.2);
}

.service-card .body,
.blog-card .body,
.proof-card,
.faq-item {
  padding: 22px;
}

.service-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}


.proof-card-with-media {
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.proof-card-media {
  position: relative;
  aspect-ratio: 2.35 / 1;
  min-height: 136px;
  overflow: hidden;
  background: #050816;
  border-bottom: 1px solid rgba(13, 68, 255, 0.18);
}

.proof-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 22, 0.02), rgba(5, 8, 22, 0.24));
}

.proof-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.proof-card-with-media:hover {
  border-color: rgba(24, 85, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 50px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(13, 68, 255, 0.2);
  transform: translateY(-2px);
}

.proof-card-with-media:hover .proof-card-media img {
  transform: scale(1.045);
}

.proof-card-body {
  display: grid;
  flex: 1;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 18px;
  row-gap: 14px;
  align-content: start;
  padding: 20px 22px 18px;
}

.proof-card-heading {
  display: contents;
}

.proof-card-heading .proof-icon {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 34px;
  height: 34px;
  margin: 0;
  color: var(--brand-bright);
}

.proof-card-heading h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
}

.proof-card-with-media .proof-card-body > p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
}

.proof-card-link {
  display: inline-flex;
  grid-column: 1 / -1;
  grid-row: 3;
  gap: 10px;
  align-items: center;
  align-self: end;
  margin-top: 2px;
  color: var(--brand-bright);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.proof-card-link::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.proof-card-link:hover {
  color: #fff;
}

.service-card h3,
.proof-card h3,
.blog-card h3 {
  font-size: 16px;
  line-height: 1.3;
}

.section.dark .service-card h3 {
  color: #fff;
}

.service-card p,
.proof-card p,
.blog-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section.dark .service-card p {
  color: rgba(255, 255, 255, 0.78);
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--brand-bright);
}

.proof-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 180px;
  margin-top: 18px;
  padding: 12px 24px;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: transform .2s ease, background .2s ease, box-shadow .25s ease;
}

.card-link:hover {
  color: #fff;
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(13, 68, 255, 0.34);
}

.service-card p {
  margin-bottom: 20px;
}

.service-card .card-link {
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 44px;
  align-items: center;
}

.split img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.service-aside {
  display: grid;
  gap: 18px;
}

.service-aside .section-media {
  min-height: 260px;
  height: 260px;
  border: 1px solid rgba(13, 68, 255, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.branch-section .split img {
  border: 1px solid rgba(13, 68, 255, 0.22);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

.license-panel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 560px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(13, 68, 255, 0.22);
  border-radius: 8px;
  background: rgba(10, 23, 48, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.license-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.license-panel strong,
.license-panel div span {
  display: block;
}

.license-panel strong {
  color: #fff;
  line-height: 1.2;
}

.license-panel div span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--body);
}

.section.dark .list li {
  color: rgba(255, 255, 255, 0.78);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.local-fit-list {
  margin-top: 0;
  align-self: center;
}

.coverage-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 10px 20px;
  list-style: none;
  border: 1px solid rgba(13, 68, 255, 0.3);
  border-radius: 8px;
  background: rgba(10, 23, 48, 0.62);
}

.coverage-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(13, 68, 255, 0.34);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.coverage-list li:last-child {
  border-bottom: 0;
}

.coverage-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  color: var(--brand-bright);
}

.coverage-icon svg,
.area-pill-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.home-faq-logo {
  width: 190px;
  height: auto;
  margin: 0 auto 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.faq-card {
  min-height: 276px;
}

.faq-card summary {
  align-items: flex-start;
  min-height: 0;
  padding: 22px 22px 12px;
}

.faq-card summary h3 {
  font-size: 15px;
  line-height: 1.35;
}

.faq-card .faq-toggle {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.faq-card .faq-answer {
  padding: 0 22px 22px;
}

.faq-card .faq-answer p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 880px;
}

/* Original legal pages: same Daytona palette, restrained reading measure. */
.legal-page { background: var(--navy); color: #fff; padding: 40px 20px 72px; }
.legal-wrap { width: 100%; max-width: 880px; margin: 0 auto; overflow-wrap: anywhere; }
.legal-heading { padding: 20px 0 32px; border-bottom: 1px solid var(--line); }
.legal-heading h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); line-height: 1.12; margin: 12px 0 20px; }
.legal-date { color: rgba(255,255,255,.7); font-size: 14px; }
.legal-intro { font-size: 18px; line-height: 1.7; margin-bottom: 0; }
.legal-copy section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-copy h2 { color: #fff; font-size: clamp(22px, 3vw, 28px); line-height: 1.3; margin: 0 0 16px; }
.legal-copy p { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.75; margin: 14px 0 0; }
.legal-copy a, .legal-related a { color: var(--brand-on-dark); text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.legal-related { display: flex; flex-wrap: wrap; gap: 8px 24px; padding-top: 24px; }
.legal-related a, .legal-nav a { display: inline-flex; align-items: center; min-height: 44px; }
.legal-related a[aria-current="page"], .legal-nav a[aria-current="page"] { color: #fff; }

.legal-content article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.legal-content p {
  margin: 0;
}

.process-section .wrap {
  max-width: 1488px;
}

.process-section .section-head {
  max-width: 1180px;
}

.process-section .process {
  gap: 28px;
}

.process .proof-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
}

.process-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  column-gap: 20px;
  row-gap: 18px;
}

.process-number {
  display: block;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--brand);
  font-size: 40px;
  font-weight: 650;
  line-height: 1;
}

.process-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  color: var(--brand-bright);
}

.process-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.process-card h3 {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(13, 68, 255, 0.34);
}

.process-card p {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: #071326;
}

.cta-band h2 {
  color: #fff;
  font-size: 32px;
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(5, 8, 22, 0.98), rgba(5, 8, 22, 0.82) 48%, rgba(5, 8, 22, 0.42)),
    var(--hero-image);
  background-size: auto, cover;
  background-position: center, right center;
  background-repeat: no-repeat;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  padding: 104px 20px 88px;
}


.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 44px;
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero .lead-panel {
  justify-self: end;
  width: 100%;
  max-width: 480px;
}

.page-hero .lead-panel p {
  max-width: none;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.page-hero .lead-panel p span {
  color: var(--brand-bright);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found .breadcrumbs {
  color: var(--muted);
}

.not-found .breadcrumbs a {
  color: var(--brand);
}

.page-hero h1 {
  max-width: 860px;
  color: #fff;
  font-size: 54px;
}

.page-hero p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--soft-white);
  font-size: 16px;
  line-height: 1.625;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.faq-item[open] {
  border-color: rgba(24, 85, 255, 0.45);
}

.faq-item summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -4px;
}

.faq-item summary h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.faq-toggle {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(24, 85, 255, 0.5);
  border-radius: 50%;
  background: rgba(24, 85, 255, 0.08);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin: 0;
}

.site-footer {
  color: #fff;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 20px 36px;
}

.footer-logo {
  width: 148px;
  height: auto;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--brand-on-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.footer-label,
.footer-bottom {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.625;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.footer-brand {
  margin: 0 0 16px;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 800;
  letter-spacing: .12em;
}

.footer-label {
  display: block;
  margin: 8px 0;
  opacity: .64;
}

.footer-grid > *,
.site-footer p,
.site-footer a,
.footer-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-nav span[aria-disabled="true"] {
  opacity: .55;
}

.footer-nap-line {
  margin: 7px 0;
}

.footer-nap-line a,
.footer-bottom .parent-site-link {
  display: inline;
  margin: 0;
}

.footer-email-line {
  white-space: nowrap;
}

.footer-contact-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.footer-contact-icon {
  display: inline-flex;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  color: var(--brand);
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.inline-contact-link {
  color: inherit;
  text-decoration: none;
}

.inline-contact-link:hover {
  color: var(--brand);
}

.site-footer a:hover {
  color: #fff;
}

@media (max-width: 420px) {
  .footer-email-line {
    white-space: normal;
  }

  .footer-email-line a {
    overflow-wrap: anywhere;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1488px;
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.not-found {
  min-height: 54vh;
  padding: 90px 20px;
  background: var(--paper);
}

@media (max-width: 1200px) and (min-width: 981px) {
  .internal-link-groups,
  .process-section .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #daytona-beach-areas .split {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .page-hero-grid,
  .split,
  .service-overview,
  .service-feature,
  .faq-grid,
  .internal-link-groups,
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .commercial-depth .split,
  .branch-section .split,
  #daytona-beach-areas .split {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 44px;
  }

  .lead-panel {
    max-width: 520px;
  }

  .page-hero .lead-panel {
    justify-self: stretch;
    max-width: 520px;
  }

  .service-aside {
    max-width: 520px;
  }

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

@media (max-width: 760px) {
  .topbar {
    display: flex;
    padding: 7px 20px;
    font-size: 11px;
  }

  .topbar a,
  .branch-label em {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 8px 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav.open {
    display: flex;
  }

  .brand img {
    width: 118px;
  }

  .footer-logo {
    width: 118px;
  }

  .service-aside .section-media {
    min-height: 220px;
    height: 220px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand .brand-subtitle {
    max-width: 180px;
    font-size: 10px;
  }

  .hero-inner {
    padding: 54px 20px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 15px;
    line-height: 1.625;
  }

  .section {
    padding: 58px 20px;
  }

  .section-head h2,
  .cta-band h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .eyebrow {
    letter-spacing: .14em;
  }

  .grid.cols-2,
  .trust-strip,
  .support-service,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .nav-group summary {
    justify-content: space-between;
  }

  .nav-menu {
    position: static;
    display: grid;
    width: auto;
    padding: 4px 0 8px 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-menu-wide {
    grid-template-columns: 1fr;
  }

  .nav-group:not([open]) .nav-menu {
    display: none;
  }

  .service-feature-media img {
    min-height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero,
  .hero-inner {
    max-width: 100vw;
  }

  .hero-inner > div:first-child,
  .hero-actions,
  .trust-strip,
  .lead-panel {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero-copy {
    max-width: calc(100vw - 40px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
  }

  .lead-panel {
    max-width: calc(100vw - 40px);
  }
  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .section-head h2,
  .cta-band h2 {
    font-size: 30px;
  }
}


.stats-section,
.commercial-depth,
.home-faq-section,
.trusted-technologies {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-card {
  min-height: 136px;
  padding: 22px;
  border: 1px solid rgba(13, 68, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)), rgba(10, 23, 48, 0.72);
}

.stat-card h3,
.stat-card span {
  display: block;
}

.stat-card h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.stat-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.area-pills,
.technology-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-pills > span,
.technology-grid > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 9px 12px;
  color: #fff;
  border: 1px solid rgba(13, 68, 255, 0.26);
  border-radius: 6px;
  background: rgba(10, 23, 48, 0.72);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.area-pill-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--brand-bright);
}

.commercial-depth .split {
  align-items: start;
}

.commercial-depth .list {
  padding: 26px;
  border: 1px solid rgba(13, 68, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)), rgba(10, 23, 48, 0.72);
}

.technology-grid {
  justify-content: center;
}

.technology-grid span {
  min-width: 126px;
  justify-content: center;
  font-size: 14px;
}

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

@media (max-width: 980px) {
  .stats-grid,
  .faq-list-two {
    grid-template-columns: 1fr;
  }
}

/* Document-backed pilot overrides. No image is shown until provenance and route approval exist. */
.brand-text strong {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  letter-spacing: .12em;
}

.hero-no-image {
  background-image:
    radial-gradient(circle at 82% 28%, rgba(24, 85, 255, .22), transparent 28%),
    linear-gradient(120deg, #050816 0%, #071326 62%, #0a1730 100%);
}

.hero.has-media,
.page-hero {
  background: var(--navy);
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: var(--media-position-desktop, 50% 50%);
}

.hero-media::after {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 22, .97) 0%, rgba(5, 8, 22, .88) 42%, rgba(5, 8, 22, .46) 100%),
    linear-gradient(180deg, rgba(5, 8, 22, .18), rgba(5, 8, 22, .56));
}

.hero-media figcaption,
.section-media figcaption {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  color: rgba(255, 255, 255, .82);
  background: rgba(5, 8, 22, .72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.25;
  backdrop-filter: blur(8px);
}

.section-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
  gap: 48px;
  align-items: center;
}

.section-feature .section-head {
  margin-bottom: 0;
}

.section-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(17, 24, 39, .1);
  border-radius: 10px;
  background: var(--navy);
  box-shadow: 0 22px 52px rgba(5, 8, 22, .16);
}

.section.dark .section-media {
  border-color: rgba(91, 130, 255, .24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.section-media picture,
.section-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.section-media img {
  object-fit: cover;
  object-position: var(--media-position-desktop, 50% 50%);
}

/* Keep the complete approved J-hook route and wall sleeve visible. */
.section-media.media-day-contact-pathways {
  aspect-ratio: 16 / 9;
}

.btn.is-disabled {
  cursor: not-allowed;
  opacity: .56;
  transform: none;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.proof-icon {
  display: inline-flex;
  color: var(--brand-bright);
}

.proof-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.section.dark .proof-card {
  border-color: rgba(13, 68, 255, .22);
  background: rgba(255, 255, 255, .055);
}

.section.dark .proof-card h3 {
  color: #fff;
}

.section.dark .proof-card p,
.section.dark .proof-card li {
  color: rgba(255, 255, 255, .76);
}

@media (max-width: 1100px) and (min-width: 761px) {
  .hero-inner,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner,
  .page-hero .wrap {
    min-height: auto;
  }

  .lead-panel,
  .page-hero .lead-panel {
    justify-self: stretch;
    max-width: 620px;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0 0 8px 8px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav .nav-label,
  .main-nav .nav-cta {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 980px) {
  .section-feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-media {
    width: min(100%, 720px);
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .main-nav .nav-label,
  .main-nav .nav-cta {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .lead-form {
    grid-template-columns: 1fr;
  }

  .form-span-2 {
    grid-column: 1;
  }
}

@media (max-width: 1100px) {
  .hero-media {
    position: relative;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .hero-media {
    position: relative;
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .hero-media img,
  .section-media img {
    object-position: var(--media-position-mobile, 50% 50%);
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(5, 8, 22, .08) 0%, rgba(5, 8, 22, .2) 58%, rgba(5, 8, 22, .96) 100%);
  }

  .hero.has-media .hero-inner,
  .page-hero.has-media .wrap {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-media figcaption,
  .section-media figcaption {
    right: 10px;
    bottom: 10px;
    font-size: 10px;
  }

  .section-feature {
    gap: 24px;
  }

  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 389px) {
  .hero h1,
  .page-hero h1 {
    font-size: 30px;
  }
}

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

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

/* Client-preview QA: shared layout corrections, September 2026. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

main,
#project-form {
  scroll-margin-top: 150px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-on-dark);
  outline-offset: 4px;
}

.brand,
.main-nav a,
.main-nav .nav-label,
.nav-toggle {
  min-height: 44px;
}

.brand {
  justify-content: center;
  flex-shrink: 0;
}

.main-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.nav-toggle {
  width: 44px;
  flex-shrink: 0;
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
}

.page-hero .eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  line-height: 1.5;
}

.eyebrow::before {
  flex: 0 0 28px;
}

.form-requirement {
  margin: 2px 0 0 !important;
  font-size: 12px !important;
}

.proof-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.proof-grid > .proof-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-column: span 4;
  row-gap: 0;
  min-width: 0;
  overflow: visible;
}

.proof-grid[data-count="4"] > .proof-card {
  grid-column: span 3;
}

.proof-grid[data-count="2"] > .proof-card {
  grid-column: span 6;
}

@media (min-width: 1181px) {
  .proof-grid[data-count="5"] > .proof-card:nth-last-child(-n+2),
  .proof-grid[data-count="8"] > .proof-card:nth-last-child(-n+2) {
    grid-column: span 6;
  }
}

.proof-card > .card-top {
  grid-row: 1;
}

.proof-card > h3 {
  grid-row: 2;
}

.proof-card > .card-copy {
  grid-row: 3;
  min-width: 0;
  overflow-wrap: anywhere;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.proof-card .proof-icon {
  width: 44px;
  height: 44px;
  margin: 0;
}

.proof-icon svg {
  stroke-width: 1.6;
}

.section.dark .proof-icon,
.section.dark .step-index {
  color: var(--brand-bright);
}

.proof-grid h3 {
  margin-bottom: 12px;
}

.card-copy > :first-child {
  margin-top: 0;
}

.step-index {
  color: var(--brand);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.process-card h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.section.dark .process-card h3 {
  border-color: rgba(255, 255, 255, .18);
}

.process-card .proof-icon {
  width: 48px;
  height: 48px;
}

.cta-band {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 330px);
  gap: 36px;
}

.cta-actions {
  flex-direction: column;
  align-items: stretch;
}

.cta-actions .btn {
  white-space: normal;
  text-align: center;
}

.btn {
  text-align: center;
}

.footer-grid {
  max-width: 1420px;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, .85fr)) minmax(270px, 1.35fr);
  gap: 32px;
}

.site-footer {
  background: #040817;
}

.site-footer .footer-label {
  opacity: 1;
  color: rgba(255, 255, 255, .72);
}

.site-footer a.footer-label {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .35);
  text-underline-offset: 4px;
}

.site-footer .contact-label {
  display: block;
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Keep small footer headings AA-readable; use Tampa's bright-blue rule as
   decoration instead of rendering small low-contrast blue text. */
.site-footer h2 { color: var(--paper); }
.site-footer h2::after { content: ''; display: block; width: 28px; height: 2px; margin-top: 9px; background: var(--brand-bright); }

.footer-contact .footer-nap-line {
  margin: 12px 0 0;
}

.footer-contact .footer-nap-line a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0;
}

.footer-bottom {
  max-width: 1420px;
  align-items: center;
}

.legal-nav span[aria-disabled="true"] {
  opacity: .9;
}

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

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(5, 8, 22, .08), rgba(5, 8, 22, .15) 65%, rgba(5, 8, 22, .85));
  }

  .main-nav {
    max-height: calc(100dvh - 145px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
  }
}

@media (max-width: 1180px) {
  .proof-grid > .proof-card,
  .proof-grid[data-count] > .proof-card {
    grid-column: span 6;
  }

  .proof-grid[data-count] > .proof-card:last-child:nth-child(odd) {
    grid-column: span 12;
  }
}

@media (max-width: 980px) {
  .cta-band {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .cta-actions {
    align-items: flex-start;
  }

  .cta-actions .btn {
    min-width: 240px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-grid > .proof-card,
  .proof-grid[data-count] > .proof-card {
    display: block;
    grid-column: span 12;
    grid-row: auto;
  }

  .proof-card .proof-icon {
    width: 38px;
    height: 38px;
  }

  .process-card .proof-icon {
    width: 44px;
    height: 44px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 44px;
  }

  .field textarea {
    min-height: 96px;
  }

  .cta-band {
    padding: 24px;
  }

  .cta-actions .btn {
    min-width: 0;
  }
}

@media (max-width: 389px) {
  .cta-band {
    padding: 20px;
  }
}

/* Master/Tampa component contract, frozen reference 2026-09-06.
   This is presentation only: no editorial section is omitted or reordered. */
.nav-wrap { max-width: 1420px; }
.hero-actions .btn { min-height: 58px; min-width: 258px; font-size: 16px; line-height: 1.5; }
.nav-group summary { min-height: 44px; }
.nav-group:not([open]) .nav-menu { display: none; }
.nav-menu { max-height: min(65vh, 620px); overflow-y: auto; overscroll-behavior: contain; }
.proof-card h3 a { display: inline-flex; align-items: center; min-height: 24px; color: inherit; text-decoration-color: var(--brand-soft); text-underline-offset: 4px; }
.proof-card h3 a:hover { color: var(--brand-soft); }
.form-context-link { display: inline-flex; align-items: center; min-height: 44px; color: var(--brand-soft); font-size: 14px; text-decoration: underline; text-underline-offset: 4px; }
.nav-group summary:focus-visible { outline: 2px solid var(--brand-soft); outline-offset: 4px; }
/* Narrow desktop: preserve single-line labels above the existing menu toggle
   breakpoint without shrinking text or sacrificing the44px target height. */
@media (min-width: 1101px) and (max-width: 1180px) {
  .main-nav > a,
  .main-nav > .nav-group > summary { padding-right: 8px; padding-left: 8px; white-space: nowrap; }
}
.contact-methods { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.contact-method { display: grid; align-content: start; gap: 14px; padding: 24px; border: 1px solid rgba(91, 130, 255, .24); border-radius: 8px; background: var(--navy-800); }
.contact-method strong { color: var(--paper); font-size: 18px; }
.contact-method span:not(.proof-icon) { color: rgba(255, 255, 255, .82); overflow-wrap: anywhere; }
.contact-method:hover { border-color: var(--brand-soft); }
.section.dark {
  background: radial-gradient(circle at 14% 8%, rgba(13, 68, 255, .18), transparent 30%),
    linear-gradient(180deg, var(--navy), var(--navy-800));
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero.has-media,
.page-hero {
  overflow: visible;
}

.hero.has-media .hero-inner {
  max-width: 1420px;
  min-height: 0;
  align-items: start;
  padding: 68px 20px;
  grid-template-columns: minmax(0, 1fr) 488px;
  gap: 36px 52px;
}

.page-hero .wrap.page-hero-grid {
  max-width: 1560px;
  align-items: start;
  padding: 48px 20px;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 36px 44px;
}

.hero-media {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(5, 8, 22, .97), rgba(5, 8, 22, .86) 42%, rgba(5, 8, 22, .32) 72%, rgba(5, 8, 22, .18)),
    linear-gradient(180deg, transparent 58%, rgba(5, 8, 22, .95));
}

.hero-trust {
  grid-column: 1 / -1;
  min-width: 0;
  width: 100%;
}

.hero-trust > h2 {
  margin: 0 0 20px;
  color: var(--paper);
  font-size: 22px;
  line-height: 1.3;
}

.hero-trust .trust-strip {
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-trust .trust-strip[data-count="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-trust .trust-item {
  grid-template-rows: 40px auto 1fr;
  align-content: start;
  gap: 14px;
  min-width: 0;
  min-height: 0;
  padding: 22px;
  background: rgba(10, 23, 48, .82);
  border-color: rgba(91, 130, 255, .24);
  border-radius: 8px;
}

.hero-trust .trust-icon {
  justify-self: center;
  width: 40px;
  height: 40px;
  color: var(--brand-bright);
}

.hero-trust h3 {
  color: var(--paper);
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
}

.hero-trust .trust-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
}

.lead-panel,
.page-hero .lead-panel {
  width: 100%;
  max-width: none;
  border: 1px solid rgba(91, 130, 255, .28);
  border-radius: 12px;
  background: rgba(10, 23, 48, .86);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(91, 130, 255, .22);
}

.lead-panel header { padding: 18px 18px 0; }
.lead-panel header h2 { font-size: 20px; line-height: 1.2; }
.lead-panel header p { margin-top: 5px; font-size: 13px; line-height: 1.4; }
.lead-form { grid-template-columns: minmax(0, 1fr); gap: 10px; padding: 14px 18px 22px; }
.field { min-width: 0; }
.field .field-icon { top: 12px; left: 13px; width: 18px; height: 18px; margin: 0; color: rgba(255, 255, 255, .58); transform: none; pointer-events: none; }
.select-field .field-icon { display: none; }
.field-icon svg { width: 18px; height: 18px; stroke-width: 1.6; }
.field input,
.field select,
.field textarea {
  height: 42px;
  min-height: 42px;
  padding: 10px 12px 10px 40px;
  font-size: 13.5px;
  line-height: 1.45;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  color: var(--paper);
  background-color: rgba(255, 255, 255, .043);
}
.field select { padding-right: 36px; padding-left: 12px; }
.field textarea { height: 64px; min-height: 64px; }
.message-field .field-icon { top: 13px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, .72); opacity: 1; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--brand-bright); box-shadow: 0 0 0 2px rgba(13, 68, 255, .24); }
.lead-submit { position: relative; height: 42px; min-height: 42px; margin-top: 2px; padding: 0 44px; gap: 12px; justify-content: center; }
.lead-submit .submit-arrow { position: absolute; right: 18px; }
/* Preview delivery stays disabled; keep the approved blue/white treatment.
   The explicit unavailable notice, native disabled state and cursor communicate
   the restriction without inventing a second brand treatment. */
.lead-submit:disabled { opacity: 1; cursor: not-allowed; box-shadow: none; background: var(--brand); border: 1px solid transparent; color: var(--paper); transform: none; }
.faq-item .faq-toggle { color: var(--brand-soft); }
.faq-item .faq-toggle::before,
.faq-item .faq-toggle::after { background: currentColor; }
.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.faq-list .faq-item {
  align-self: start;
  height: auto;
}
.submit-arrow { width: 20px; height: 20px; flex: 0 0 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(13, 68, 255, .2); }

@media (min-width: 521px) {
  .hero-trust .trust-item { grid-template-rows: subgrid; grid-row: span 3; }
}
@media (max-width: 1180px) {
  .hero-trust .trust-strip,
  .hero-trust .trust-strip[data-count="4"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-trust .trust-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (max-width: 1100px) {
  .main-nav { max-height: calc(100dvh - 150px); overflow-y: auto; }
  .nav-group summary { width: 100%; }
  .nav-group .nav-menu { position: static; width: 100%; transform: none; margin: 0 0 10px; box-shadow: none; }
  .nav-menu-wide { grid-template-columns: minmax(0, 1fr); }
  .hero.has-media .hero-inner,
  .page-hero .wrap.page-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .hero-media { height: 720px; max-height: 100%; inset: 0 0 auto; }
  .hero-media::after { background: linear-gradient(90deg, rgba(5, 8, 22, .92), rgba(5, 8, 22, .55)), linear-gradient(180deg, transparent 40%, var(--navy)); }
  .hero-media figcaption { top: 10px; bottom: auto; right: 20px; font-size: 10px; }
}
@media (min-width: 1101px) {
  .nav-group:hover .nav-menu { display: grid; }
}
@media (max-width: 760px) {
  .contact-methods { grid-template-columns: minmax(0, 1fr); }
  .hero.has-media .hero-inner,
  .page-hero .wrap.page-hero-grid { padding: 48px 20px; }
  .hero h1,
  .page-hero h1 { font-size: 36px; line-height: 1.12; }
  .hero-actions .btn { min-height: 50px; min-width: 0; }
  .faq-list { grid-template-columns: minmax(0, 1fr); }
  .hero-trust > h2 { font-size: 22px; }
  .hero-media { height: 720px; max-height: 100%; inset: 0 0 auto; }
  .hero-media::after { background: linear-gradient(90deg, rgba(5, 8, 22, .92), rgba(5, 8, 22, .68)), linear-gradient(180deg, transparent 40%, var(--navy)); }
  .hero.has-media .eyebrow,
  .page-hero.has-media .eyebrow { color: var(--paper); }
  .hero-media figcaption { top: 10px; bottom: auto; right: 20px; font-size: 10px; }
  .section-head h2,
  .cta-band h2 { font-size: 34px; }
}
@media (max-width: 700px) {
  .lead-form { padding: 14px 16px 18px; }
  .field input, .field select { height: auto; min-height: 42px; }
  .field input, .field select, .field textarea { font-size: 16px; line-height: 1.45; }
  .field .field-icon { top: 14px; }
  .message-field .field-icon { top: 13px; }
  .field textarea { height: 96px; min-height: 96px; }
}

/* Home destination photos: photograph / heading / copy / explicit Tampa-style action. */
.proof-grid > .photo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--navy-700);
  border-radius: 8px;
}
.section.dark .photo-card { background: var(--navy-700); }
.photo-card .card-top-photo { display: block; width: 100%; margin: 0; }
.card-media { position: relative; margin: 0; aspect-ratio: 16 / 9; border-radius: 7px 7px 0 0; overflow: hidden; }
.card-media picture, .card-media img { display: block; width: 100%; height: 100%; }
.card-media img { object-fit: cover; object-position: var(--media-position-desktop); }
.card-media figcaption { position: absolute; right: 10px; bottom: 10px; padding: 3px 7px; border-radius: 4px; background: rgba(5, 8, 22, .78); color: var(--paper); font-size: 10px; line-height: 1.4; }
.photo-card > h3 { margin: 22px 22px 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.photo-card > .card-copy { flex: 1; padding: 0 22px; }
.photo-card > .photo-card-link {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  min-width: 0;
  max-width: calc(100% - 44px);
  margin: 12px 22px 18px;
  padding: 10px 0;
  color: var(--brand-on-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  text-decoration: none;
  white-space: normal;
  transition: color .2s ease;
}
.photo-card > .photo-card-link:hover {
  color: var(--paper);
  background: transparent;
  box-shadow: none;
  transform: none;
}
.photo-card > .photo-card-link:focus-visible {
  color: var(--paper);
  background: transparent;
  outline: 2px solid var(--brand-soft);
  outline-offset: 4px;
}
.card-link-label { min-width: 0; overflow-wrap: anywhere; }
.card-link-arrow {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}
.photo-card > .photo-card-link:hover .card-link-arrow,
.photo-card > .photo-card-link:focus-visible .card-link-arrow { transform: translateX(2px); }
.photo-card:focus-within { outline: 2px solid var(--brand-soft); outline-offset: 4px; }
.photo-card:hover { transform: translateY(-2px); border-color: var(--brand); }
@media (min-width: 1181px) {
  .proof-grid[data-count="4"] > .photo-card { grid-column: span 6; }
}
@media (max-width: 640px) {
  .card-media img { object-position: var(--media-position-mobile); }
}
@media (max-width: 520px) {
  .hero-trust .trust-strip,
  .hero-trust .trust-strip[data-count="4"] { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 389px) {
  .hero h1,
  .page-hero h1 { font-size: 32px; }
}

/* LPR resource hero: the installation scene is evidence-bearing visual
   context, so it must remain fully visible instead of sitting underneath the
   copy and form columns. The following content keeps its source order. */
.hero-media.media-day-resource-hero {
  position: relative;
  inset: auto;
  width: min(100%, 1600px);
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.hero-media.media-day-resource-hero img {
  object-fit: contain;
  object-position: 50% 50%;
}

.hero-media.media-day-resource-hero::after {
  background: linear-gradient(180deg, rgba(5, 8, 22, .04), rgba(5, 8, 22, .2));
}

.hero-media.media-day-resource-hero + .page-hero-grid {
  padding-top: 48px;
}

@media (max-width: 640px) {
  .hero-media.media-day-resource-hero {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }
}

/* Tampa footer component adapted to Daytona's complete navigation. */
.site-footer.rev2-footer {
  color: #fff;
  background: #040817;
}

.site-footer.rev2-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.35fr) repeat(5, minmax(0, 1fr));
  gap: 28px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 58px 20px 38px;
}

.site-footer.rev2-footer .footer-grid > * {
  position: relative;
  min-width: 0;
}

@media (min-width: 1181px) {
  .site-footer.rev2-footer .footer-grid > * + *::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: -14px;
    width: 1px;
    background: rgba(255, 255, 255, .08);
  }
}

.site-footer.rev2-footer .footer-logo {
  display: block;
  width: 190px;
  height: auto;
  aspect-ratio: 900 / 271;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 18px;
}

.site-footer.rev2-footer .footer-brand-column > p {
  margin: 0 0 18px;
}

.site-footer.rev2-footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer.rev2-footer h2 {
  position: relative;
  margin: 0 0 14px;
  padding: 0 0 10px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer.rev2-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--brand-bright);
}

.site-footer.rev2-footer p,
.site-footer.rev2-footer a,
.site-footer.rev2-footer .footer-bottom,
.site-footer.rev2-footer .footer-legal-bar {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.625;
}

.site-footer.rev2-footer a {
  text-decoration: none;
}

.site-footer.rev2-footer a:hover,
.site-footer.rev2-footer a:focus-visible {
  color: #fff;
}

.site-footer.rev2-footer .footer-column > a {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 36px;
  margin: 0;
  padding: 5px 0;
  font-size: 12px;
  line-height: 1.45;
}

.site-footer.rev2-footer .footer-column > a::after {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-top: 1px solid rgba(255, 255, 255, .6);
  border-right: 1px solid rgba(255, 255, 255, .6);
  transform: rotate(45deg);
}

.site-footer.rev2-footer .footer-column > a[aria-current="page"] {
  color: #fff;
  font-weight: 700;
}

.site-footer.rev2-footer .footer-contact-list {
  display: grid;
  justify-items: start;
  gap: 7px;
}

.site-footer.rev2-footer .footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 4px 0;
}

.site-footer.rev2-footer .footer-contact-icon {
  display: inline-flex;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 2px;
  color: var(--brand-on-dark);
}

.site-footer.rev2-footer .footer-contact-icon svg,
.site-footer.rev2-footer .footer-area-icon svg,
.site-footer.rev2-footer .footer-license-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer.rev2-footer .footer-contact-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.site-footer.rev2-footer .footer-contact-label {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.site-footer.rev2-footer .footer-contact-value {
  display: block;
  max-width: 100%;
  font-size: 12.5px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.site-footer.rev2-footer .footer-service-band {
  display: grid;
  grid-template-columns: minmax(210px, .75fr) minmax(0, 1.65fr) minmax(285px, .8fr);
  align-items: start;
  gap: 34px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer.rev2-footer .footer-service-copy p {
  margin: 0;
}

.site-footer.rev2-footer .footer-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 18px;
}

.site-footer.rev2-footer .footer-area-grid a {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  min-height: 36px;
  margin: 0;
  padding: 5px 0;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
}

.site-footer.rev2-footer .footer-area-icon {
  display: inline-flex;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 2px;
  color: var(--brand-on-dark);
}

.site-footer.rev2-footer .footer-license-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.site-footer.rev2-footer .footer-license-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: var(--brand-on-dark);
}

.site-footer.rev2-footer .footer-license-badge strong,
.site-footer.rev2-footer .footer-license-badge span {
  display: block;
}

.site-footer.rev2-footer .footer-license-badge strong {
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer.rev2-footer .footer-license-badge div > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  line-height: 1.4;
}

.site-footer.rev2-footer .footer-legal-bar,
.site-footer.rev2-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer.rev2-footer .footer-legal-bar > span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer.rev2-footer .legal-nav {
  justify-content: flex-end;
  gap: 8px 24px;
}

.site-footer.rev2-footer .legal-nav a,
.site-footer.rev2-footer .footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .4);
  text-underline-offset: 3px;
}

/* Tampa legal-page shell with Daytona's approved legal copy and identity. */
.legal-hero .legal-date {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 650;
}

.legal-section {
  background: var(--paper);
}

.legal-section .legal-content {
  width: 100%;
  max-width: 1040px;
  overflow-wrap: anywhere;
}

.legal-section .legal-content article {
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.legal-section .legal-content h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
}

.legal-section .legal-content p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

.legal-section .legal-content p + p {
  margin-top: 14px;
}

.legal-section .legal-content a {
  color: var(--brand);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section .legal-contact {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f6fc;
}

.legal-section .legal-related-panel {
  padding: 26px 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-700);
}

.legal-section .legal-related-panel h2 {
  color: #fff;
}

.legal-section .legal-related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 0;
}

.legal-section .legal-related a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--brand-on-dark);
}

.legal-section .legal-related a[aria-current="page"] {
  color: #fff;
}

@media (max-width: 1300px) {
  .site-footer.rev2-footer .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer.rev2-footer .footer-grid > *::before {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-footer.rev2-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-footer.rev2-footer .footer-service-band {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  }

  .site-footer.rev2-footer .footer-license-badge {
    grid-column: 1 / -1;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .site-footer.rev2-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 42px;
  }

  .site-footer.rev2-footer .footer-service-band {
    grid-template-columns: 1fr;
  }

  .site-footer.rev2-footer .footer-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer.rev2-footer .footer-license-badge {
    grid-column: auto;
  }

  .site-footer.rev2-footer .footer-legal-bar,
  .site-footer.rev2-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer.rev2-footer .legal-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .site-footer.rev2-footer .footer-area-grid {
    grid-template-columns: 1fr;
  }
}
