﻿:root {
  --bg: #f7fbfc;
  --bg-soft: #eef7f8;
  --panel: #ffffff;
  --panel-2: #f4fbfb;
  --text: #1f2937;
  --muted: #5f6b76;
  --line: #dbe7ea;

  --brand: #0C6795;
  --brand-dark: #07577F;
  --brand-deep: #064766;
  --brand-2: #1594D1;
  --brand-2-hover: #0E7FB5;
  --accent: #e9f8f8;
  --danger: #dc2626;

  --white: #ffffff;
  --shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  --shadow-soft: 0 3px 12px rgba(15, 23, 42, 0.04);
  --radius: 18px;
  --max: 1180px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  font-weight: 800;
}

em {
  font-style: italic;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  background: #f8fcfc;
  color: #36555a;
  font-size: 13px;
  border-bottom: 1px solid #d9e9eb;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(6, 71, 102, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.site-header__wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-2), #7dd3fc);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.logo small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #dffbfb;
  text-decoration: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.phone-chip {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.phone-chip:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease, opacity 0.16s ease;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.22);
  outline-offset: 2px;
}

.btn.is-loading,
[data-vendor-link].is-loading {
  pointer-events: none;
  opacity: 0.82;
  transform: none;
  position: relative;
}

.btn.is-loading::after,
[data-vendor-link].is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  animation: vendor-spin 0.7s linear infinite;
}

@keyframes vendor-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn--primary {
  color: var(--white);
  background: #18aeb3;
  box-shadow: 0 8px 20px rgba(24, 174, 179, 0.2);
}

.btn--primary:hover {
  background: #12979b;
}

.btn--secondary {
  color: var(--white);
  background: var(--brand);
  border: 1px solid transparent;
}

.btn--secondary:hover {
  background: var(--brand-dark);
}

.btn--light {
  color: var(--brand);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--light:hover {
  background: #f1f5f9;
}

.btn--block {
  width: 100%;
}

main {
  overflow: hidden;
}

.hero,
.page-hero {
  color: var(--text);
  background: linear-gradient(180deg, #e7f6f7 0%, #f6fbfc 62%, #ffffff 100%);
}

.hero {
  padding: 56px 0 34px;
}

.page-hero {
  padding: 48px 0 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero__copy {
  padding: 18px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #d7ebec;
  background: rgba(255, 255, 255, 0.7);
  color: #2f6166;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.12;
  color: #0f172a;
}

.hero h1,
.page-hero h1,
.hero h2,
.page-hero h2,
.hero h3,
.page-hero h3 {
  color: #12363a;
}

h1 {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  font-weight: 700;
  max-width: 22ch;
}

h2 {
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 14px;
  font-size: 15px;
}

.lead {
  font-size: 15px;
  color: #456268;
  max-width: 64ch;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 14px;
}

.hero .btn--primary,
.page-hero .btn--primary {
  background: #18aeb3;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(24, 174, 179, 0.18);
}

.hero .btn--primary:hover,
.page-hero .btn--primary:hover {
  background: #12979b;
}

.hero .btn--secondary,
.page-hero .btn--secondary {
  background: var(--white);
  color: #145f63;
  border: 1px solid #cfe4e6;
}

.hero .btn--secondary:hover,
.page-hero .btn--secondary:hover {
  background: #f2fbfb;
}

.microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.microproof li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d7ebec;
  color: #315f64;
  font-weight: 700;
  font-size: 13px;
}

.trust-strip {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #d8eaec;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.trust-strip__title {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  color: #173e42;
  font-weight: 800;
}

.trust-strip__title span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef8f8;
  border: 1px solid #d7ebec;
  color: #2f6166;
  font-size: 12px;
}

.trust-strip p {
  margin: 0;
  color: #4a666b;
  font-size: 14px;
}

.secure-handoff-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid #bdebdc;
  background: #ecfdf5;
  color: #065f46;
  font-weight: 800;
  font-size: 12px;
}

.secure-handoff-badge::before {
  content: "🔒";
  line-height: 1;
}

.card,
.panel,
.quote-box,
.info-box,
.notice,
.faq-item,
.stat,
.feature,
.city-card,
.inline-visual,
.sidebar-box,
.cta-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-box {
  padding: 22px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.quote-box__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfeff;
  color: var(--brand);
  border: 1px solid #ccfbf1;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

.quote-box p {
  margin: 0;
  color: var(--muted);
}

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

.checklist li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text);
  font-size: 15px;
}

.checklist li::before {
  content: "✔";
  color: var(--brand-2);
  font-weight: 900;
}

.section {
  padding: 36px 0;
}

.section--tight {
  padding-top: 24px;
}

.section:nth-of-type(even) {
  background: #ffffff;
}

.section:nth-of-type(odd) {
  background: #f8fbfc;
}

.section-head {
  max-width: 72ch;
  margin-bottom: 22px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.feature,
.stat,
.city-card,
.info-box,
.notice,
.faq-item,
.cta-panel {
  padding: 22px;
  height: 100%;
}

.feature__icon,
.stat__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ebf9f9, #d9f1f2);
  border: 1px solid #d4ecee;
  font-size: 22px;
}

.feature p,
.info-box p,
.notice p,
.city-card p,
.faq-item p,
.stat p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step {
  padding: 18px 18px 18px 72px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
}

.step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

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

