:root {
  --navy: #071523;
  --navy-2: #0c2033;
  --steel: #334152;
  --gray: #6a7480;
  --line: #d9dde2;
  --light: #f4f6f8;
  --white: #ffffff;
  --orange: #ff6708;
  --orange-dark: #d94d00;
  --yellow: #f8d23a;
  --shadow: 0 20px 60px rgba(7, 21, 35, 0.18);
  color: var(--navy);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--white);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 12px max(18px, 5%);
  border-bottom: 1px solid rgba(7, 21, 35, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  width: 260px;
  max-width: 48vw;
}

.brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav a {
  padding: 10px 0;
}

nav a:hover,
nav a:focus-visible {
  color: var(--orange-dark);
}

nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--orange-dark);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.tab-panel[hidden] {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--orange);
}

.button {
  padding: 0 22px;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 28px rgba(255, 103, 8, 0.26);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(7, 21, 35, 0.14);
}

.section {
  padding: 90px max(18px, 5%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: 64px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(7, 21, 35, 0.98), rgba(12, 32, 51, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 103, 8, 0.2) 0 12px, transparent 12px 32px);
}

.hero::before {
  position: absolute;
  right: -8%;
  bottom: -26%;
  left: 48%;
  height: 68%;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent 0 34%,
      rgba(255, 255, 255, 0.22) 34% 38%,
      transparent 38% 58%,
      rgba(248, 210, 58, 0.8) 58% 61%,
      transparent 61%
    ),
    #0a0f14;
  opacity: 0.72;
  transform: skewX(-18deg) rotate(-4deg);
}

.hero-copy,
.hero-board {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: 6rem;
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 930;
  letter-spacing: 0;
}

.hero-message {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.24rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 28px;
}

.hours-strip {
  display: grid;
  width: min(100%, 620px);
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  align-items: center;
  padding: 16px 18px;
  border-left: 5px solid var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

.hours-strip span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hours-strip strong {
  color: var(--white);
}

.hero-board {
  align-self: stretch;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(2, 7, 12, 0.46);
  background-size: 34px 34px;
  box-shadow: var(--shadow);
}

.board-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.board-topline strong {
  color: var(--white);
}

.route-lines {
  position: relative;
  height: 150px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 103, 8, 0.16), transparent);
}

.route-lines span {
  position: absolute;
  left: -10%;
  width: 124%;
  height: 4px;
  background: var(--white);
  transform-origin: left center;
}

.route-lines span:nth-child(1) {
  top: 35%;
  transform: rotate(11deg);
}

.route-lines span:nth-child(2) {
  top: 55%;
  background: var(--yellow);
  transform: rotate(-8deg);
}

.route-lines span:nth-child(3) {
  top: 72%;
  transform: rotate(5deg);
}

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

.board-grid div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.board-label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.contact p,
.request-intro p,
.price-card p,
.steps p,
.benefit-grid p,
.faq p {
  color: var(--gray);
  line-height: 1.65;
}

.process {
  background: var(--light);
}

.steps,
.pricing-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article,
.benefit-grid article,
.price-card,
.contact-panel,
.tcp-form,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps article {
  min-height: 210px;
  padding: 28px;
}

.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 2.6rem;
  font-weight: 950;
  line-height: 1;
}

.services {
  background: var(--white);
}

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

.benefit-grid article {
  min-height: 180px;
  padding: 26px;
  overflow: hidden;
}

.stripe {
  display: block;
  width: 72px;
  height: 8px;
  margin-bottom: 34px;
  background: repeating-linear-gradient(
    135deg,
    var(--orange) 0 10px,
    var(--navy) 10px 20px
  );
}

.pricing {
  color: var(--white);
  background: var(--navy);
}

.pricing .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

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

.price-card {
  position: relative;
  min-height: 350px;
  padding: 28px;
  color: var(--navy);
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 22px 50px rgba(255, 103, 8, 0.25);
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price {
  display: grid;
  gap: 2px;
  margin: 22px 0;
}

.price strong {
  color: var(--orange-dark);
  font-size: 3rem;
  line-height: 1;
}

.price span,
.turnaround {
  font-weight: 850;
}

.faq {
  background:
    linear-gradient(90deg, rgba(255, 103, 8, 0.08), transparent 38%),
    var(--light);
}

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

.faq details {
  padding: 22px 24px;
}

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

.faq details[open] summary {
  margin-bottom: 12px;
}

.contact {
  background: var(--white);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  padding: 52px;
  border-left: 8px solid var(--orange);
  box-shadow: var(--shadow);
}

.contact dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact dl div {
  padding: 16px;
  background: var(--light);
}

.contact dt {
  margin-bottom: 6px;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.request {
  color: var(--white);
  background: var(--navy);
}

.request-intro {
  max-width: 920px;
  margin-bottom: 34px;
}

.request-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.tcp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  padding: 42px;
  color: var(--navy);
}

.tcp-form label {
  display: grid;
  gap: 8px;
}

.tcp-form label span {
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 900;
}

.tcp-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd1d8;
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
}

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

