:root {
  --navy-950: #030a18;
  --navy-900: #07152f;
  --navy-800: #0b2148;
  --blue-700: #1c55a4;
  --blue-600: #2d6dca;
  --blue-500: #4d88e3;
  --blue-200: #c8dcfb;
  --slate-900: #121a26;
  --slate-700: #3e4b5c;
  --slate-500: #718096;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --success: #28c08b;
  --shadow: 0 22px 60px rgba(3, 10, 24, .16);
  --radius: 22px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.sr-only, .honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-dark { color: var(--white); background: var(--navy-950); }
.section-tint { background: linear-gradient(180deg, #f6f9fd, #edf3fa); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-600);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #8bb8ff; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.6rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: 1.28rem; }
p { margin-top: 0; }
.section-heading { max-width: 780px; margin-bottom: 54px; }
.section-heading > p:last-child { color: var(--slate-700); font-size: 1.08rem; }
.section-dark .section-heading > p:last-child { color: #b7c5d8; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 10, 24, .92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
}
.header-inner {
  width: min(calc(100% - 34px), 1260px);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { flex: 0 1 430px; display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark-frame { flex: 0 0 58px; width: 58px; height: 58px; padding: 3px; overflow: hidden; border-radius: 12px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.26); }
.brand-mark-frame img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { display: grid; line-height: 1; color: var(--white); }
.brand-name strong { font-size: clamp(.98rem, 2vw, 1.25rem); letter-spacing: .1em; }
.brand-name small { margin-top: 7px; color: #a9c5ed; font-size: .65rem; font-weight: 900; letter-spacing: .2em; }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a { color: #dce6f4; text-decoration: none; font-weight: 700; font-size: .92rem; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 27px; height: 2px; margin: 6px; background: var(--white); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible {
  outline: 3px solid #93baff;
  outline-offset: 3px;
}
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--blue-600), #174789); box-shadow: 0 13px 30px rgba(45,109,202,.3); }
.button-secondary { color: var(--navy-900); background: var(--white); border-color: var(--slate-300); }
.section-dark .button-secondary { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); }
.button-small { min-height: 42px; padding: 8px 15px; font-size: .87rem; }
.button-full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }

.hero { position: relative; overflow: hidden; padding: 34px 0 90px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .3; }
.hero-glow-one { width: 520px; height: 520px; background: #1d5ebf; right: -170px; top: -160px; }
.hero-glow-two { width: 360px; height: 360px; background: #4d88e3; left: -160px; bottom: -200px; }
.hero-art {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(151,190,249,.28);
  border-radius: 28px;
  background: #020815;
  box-shadow: 0 34px 90px rgba(0,0,0,.48), 0 0 44px rgba(45,109,202,.18);
}
.hero-art img { width: 100%; height: auto; }
.hero-copy-centered { position: relative; z-index: 1; max-width: 980px; margin: 58px auto 0; text-align: center; }
.hero-copy-centered h1, .hero-copy-centered .hero-lead { margin-left: auto; margin-right: auto; }
.hero-copy-centered .button-row, .hero-copy-centered .trust-strip { justify-content: center; }
.hero-lead { max-width: 800px; color: #bdc9d9; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; color: #9fb0c5; font-weight: 700; font-size: .9rem; }
.trust-strip span::before { content: "✓"; color: var(--success); margin-right: 8px; }

.problem-band { color: var(--white); background: linear-gradient(90deg, #113469, #174d92); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.problem-grid div { padding: 26px 24px; border-right: 1px solid rgba(255,255,255,.15); }
.problem-grid div:last-child { border-right: 0; }
.problem-grid strong, .problem-grid span { display: block; }
.problem-grid span { color: #c9d9ee; font-size: .88rem; }

.card-grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { padding: 30px; border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 40px rgba(20,40,70,.06); }
.service-card:hover { border-color: #a9c7f3; box-shadow: var(--shadow); }
.icon-box { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; color: var(--white); border-radius: 14px; background: linear-gradient(145deg, #2d6dca, #0d2b5b); font-weight: 900; }
.service-card p { color: var(--slate-700); }
.service-card ul { margin: 20px 0 0; padding-left: 20px; color: var(--slate-700); }
.service-card li + li { margin-top: 7px; }

.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card { position: relative; overflow: hidden; min-height: 240px; padding: 28px; color: var(--white); border-radius: var(--radius); background: linear-gradient(145deg, #102f62, #07152f); }
.industry-card::after { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; right: -55px; bottom: -60px; background: rgba(78,139,230,.18); }
.industry-card span { display: block; margin-bottom: 45px; color: #8fb9f6; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; font-size: .78rem; }
.industry-card p { position: relative; z-index: 1; margin-bottom: 0; font-size: 1.03rem; font-weight: 650; }

.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--slate-200); }
.process-list li { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid var(--slate-200); }
.process-list > li > span { color: var(--blue-600); font-size: 1.8rem; font-weight: 900; }
.process-list h3 { margin-bottom: 7px; font-size: 1.5rem; }
.process-list p { max-width: 800px; margin-bottom: 0; color: var(--slate-700); }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.price-card.featured { border-color: #4f8be3; background: linear-gradient(160deg, rgba(45,109,202,.3), rgba(255,255,255,.05)); transform: translateY(-10px); }
.price-label { color: #8fb9f6; font-size: .75rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.price { margin: 10px 0 18px; font-size: 2.15rem; font-weight: 900; }
.price span { color: #9fb0c5; font-size: .8rem; font-weight: 650; }
.price-card > p:not(.price-label):not(.price) { color: #b9c6d8; }
.text-link { margin-top: auto; color: #9dc5ff; font-weight: 800; text-decoration: none; }
.payment-callout { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 42px; padding: 32px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.payment-callout h3 { margin-bottom: 8px; font-size: 1.5rem; }
.payment-callout p:last-child { margin-bottom: 0; color: #b8c6d8; }

.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 65px; align-items: center; }
.about-mark { min-height: 430px; display: grid; place-items: center; padding: 28px; border-radius: 32px; background: var(--white); overflow: hidden; box-shadow: var(--shadow); }
.about-mark img { width: min(100%, 520px); height: auto; object-fit: contain; }
.about-copy > p { color: var(--slate-700); font-size: 1.05rem; }
.value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0; }
.value-list span { padding: 12px 14px; border-left: 3px solid var(--blue-600); background: var(--slate-100); font-weight: 750; }
.legal-line { padding-top: 22px; border-top: 1px solid var(--slate-200); }


.texas-spotlight {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5,15,38,.92), rgba(5,15,38,.97)),
    radial-gradient(circle at top right, rgba(74,133,226,.16), transparent 36%);
}
.texas-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 96%);
  pointer-events: none;
}
.texas-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 42px;
  align-items: center;
}
.texas-copy p:not(.eyebrow) { color: #c7d5e7; max-width: 760px; }
.texas-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 26px;
}
.texas-points span {
  padding: 14px 16px;
  color: #edf4ff;
  border: 1px solid rgba(255,255,255,.14);
  border-left: 3px solid #4f8be3;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  font-weight: 750;
}
.texas-feature {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(151,190,249,.22);
  box-shadow: 0 26px 70px rgba(0,0,0,.32);
  background: #07142d;
}
.texas-feature img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-section {
 background: #eef3f9; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; }
.contact-copy { position: sticky; top: 120px; align-self: start; }
.contact-details { margin-top: 35px; }
.contact-details div { padding: 18px 0; border-top: 1px solid #cbd7e5; }
.contact-details strong, .contact-details span { display: block; }
.contact-details span { color: var(--slate-700); }
.contact-form { padding: 34px; border: 1px solid #d3deeb; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
label { display: grid; gap: 7px; margin-bottom: 17px; color: var(--slate-900); font-weight: 750; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
input, textarea, select { width: 100%; color: var(--slate-900); border: 1px solid #b9c6d5; border-radius: 10px; background: var(--white); padding: 12px 13px; }
textarea { resize: vertical; min-height: 130px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; }
.checkbox-label input { width: 18px; height: 18px; margin-top: 3px; }
.form-note { margin: 14px 0 0; color: var(--slate-500); font-size: .78rem; }

.site-footer { padding: 70px 0 24px; color: #c3cfde; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .6fr .8fr; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.footer-logo { width: 88px; height: 88px; object-fit: contain; border-radius: 16px; background: var(--white); }
.footer-brand > div { display: grid; line-height: 1.05; }
.footer-brand strong { color: var(--white); font-size: 1.2rem; letter-spacing: .1em; }
.footer-brand span { margin-top: 8px; color: #9ebce5; font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.site-footer h2 { color: var(--white); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a { display: block; margin: 7px 0; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .83rem; }
.footer-button { color: #c5d9f7; border: 0; background: transparent; font-weight: 800; }

.payment-dialog { width: min(calc(100% - 24px), 720px); max-height: calc(100dvh - 30px); padding: 0; border: 0; border-radius: 24px; box-shadow: 0 35px 100px rgba(0,0,0,.48); }
.payment-dialog::backdrop { background: rgba(3,10,24,.78); backdrop-filter: blur(7px); }
.payment-shell { padding: 30px; }
.dialog-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.dialog-close { width: 42px; height: 42px; color: var(--navy-900); border: 1px solid var(--slate-300); border-radius: 50%; background: var(--white); font-size: 1.7rem; line-height: 1; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 20px; }
.payment-status { min-height: 24px; margin-top: 12px; color: var(--blue-700); font-weight: 750; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }



/* Artwork integration update */
.hero {
  background:
    linear-gradient(180deg, rgba(4,13,31,.82), rgba(4,13,31,.95)),
    url("assets/texas-hero-panorama-wide.png") center top / cover no-repeat;
}
.hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at top center, rgba(111,178,255,.18), transparent 42%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 210px;
  background: linear-gradient(180deg, rgba(4,13,31,0), rgba(4,13,31,.88));
  pointer-events: none;
}
.hero-art {
  max-width: 1200px;
  margin-inline: auto;
}
.problem-band {
  position: relative;
  overflow: hidden;
}
.problem-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.07), transparent 38%, transparent 62%, rgba(255,255,255,.05));
  pointer-events: none;
}
.services-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  margin: 0 auto 34px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(45,109,202,.18);
  background: linear-gradient(145deg, #06142e, #0c2048);
  box-shadow: 0 24px 70px rgba(20,40,70,.18);
}
.services-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238,243,249,.98), rgba(238,243,249,.98)),
    url("assets/texas-light-showcase.png") right top / min(44vw, 560px) auto no-repeat;
}
.contact-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -90px;
  width: min(40vw, 420px);
  aspect-ratio: 1 / 1;
  background: url("assets/texas-light-showcase.png") center / contain no-repeat;
  opacity: .28;
  pointer-events: none;
}
.contact-grid, .contact-form, .contact-copy { position: relative; z-index: 1; }
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4,13,31,.94), rgba(4,13,31,.98)),
    url("assets/footer-panorama-wide.png") center / cover no-repeat;
}
.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  width: min(29vw, 350px);
  aspect-ratio: 1 / 1;
  opacity: .88;
  pointer-events: none;
}
.site-footer::before {
  left: -36px;
  bottom: 0;
  background: url("assets/texas-corner-dark.png") left bottom / contain no-repeat;
}
.site-footer::after {
  right: -36px;
  top: 0;
  background: url("assets/texas-corner-dark.png") right top / contain no-repeat;
}
.footer-grid, .footer-bottom { position: relative; z-index: 1; }

@media (max-width: 620px) {
  .brand { gap: 9px; }
  .brand-mark-frame { flex-basis: 50px; width: 50px; height: 50px; }
  .brand-name strong { font-size: .82rem; }
  .brand-name small { font-size: .52rem; letter-spacing: .14em; }
}

@media (max-width: 1050px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 24px;
    background: rgba(3,10,24,.98);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px 5px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav .button { margin-top: 14px; }
  .about-grid, .contact-grid, .texas-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid div:nth-child(2) { border-right: 0; }
  .problem-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .contact-copy { position: static; }
  .price-card.featured { transform: none; }
  .site-footer::before, .site-footer::after { width: 260px; opacity: .62; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 68px; }
  .brand { flex-basis: 270px; }
  .site-nav { inset: 68px 0 auto 0; }
  .hero { padding: 18px 0 60px; background-position: center top; }
  .hero-art { border-radius: 17px; }
  .hero-copy-centered { margin-top: 36px; }
  .services-visual { width: min(100%, 320px); margin-bottom: 28px; }
  .texas-feature { border-radius: 20px; }
  .contact-section { background-size: 270px auto; }
  .contact-section::after { width: 240px; right: -80px; bottom: -45px; }
  .site-footer::before, .site-footer::after { width: 210px; opacity: .5; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .problem-grid, .services-grid, .industry-grid, .pricing-grid, .form-row, .value-list, .footer-grid, .texas-points { grid-template-columns: 1fr; }
  .problem-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .process-list li { grid-template-columns: 65px 1fr; }
  .payment-callout, .footer-bottom { align-items: stretch; flex-direction: column; }
  .about-mark { min-height: 300px; }
  .contact-form, .payment-shell { padding: 22px; }
  .dialog-actions { flex-direction: column-reverse; }
  .dialog-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
