:root {
  --brand-blue: #0090ff;
  --brand-blue-dark: #075d9d;
  --brand-orange: #ffa200;
  --ink: #16324f;
  --text: #24384d;
  --muted: #607286;
  --paper: #ffffff;
  --soft: #eef6fb;
  --soft-warm: #fff7e8;
  --footer: #153b5a;
  --shadow: 0 18px 45px rgba(22, 50, 79, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 110px;
  padding: 10px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(22, 50, 79, 0.08);
  box-shadow: 0 5px 24px rgba(22, 50, 79, 0.06);
}

.logo-link {
  flex: 0 0 auto;
}

.logo-link img {
  width: auto;
  height: clamp(72px, 7vw, 96px);
  max-width: min(300px, 58vw);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--brand-orange);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  min-height: clamp(560px, 74vh, 760px);
  background: url("assets/hero-home-office.jpg") center / cover no-repeat;
}

.hero-overlay {
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: clamp(72px, 10vw, 130px) clamp(22px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(9, 31, 50, 0.86) 0%, rgba(9, 31, 50, 0.74) 43%, rgba(9, 31, 50, 0.28) 100%),
    linear-gradient(0deg, rgba(9, 31, 50, 0.2), rgba(9, 31, 50, 0.2));
}

.hero-content {
  max-width: 810px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-orange);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.12;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(2.25rem, 4vw, 3.85rem);
  letter-spacing: 0;
  max-width: 820px;
}

