/* Shared visual system adapted from the redesign source. */
:root {
  --navy: #1b3a5c;
  --navy-dark: #122840;
  --navy-light: #2c5282;
  --aqua: #4a9eba;
  --aqua-light: #7ac4db;
  --aqua-pale: #e8f4f9;
  --orange: #e8681a;
  --orange-dark: #c9561a;
  --warm-white: #fafbfc;
  --cool-gray: #f4f7fb;
  --text-body: #374151;
  --text-muted: #6b7280;
  --line: rgba(27, 58, 92, 0.1);
  --shadow-soft: 0 12px 40px rgba(27, 58, 92, 0.1);
  --shadow-strong: 0 24px 80px rgba(27, 58, 92, 0.16);
  --radius: 24px;
  --radius-lg: 28px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--text-body);
  font: 16px/1.6 "Plus Jakarta Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(27, 58, 92, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.utility-bar {
  display: none;
  padding: 6px 0;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-align: center;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--aqua), var(--navy-light));
  color: #fff;
  font-size: 1.15rem;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  color: #fff;
  font-size: 1.06rem;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--aqua-light);
  font-size: 0.78rem;
}

.desktop-nav,
.desktop-actions {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a[aria-current="page"] {
  color: var(--aqua-light);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--aqua);
}

.cta-row,
.offer-actions,
.mobile-actions,
.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.call-chip,
.text-chip,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 18px;
  border: 0;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.call-chip:hover,
.text-chip:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.call-chip,
.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 8px 24px rgba(232, 104, 26, 0.28);
}

.text-chip {
  color: var(--aqua-light);
  background: rgba(74, 158, 186, 0.18);
  border: 1px solid rgba(74, 158, 186, 0.35);
}

.secondary-button {
  color: var(--navy);
  background: var(--cool-gray);
  border: 1.5px solid rgba(27, 58, 92, 0.12);
}

.mobile-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
}

.mobile-nav {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav .nav-links {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding-top: 12px;
}

.mobile-nav .nav-links a {
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-nav .nav-links a[aria-current="page"] {
  background: rgba(74, 158, 186, 0.12);
}

.mobile-nav .nav-links a[aria-current="page"]::after {
  display: none;
}

.mobile-actions {
  padding-top: 16px;
}

main {
  overflow: clip;
}

.page-frame {
  padding-top: 72px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-bg,
.page-hero-bg,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-wrap,
.page-hero-bg-wrap {
  position: absolute;
  inset: 0;
}

.hero-art {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18, 40, 64, 0.95) 0%, rgba(18, 40, 64, 0.88) 45%, rgba(18, 40, 64, 0.55) 100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 58, 92, 0.97) 0%, rgba(18, 40, 64, 0.97) 100%);
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 1px 1px, rgba(122, 196, 219, 0.28) 1px, transparent 0);
  background-size: 32px 32px;
}

.page-hero .pattern-overlay {
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.9) 1px, transparent 0);
  background-size: 36px 36px;
}

.hero-content,
.page-hero-content {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero-content {
  padding: 88px 0 120px;
}

.page-hero-content {
  padding: 74px 0 86px;
}

.hero-copy {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(74, 158, 186, 0.2);
  border: 1px solid rgba(74, 158, 186, 0.4);
  color: var(--aqua-light);
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow.light {
  background: var(--aqua-pale);
  border: 0;
  color: var(--aqua);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  line-height: 1.14;
  color: var(--navy);
}

h1,
.display-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.hero h1,
.hero p,
.page-hero h1,
.page-hero p {
  color: #fff;
}

.hero-lead,
.page-hero-lead {
  font-size: 1.12rem;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.76);
}

.trust-items,
.mini-list,
.neighborhood-grid,
.footer-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-items {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: 640px;
}

.trust-items li,
.mini-list li,
.footer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-items li {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-review {
  display: none;
}

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 0;
}

.section {
  padding: 88px 0;
}

.section.cool {
  background: var(--cool-gray);
}

.section.dark {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  overflow: hidden;
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.9) 1px, transparent 0);
  background-size: 40px 40px;
}

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