input:focus,
select:focus,
textarea:focus,
summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 103, 8, 0.35);
  outline-offset: 3px;
}

.upload input {
  padding: 10px;
}

.upload small {
  color: var(--gray);
}

.terms {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  padding: 18px;
  background: var(--light);
}

.terms input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.terms span {
  line-height: 1.55;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.form-actions p {
  max-width: 620px;
  margin: 0;
  color: var(--steel);
  font-weight: 800;
  line-height: 1.5;
}

.turnstile-wrap {
  display: grid;
  gap: 8px;
}

.turnstile-wrap small {
  color: var(--gray);
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-actions p.success {
  color: #17683a;
}

.form-actions p.error {
  color: #a3291d;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(18px, 5%);
  color: var(--white);
  background: #02070c;
}

footer img {
  width: 190px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

footer a {
  color: var(--orange);
  font-weight: 950;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-board {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    justify-content: flex-start;
    width: 100%;
    font-size: 0.78rem;
  }

  .brand {
    width: 230px;
    max-width: 74vw;
  }

  .section {
    padding: 64px 16px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.32rem;
  }

  .hours-strip,
  .board-grid,
  .steps,
  .pricing-grid,
  .benefit-grid,
  .tcp-form {
    grid-template-columns: 1fr;
  }

  .steps article,
  .price-card,
  .benefit-grid article {
    min-height: auto;
  }

  .contact-panel,
  .tcp-form {
    padding: 24px;
  }

  .tcp-form .full {
    grid-column: auto;
  }

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

@media (max-width: 450px) {
  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .button,
  .nav-cta {
    width: 100%;
  }
}

/* Professional layout refinement */
:root {
  --navy: #0a1825;
  --navy-2: #132638;
  --steel: #344452;
  --gray: #65717c;
  --line: #d8dde1;
  --light: #f3f5f6;
  --orange: #ed5f12;
  --orange-dark: #c94705;
  --shadow: 0 14px 34px rgba(10, 24, 37, 0.12);
}

.site-header {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 10px 36px;
  min-height: 104px;
  padding: 14px max(24px, 5%);
  background: #fff;
  box-shadow: 0 3px 18px rgba(10, 24, 37, 0.08);
}

.brand {
  grid-row: 1 / 3;
  align-self: center;
  width: 250px;
  max-width: none;
}

.brand img {
  max-height: 70px;
}

.header-meta {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  color: var(--gray);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.header-meta strong {
  color: var(--navy);
}

nav {
  flex-wrap: nowrap;
  gap: 2px;
  border-top: 1px solid var(--line);
}

nav a {
  padding: 13px 15px 10px;
  font-size: 0.76rem;
}

nav a[aria-current="page"]:not(.nav-cta) {
  background: var(--light);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.nav-cta {
  min-height: 38px;
  margin-left: 10px;
  padding: 0 17px;
}

.hero {
  min-height: 610px;
  grid-template-columns: minmax(0, 760px);
  align-content: center;
  padding-top: 76px;
  padding-bottom: 76px;
  background:
    linear-gradient(90deg, rgba(5, 15, 24, 0.97) 0%, rgba(5, 15, 24, 0.88) 38%, rgba(5, 15, 24, 0.38) 72%, rgba(5, 15, 24, 0.16) 100%),
    url('/assets/atlas-plan-hero.png') center right / cover no-repeat;
}

.hero::before,
.hero-board {
  display: none;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.45rem;
  line-height: 1.02;
}

h2 {
  font-size: 2.7rem;
  line-height: 1.08;
}

.hero-message {
  max-width: 690px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  margin: 28px 0 30px;
}

.button {
  min-height: 46px;
  border-radius: 3px;
  padding: 0 20px;
  font-size: 0.9rem;
}

.button.primary {
  box-shadow: none;
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--orange-dark);
}

.hours-strip {
  width: fit-content;
  padding: 12px 16px;
  background: rgba(3, 10, 16, 0.68);
}

.section {
  padding: 72px max(24px, 7%);
}

.process {
  border-top: 5px solid var(--orange);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.steps,
.benefit-grid,
.pricing-grid {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.steps article,
.benefit-grid article,
.price-card {
  border: 0;
  border-radius: 0;
}

.steps article {
  min-height: 190px;
  padding: 26px;
}

.steps span {
  margin-bottom: 24px;
  font-size: 1rem;
}

.services,
.faq,
.contact,
.request,
.pricing {
  min-height: calc(100vh - 190px);
}

.services,
.contact {
  background: #fff;
}

.services .section-heading,
.faq .section-heading,
.contact-panel > div,
.request-intro,
.pricing .section-heading {
  padding-top: 18px;
  border-top: 4px solid var(--orange);
}

.benefit-grid article {
  min-height: 220px;
  padding: 30px;
}

.stripe {
  width: 42px;
  height: 4px;
  margin-bottom: 38px;
  background: var(--orange);
}

.pricing {
  background: #101f2d;
}

.pricing-grid {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
}

.price-card {
  min-height: 370px;
  padding: 28px 24px;
  box-shadow: inset 0 5px 0 var(--orange);
}

.price-card.featured {
  border-top: 0;
  box-shadow: inset 0 5px 0 var(--orange);
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 2px;
  margin: 0;
}

.price-card h3 {
  min-height: 46px;
  padding-right: 0;
}

.price-card.featured h3 {
  padding-right: 118px;
}

.faq {
  background: var(--light);
}

.faq-list {
  max-width: 900px;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq details {
  border: 0;
  border-radius: 0;
  padding: 23px 26px;
}

.contact-panel,
.tcp-form {
  border-radius: 0;
}

.contact-panel {
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  box-shadow: none;
}

.request {
  background: #101f2d;
}

.tcp-form {
  border: 0;
  padding: 38px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

input,
select,
textarea {
  border-radius: 3px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    grid-row: auto;
  }

  .header-meta {
    display: none;
  }

  nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 560px;
    background-position: 62% center;
  }

  h1 {
    font-size: 3.6rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
    gap: 8px;
    padding: 10px 16px 0;
  }

  .brand {
    width: 220px;
  }

  nav {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 0 12px;
    scrollbar-width: none;
  }

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

  .nav-cta {
    width: auto;
    margin-left: 8px;
  }

  .hero {
    min-height: 590px;
    padding: 68px 20px;
    background-position: 68% center;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .section {
    padding: 56px 20px;
  }
}

.mini-label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 26px 30px;
  color: var(--white);
  background: var(--navy);
}

.home-cta h3 {
  max-width: 620px;
  margin: 0;
  font-size: 1.35rem;
}

.home-cta .mini-label,
.pricing-notes .mini-label,
.request .mini-label {
  color: var(--orange);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  max-width: 1180px;
  margin-bottom: 38px;
  border: 1px solid var(--line);
  background: var(--navy);
}

.plan-preview {
  min-height: 440px;
  background:
    linear-gradient(90deg, transparent 70%, rgba(10, 24, 37, 0.7)),
    url('/assets/atlas-plan-hero.png') center / cover no-repeat;
}

.service-feature-copy {
  align-self: center;
  padding: 42px;
  color: var(--white);
}

.service-feature-copy h3 {
  max-width: 560px;
  font-size: 2rem;
}

.service-feature-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--orange);
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--orange);
  color: inherit;
  font-weight: 900;
}

.service-feature .text-link,
.faq-aside .text-link {
  color: var(--white);
}

.pricing-notes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 30px;
  padding: 30px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-notes h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.pricing-notes p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
  gap: 28px;
  max-width: 1180px;
  align-items: start;
}

.faq-aside {
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  border-top: 5px solid var(--orange);
}

.faq-aside h3 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.faq-aside p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-aside a {
  display: block;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.contact-actions article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--light);
}

.contact-actions h3 {
  font-size: 1.55rem;
}

.contact-actions p {
  max-width: 640px;
  color: var(--gray);
  line-height: 1.65;
}

.contact-hours {
  margin-bottom: 8px;
  color: var(--orange-dark) !important;
  font-size: 1.35rem;
  font-weight: 950;
}

.intake-guide {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: 30px;
  max-width: 1120px;
  margin-bottom: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.intake-guide h3 {
  margin: 0;
  font-size: 1.35rem;
}

.intake-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intake-items li {
  display: grid;
  gap: 4px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
}

.intake-items strong {
  color: var(--white);
  font-size: 0.88rem;
}

.intake-items span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .service-feature,
  .faq-layout,
  .intake-guide {
    grid-template-columns: 1fr;
  }

  .plan-preview {
    min-height: 350px;
  }
}

@media (max-width: 760px) {
  .home-cta,
  .pricing-notes {
    align-items: stretch;
    flex-direction: column;
  }

  .service-feature-copy {
    padding: 28px 24px;
  }

  .service-feature-copy h3 {
    font-size: 1.65rem;
  }

  .contact-actions,
  .intake-items {
    grid-template-columns: 1fr;
  }

  .intake-guide,
  .pricing-notes,
  .home-cta {
    padding: 24px;
  }

  .price-card h3 {
    min-height: auto;
    padding-right: 0;
  }

  .badge {
    position: static;
    margin-bottom: 18px;
  }
}

/* Unified dark page system and clear active navigation */
.process,
.about,
.services,
.faq,
.contact,
.request,
.pricing {
  color: var(--white);
  background: #101f2d;
}

.process .section-heading p:not(.eyebrow),
.services .section-heading p:not(.eyebrow),
.faq .section-heading p:not(.eyebrow),
.request-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.process .section-heading,
.services .section-heading,
.faq .section-heading {
  padding-top: 18px;
  border-top: 4px solid var(--orange);
}

.steps article,
.benefit-grid article,
.contact-panel,
.contact-actions article {
  color: var(--navy);
}

.service-feature,
.faq-list,
.contact-panel {
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-actions article {
  background: var(--white);
}

.nav-cta {
  color: var(--white);
  background: var(--navy);
}

nav a[aria-current="page"],
nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--white);
  background: var(--orange);
  box-shadow: inset 0 -4px 0 var(--orange-dark);
}

nav a[aria-current="page"]:hover,
nav a[aria-current="page"]:focus-visible {
  color: var(--white);
  background: var(--orange-dark);
}

.about {
  min-height: calc(100vh - 190px);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  max-width: 1220px;
  border-top: 5px solid var(--orange);
  background: var(--white);
}

.about-copy {
  align-self: center;
  padding: 54px;
  color: var(--navy);
}

.about-copy h2 {
  font-size: 3rem;
}

.about-lead {
  max-width: 680px;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.72;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-image {
  min-height: 500px;
  background: url('/assets/atlas-plan-hero.png') 68% center / cover no-repeat;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1220px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.about-principles article {
  min-height: 230px;
  padding: 30px;
  background: #162838;
}

.about-principles span {
  display: block;
  margin-bottom: 38px;
  color: var(--orange);
  font-weight: 950;
}

.about-principles p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.about-contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px;
  align-items: center;
  max-width: 1220px;
  margin-top: 28px;
  padding: 30px;
  border-left: 5px solid var(--orange);
  color: var(--navy);
  background: var(--white);
}

.about-contact h3 {
  margin: 0;
  font-size: 1.45rem;
}

.about-contact dl {
  display: grid;
  grid-template-columns: minmax(250px, 1.4fr) minmax(140px, 0.8fr) minmax(210px, 1.1fr);
  gap: 16px;
  margin: 0;
}

.about-contact dl div:first-child a {
  white-space: nowrap;
}

.about-contact dt {
  margin-bottom: 6px;
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.about-contact dd {
  margin: 0;
  font-weight: 850;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .about-intro,
  .about-contact {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }

  .about-principles,
  .about-contact dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-copy {
    padding: 30px 24px;
  }

  .about-copy h2 {
    font-size: 2.2rem;
  }

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

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.preview-button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 2px solid var(--orange);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.plan-dialog {
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.plan-dialog::backdrop {
  background: rgba(3, 10, 16, 0.82);
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px 20px;
  border-top: 5px solid var(--orange);
  border-bottom: 1px solid var(--line);
}

.dialog-header h2 {
  margin: 0;
  font-size: 1.75rem;
}

.dialog-close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.plan-dialog figure {
  margin: 0;
}

.plan-dialog img {
  width: 100%;
  max-height: 68vh;
  object-fit: cover;
}

.plan-dialog figcaption {
  padding: 16px 28px 22px;
  color: var(--gray);
  font-size: 0.86rem;
  line-height: 1.55;
}

.mobile-request {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 62px;
  }

  .mobile-request {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    border-top: 3px solid var(--orange-dark);
    color: var(--white);
    background: var(--orange);
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 -8px 24px rgba(3, 10, 16, 0.28);
  }

  .plan-dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
  }

  .dialog-header,
  .plan-dialog figcaption {
    padding-right: 20px;
    padding-left: 20px;
  }
}