.hero-copy {
  max-width: 700px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.button-primary {
  color: #15324e;
  background: var(--brand-orange);
  box-shadow: 0 14px 30px rgba(255, 162, 0, 0.24);
}

.button-primary:hover {
  background: #ffb42e;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 86px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.plan-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.pain-section {
  background: linear-gradient(180deg, #f7fbfe 0%, var(--soft) 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.pain-card {
  min-height: 315px;
  padding: 34px 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 144, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pain-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
}

.pain-card h3 {
  margin-bottom: 14px;
  color: var(--brand-blue-dark);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
}

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

.plan-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.82fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.plan-copy p {
  margin: 24px 0 0;
}

.plan-copy h3 {
  margin-top: 34px;
  color: var(--brand-blue-dark);
  font-size: 1.35rem;
}

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

.steps-list li {
  padding-left: 18px;
  border-left: 4px solid var(--brand-orange);
}

.steps-list strong {
  color: var(--ink);
}

.plan-image-wrap {
  position: relative;
}

.plan-image-wrap::before {
  position: absolute;
  inset: 22px -18px -18px 22px;
  z-index: -1;
  content: "";
  background: var(--soft-warm);
  border-radius: var(--radius);
}

.plan-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(22, 50, 79, 0.18);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 26px 48px;
  align-items: center;
  padding: 48px clamp(20px, 6vw, 86px);
  color: #ffffff;
  background: var(--footer);
}

.footer-brand img {
  width: min(310px, 80vw);
  height: auto;
  max-height: 110px;
  margin-bottom: 14px;
  border-radius: 4px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: flex-end;
  font-weight: 700;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.placeholder-page {
  max-width: 840px;
  min-height: 52vh;
  margin: 0 auto;
  padding: 96px 24px;
}

.placeholder-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

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

.page-hero {
  padding: clamp(72px, 10vw, 128px) clamp(22px, 7vw, 96px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(9, 31, 50, 0.88), rgba(9, 31, 50, 0.62)),
    url("assets/hero-home-office.jpg") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 900px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.85rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.portrait-wrap img,
.rich-copy img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rich-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.rich-copy p {
  margin: 20px 0 0;
}

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

.two-card-grid,
.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.info-card,
.service-card,
.expect-grid article,
.three-column-list article,
.contact-card,
.blog-card {
  background: #ffffff;
  border: 1px solid rgba(0, 144, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card,
.expect-grid article,
.three-column-list article {
  padding: 30px;
}

.info-card h3,
.expect-grid h3,
.three-column-list h3,
.contact-card h2,
.blog-card h2 {
  color: var(--brand-blue-dark);
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
}

.info-card p,
.expect-grid p,
.three-column-list p,
.blog-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand-blue-dark);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.three-column-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.three-column-list span,
.process-timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #15324e;
  background: var(--brand-orange);
  border-radius: 999px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.service-card h2 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.service-card p {
  margin: 18px 0 0;
}

.featured-service {
  border-color: rgba(255, 162, 0, 0.45);
}

.price-label,
.category {
  margin: 0 0 10px;
  color: var(--brand-orange);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  content: "✓";
  font-weight: 800;
}

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

.process-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.process-timeline article {
  padding: 34px;
  border-left: 5px solid var(--brand-blue);
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-timeline h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.process-timeline p {
  margin: 16px 0 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 144, 255, 0.14);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
}

.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.contact-card {
  padding: 32px;
}

.contact-card dl {
  display: grid;
  gap: 20px;
  margin: 22px 0 0;
}

.contact-card dt {
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
}

.contact-card dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.contact-card a {
  color: var(--brand-blue-dark);
  font-weight: 700;
}

.center-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card div {
  padding: 26px;
}

.blog-card.text-only {
  display: flex;
  min-height: 260px;
  align-items: center;
}

.article-hero {
  padding: clamp(58px, 8vw, 96px) clamp(22px, 7vw, 96px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(9, 31, 50, 0.9), rgba(9, 31, 50, 0.66)),
    url("assets/hero-home-office.jpg") center / cover no-repeat;
}

.article-hero .article-meta {
  margin: 0 0 14px;
  color: var(--brand-orange);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 980px;
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
  padding: clamp(52px, 7vw, 86px) 22px;
}

.article-body {
  color: var(--text);
}

.article-body h2,
.article-body h3 {
  margin-top: 38px;
  color: var(--ink);
}

.article-body h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.article-body h3 {
  font-size: clamp(1.32rem, 2vw, 1.75rem);
}

.article-body p,
.article-body li {
  font-size: 1.05rem;
}

.article-body p {
  margin: 18px 0 0;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 28px;
}

.article-cta {
  margin-top: 44px;
  padding: 30px;
  background: var(--soft);
  border-radius: var(--radius);
}

.article-cta p {
  margin-top: 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--brand-blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

@media (max-width: 940px) {
  .site-header {
    min-height: 94px;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(22, 50, 79, 0.18);
    border-radius: 999px;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    display: block;
    width: 21px;
    height: 2px;
    content: "";
    background: var(--ink);
    border-radius: 999px;
  }

  .menu-toggle-lines {
    position: relative;
  }

  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    position: absolute;
    left: 0;
  }

  .menu-toggle-lines::before {
    top: -7px;
  }

  .menu-toggle-lines::after {
    top: 7px;
  }

  .site-nav:not(.simple-nav) {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(22, 50, 79, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav:not(.simple-nav).is-open {
    display: flex;
  }

  .site-nav:not(.simple-nav) a {
    padding: 12px 14px;
  }

  .simple-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .site-header:has(.simple-nav) {
    align-items: flex-start;
    flex-direction: column;
  }

  .pain-grid,
  .plan-section,
  .split-section,
  .two-card-grid,
  .three-column-list,
  .service-grid,
  .expect-grid,
  .process-timeline,
  .contact-layout,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .plan-section {
    padding-top: 72px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .hero {
    min-height: 640px;
    background-position: 58% center;
  }

  .hero-overlay {
    align-items: flex-end;
    padding-top: 72px;
    padding-bottom: 110px;
    background:
      linear-gradient(180deg, rgba(9, 31, 50, 0.34) 0%, rgba(9, 31, 50, 0.88) 58%, rgba(9, 31, 50, 0.94) 100%),
      linear-gradient(0deg, rgba(9, 31, 50, 0.18), rgba(9, 31, 50, 0.18));
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.75rem);
  }

  .hero-copy {
    margin: 18px 0 24px;
  }

  .button {
    width: 100%;
    min-height: 58px;
    text-align: center;
  }

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