.section.dark .experience-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

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

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

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.service-preview,
.testimonial-card,
.experience-card,
.contact-card,
.feature-card,
.success-card,
.contact-form-card,
.info-panel,
.service-detail {
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px solid rgba(74, 158, 186, 0.1);
  box-shadow: 0 4px 20px rgba(27, 58, 92, 0.07);
}

.service-preview,
.testimonial-card,
.experience-card,
.contact-card,
.feature-card,
.info-panel {
  display: block;
}

.seo-grid {
  display: grid;
  gap: 20px;
}

.seo-card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px solid rgba(74, 158, 186, 0.12);
  box-shadow: 0 4px 20px rgba(27, 58, 92, 0.06);
}

.seo-card h3 {
  margin-bottom: 10px;
}

.service-preview,
.testimonial-card,
.experience-card,
.contact-card,
.feature-card,
.info-panel {
  padding: 28px;
}

.icon-box,
.icon-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.icon-box {
  width: 52px;
  height: 52px;
  background: var(--aqua-pale);
  color: var(--aqua);
  font-size: 1.3rem;
}

.ui-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: -0.125em;
}

.brand-mark .ui-icon,
.icon-box .ui-icon,
.footer-icon .ui-icon,
.visual-mark .ui-icon {
  width: 24px;
  height: 24px;
}

.mobile-toggle .ui-icon {
  width: 20px;
  height: 20px;
}

.testimonial-stars .ui-icon {
  width: 16px;
  height: 16px;
}

.trust-items .ui-icon,
.mini-list .ui-icon,
.details-list .ui-icon,
.eyebrow .ui-icon,
.visual-kicker .ui-icon,
.call-chip .ui-icon,
.text-chip .ui-icon,
.primary-button .ui-icon,
.secondary-button .ui-icon {
  width: 1em;
  height: 1em;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  display: block;
}

.service-preview h3,
.testimonial-card h3,
.feature-card h3,
.contact-card h3,
.info-panel h3 {
  margin-top: 18px;
}

.service-detail {
  overflow: hidden;
}

.service-detail-grid,
.split-grid,
.contact-grid,
.area-grid,
.why-grid {
  display: grid;
  gap: 32px;
}

.image-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--navy);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27, 58, 92, 0.35) 0%, transparent 100%);
}

.graphic-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(122, 196, 219, 0.3), transparent 38%),
    linear-gradient(160deg, #153451 0%, #1b3a5c 56%, #24557d 100%);
}

.graphic-card::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%);
}

.graphic-card > * {
  position: relative;
  z-index: 1;
}

.graphic-card h3,
.graphic-card p,
.graphic-card strong,
.graphic-card li,
.graphic-card span {
  color: #fff;
}

.graphic-card p {
  color: rgba(255, 255, 255, 0.78);
}

.visual-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aqua-light);
}

.visual-kicker .ui-icon {
  color: var(--orange);
}

.visual-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(232, 104, 26, 0.95), rgba(244, 131, 67, 0.95));
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.visual-stack {
  display: grid;
  gap: 14px;
}

.visual-stack h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.15;
}

.visual-points,
.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visual-points li,
.hero-service-pills li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.visual-note {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  color: #fff;
}

.hero-panel {
  position: absolute;
  right: 4%;
  top: 50%;
  width: min(430px, 34vw);
  transform: translateY(-50%);
  border-radius: 32px;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(122, 196, 219, 0.4), transparent 34%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  color: #fff;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.hero-panel-grid div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(11, 28, 46, 0.52);
  color: #fff;
}

.hero-panel-grid strong,
.hero-panel-grid span {
  display: block;
}

.hero-panel-grid strong {
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-panel-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.image-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(27, 58, 92, 0.86);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.detail-copy {
  padding: 34px;
}

.feature-list,
.service-list,
.steps-list,
.hours-list,
.details-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.details-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 20px;
  margin-bottom: 30px;
}

.details-list li,
.service-list li,
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.steps-grid,
.testimonial-grid,
.experience-grid,
.contact-options-grid {
  display: grid;
  gap: 24px;
}

.step-card {
  position: relative;
  text-align: center;
  color: #fff;
}