.band {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(120deg, #f1fbfb, #f8fcfc);
  border: 1px solid #d9ecee;
}

.band strong {
  color: var(--text);
}

.faqs {
  display: grid;
  gap: 14px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cta-panel {
  padding: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0C6795, #07577F);
  border: 0;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
}

.cta-panel h2,
.cta-panel h3 {
  color: var(--white);
}

.cta-panel p:not(.policy-note),
.cta-panel .lead,
.cta-panel li {
  color: #e6f6f4;
}

.cta-panel .policy-note {
  color: #5f6b76;
  background: #f7fbfc;
  border-color: #cbdfe2;
  border-left-color: var(--brand-2);
}

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

.kicker-list li {
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: #547176;
  font-size: 13px;
}

.breadcrumbs a {
  color: #547176;
}

.sidebar-box {
  padding: 22px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--panel-2);
}

.sidebar-box h3 {
  font-size: 20px;
}

.sidebar-box ul {
  padding-left: 18px;
  margin: 10px 0 0;
  color: var(--muted);
}

.inline-visual,
.hero-visual {
  overflow: hidden;
}

.inline-visual img,
.hero-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  border-radius: var(--radius);
}

.hero-visual img {
  aspect-ratio: 4 / 3;
  min-height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual__overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 122, 126, 0.1), rgba(20, 122, 126, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-visual__overlay h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--white);
}

.hero-visual__overlay p {
  margin: 0;
  color: #e6f6f4;
  font-size: 14px;
}

.inline-visual {
  display: flex;
  flex-direction: column;
  height: auto;
  max-width: 560px;
  margin: 0 auto;
}

.inline-visual img {
  aspect-ratio: 4 / 2.6;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.inline-visual__caption {
  padding: 16px 18px;
}

.inline-visual__caption h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.inline-visual__caption p {
  margin: 0;
  color: var(--muted);
}

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

.visual-grid--2 {
  grid-template-columns: repeat(2, minmax(320px, 520px));
  justify-content: center;
}

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

.policy-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px dashed #cbdfe2;
  border-left: 4px solid var(--brand-2);
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
  background: #f7fbfc;
}

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

.page-list a {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.page-list a:hover {
  transform: translateY(-1px);
  background: var(--bg-soft);
  border-color: #cbd5e1;
}

.page-list a span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}

.footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: #edf5f6;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
  padding: 34px 0;
}

.footer h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text);
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
  font-size: 13px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: #94a3b8;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 55;
  display: none;
}

.sticky-cta .btn {
  width: 100%;
  min-height: 54px;
  font-size: 15px;
}

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

@media (max-width: 1080px) {
  .hero__grid,
  .split,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

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

  .sidebar-box {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(6, 71, 102, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    color: rgba(255, 255, 255, 0.92);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta .phone-chip {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .visual-grid--2,
  .visual-grid--3 {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual img {
    aspect-ratio: 16 / 11;
  }

  .sticky-cta {
    display: block;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 40px;
  }

  .page-hero {
    padding-top: 30px;
  }

  h1 {
    font-size: 20px;
  }

  .quote-box,
  .feature,
  .stat,
  .city-card,
  .info-box,
  .notice,
  .faq-item,
  .cta-panel,
  .sidebar-box,
  .trust-strip {
    padding: 18px;
  }

  .microproof li {
    width: 100%;
    border-radius: 14px;
  }

  .hero-visual__overlay {
    inset: auto 12px 12px 12px;
    padding: 14px;
  }

  .hero-visual__overlay h3 {
    font-size: 18px;
  }

  .inline-visual__caption {
    padding: 14px 16px;
  }
}



/* DALLAS HERO MASTER LAYOUT — GLOBAL */

.page-hero > .container{
display:grid;
grid-template-columns:minmax(0,1fr) minmax(340px,420px);
column-gap:72px;
align-items:start;
}

.page-hero .breadcrumbs{
grid-column:1 / -1;
margin-bottom:22px;
}

.page-hero .hero-copy{
grid-column:1;
}

.page-hero .hero-media{
grid-column:2;
display:flex;
justify-content:center;
align-items:flex-start;
padding-top:8px;
}

.page-hero .hero-media img{
width:100%;
max-width:400px;
max-height:295px;
object-fit:cover;
object-position:center;
border-radius:18px;
box-shadow:0 12px 30px rgba(15,23,42,.12);
}

.page-hero h1{
font-size:clamp(22px,2.15vw,32px);
line-height:1.16;
letter-spacing:-0.012em;
max-width:60ch;
width:100%;
margin-bottom:18px;
}

.page-hero .lead{
font-size:15px;
line-height:1.65;
max-width:60ch;
}

.page-hero .trust-strip,
.page-hero .cta-row,
.page-hero .policy-note,
.page-hero > .container > p:not(.lead){
grid-column:1 / -1;
}

@media (max-width:768px){

.page-hero > .container{
display:block;
}

.page-hero h1{
font-size:clamp(22px,6vw,28px);
line-height:1.14;
max-width:20ch;
}

.page-hero .hero-media{
margin:18px auto 8px;
}

.page-hero .hero-media img{
max-width:92%;
max-height:220px;
margin:auto;
}

.site-header__wrap{
gap:14px;
}

.logo{
transform:scale(.92);
transform-origin:left center;
}

.header-cta .btn{
font-size:14px;
padding:12px 18px;
line-height:1.2;
max-width:245px;
}

.sticky-cta .btn{
font-size:15px;
padding:14px 20px;
}

body{
padding-bottom:92px;
}

}

/* ===== SECTION IMAGE SIZE FIX — DOES NOT AFFECT HERO IMAGES ===== */

.section > .container > img {
  width: 100%;
  max-width: 760px;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  margin: 0 auto 28px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}