.step-number {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-light));
  box-shadow: 0 8px 24px rgba(74, 158, 186, 0.3);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.7rem;
  color: #fff;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #f59e0b;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  font-style: italic;
  color: var(--text-body);
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--aqua), var(--navy));
  color: #fff;
  font-weight: 700;
}

.stats-badge {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(74, 158, 186, 0.14);
}

.stats-badge strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
}

.contact-form-card {
  padding: 34px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(27, 58, 92, 0.15);
  background: var(--cool-gray);
  color: var(--navy);
}

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

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.urgency-chip {
  padding: 14px 12px;
  border-radius: 14px;
  border: 1.5px solid rgba(27, 58, 92, 0.12);
  background: var(--cool-gray);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.urgency-chip.active {
  border-color: var(--aqua);
  background: var(--aqua-pale);
}

.service-area-note {
  padding: 18px;
  border-radius: 18px;
  background: var(--aqua-pale);
  border: 1px solid rgba(74, 158, 186, 0.2);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.9) 1px, transparent 0);
  background-size: 32px 32px;
}

.final-cta .section-shell,
.final-cta h2,
.final-cta p {
  position: relative;
  color: #fff;
  text-align: center;
}

.site-footer {
  background: #0f2236;
  color: rgba(255, 255, 255, 0.65);
}

.footer-main {
  padding: 70px 0 54px;
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.footer-title {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-brand p {
  max-width: 320px;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.footer-icon.orange {
  background: rgba(232, 104, 26, 0.2);
  color: var(--orange);
}

.footer-icon.aqua {
  background: rgba(74, 158, 186, 0.2);
  color: var(--aqua);
}

.footer-icon.soft {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 20px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.success-wrap {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 48px;
  background: var(--warm-white);
}

.success-card {
  width: min(calc(100% - 32px), 760px);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.success-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--aqua), var(--navy), var(--orange));
}

.success-content {
  padding: 42px 28px;
  background: #fff;
  text-align: center;
}

.success-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--aqua-pale), #d0eaf5);
  color: var(--aqua);
  font-size: 2rem;
  box-shadow: 0 8px 32px rgba(74, 158, 186, 0.2);
}

.success-steps {
  margin: 0 0 30px;
  padding: 24px;
  border-radius: 20px;
  background: var(--cool-gray);
  border: 1px solid rgba(27, 58, 92, 0.08);
  text-align: left;
}

.success-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-pill {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--aqua), var(--navy-light));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.soft-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 24px;
}

.soft-divider::before,
.soft-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(27, 58, 92, 0.08);
}

.soft-divider span {
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-note {
  margin-top: 28px;
  font-size: 0.88rem;
  color: #9ca3af;
  text-align: center;
}

.mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(15, 34, 54, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.18);
}

.mobile-sticky-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-sticky-shell a {
  min-height: 52px;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 0.95rem;
}

@media (min-width: 860px) {
  .page-frame {
    padding-top: 102px;
  }

  .mobile-sticky-bar {
    display: none;
  }

  .utility-bar {
    display: block;
  }

  .desktop-nav,
  .desktop-actions {
    display: flex;
  }

  .mobile-toggle,
  .mobile-nav {
    display: none !important;
  }

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

  .steps-grid,
  .testimonial-grid,
  .contact-options-grid,
  .seo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .split-grid,
  .why-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

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

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

  .footer-bottom-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .success-content {
    padding: 50px 48px;
  }
}

@media (min-width: 1240px) {
  .hero-content {
    min-height: 720px;
  }

  .hero-copy {
    max-width: min(620px, calc(100% - 500px));
  }

  .hero-art {
    display: block;
  }
}

@media (max-width: 859px) {
  .hero-content {
    padding: 110px 0 112px;
  }

  .hero-panel {
    display: none;
  }

  .page-frame {
    padding-bottom: 92px;
  }

  .brand-copy span {
    display: none;
  }

  .contact-options-grid,
  .card-grid.services-preview,
  .testimonial-grid,
  .experience-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .stats-badge {
    margin-top: 18px !important;
    left: 0 !important;
    width: 100%;
    max-width: none !important;
  }
}

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

  .button,
  .call-chip,
  .text-chip,
  .primary-button,
  .secondary-button {
    transition: none;
  }
}
