:root {
  --navy-950: #032d48;
  --navy-900: #063b5b;
  --navy-800: #0a4a69;
  --teal-600: #08a990;
  --teal-500: #12bba2;
  --mint-300: #9fd5c0;
  --mint-200: #cfece2;
  --mint-100: #ecf8f4;
  --cream: #f9fbfa;
  --white: #ffffff;
  --ink: #15313e;
  --muted: #5b7079;
  --border: #dce9e5;
  --shadow: 0 24px 60px rgba(3, 45, 72, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

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

button, a { -webkit-tap-highlight-color: transparent; }

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

h1, h2, h3 {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--navy-950);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.65rem);
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 1.2rem;
}

h3 { font-size: 1.35rem; }

p { color: var(--muted); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 112px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--teal-600);
  font-family: "Manrope", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light { color: var(--mint-300); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

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

.hidden { display: none !important; }

.topbar {
  background: var(--navy-950);
  color: var(--white);
  font-size: .88rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topbar p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.topbar a:hover { color: var(--mint-300); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(3,45,72,.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  width: 186px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

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

.primary-nav > a:not(.button) {
  position: relative;
  color: var(--navy-950);
  font-weight: 700;
  text-decoration: none;
  font-size: .97rem;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.primary-nav > a:not(.button):hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--mint-100);
  border: 0;
  border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-950);
  transition: .25s ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal-600);
  border-radius: 999px;
  background: var(--teal-600);
  box-shadow: 0 14px 30px rgba(8,169,144,.22);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 18px 34px rgba(3,45,72,.2);
}

.button-small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: .92rem;
}

.button-outline {
  background: transparent;
  border-color: rgba(3,45,72,.22);
  color: var(--navy-950);
  box-shadow: none;
}

.button-outline:hover { color: var(--white); }

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-950);
  box-shadow: none;
}

.button-light:hover {
  background: var(--mint-300);
  border-color: var(--mint-300);
  color: var(--navy-950);
}

.button-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 15% 15%, rgba(159,213,192,.35), transparent 28%),
    linear-gradient(135deg, #f4fbf8 0%, #ffffff 54%, #eef8f5 100%);
}

.hero-pattern {
  position: absolute;
  inset: auto -160px -300px auto;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(8,169,144,.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(8,169,144,.05),
    0 0 0 88px rgba(8,169,144,.04),
    0 0 0 132px rgba(8,169,144,.03);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 72px;
}

.hero-copy { max-width: 640px; }

.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: #49616c;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-notes span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--navy-800);
  font-size: .85rem;
  font-weight: 700;
}

.hero-visual { position: relative; }

.hero-photo-wrap {
  position: relative;
  z-index: 2;
  padding: 12px;
  background: var(--white);
  border-radius: 46% 46% 24px 24px;
  box-shadow: var(--shadow);
}

.hero-photo-wrap > img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: 55% center;
  border-radius: calc(46% - 8px) calc(46% - 8px) 18px 18px;
}

.photo-badge {
  position: absolute;
  right: -24px;
  bottom: 42px;
  min-width: 194px;
  padding: 20px 24px;
  border: 7px solid var(--mint-300);
  border-radius: 24px;
  background: var(--navy-950);
  box-shadow: 0 20px 45px rgba(3,45,72,.22);
  color: var(--white);
}

.photo-badge strong,
.photo-badge span { display: block; }

.photo-badge strong {
  color: var(--mint-300);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
}

.photo-badge span {
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-one {
  top: -28px;
  right: -28px;
  width: 160px;
  height: 160px;
  background: var(--mint-300);
}

.hero-shape-two {
  bottom: -30px;
  left: -38px;
  width: 124px;
  height: 124px;
  border: 22px solid var(--teal-600);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.trust-grid article {
  display: flex;
  min-height: 146px;
  padding: 32px;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.trust-grid article:last-child { border-right: 0; }

.trust-grid h2 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: -.02em;
}

.trust-grid p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  line-height: 1.45;
}

.icon-bubble {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-600);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: 82px;
}

.image-card {
  position: relative;
  padding: 0 38px 38px 0;
}

.image-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 4.15;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-card::before {
  position: absolute;
  top: -26px;
  left: -26px;
  width: 130px;
  height: 130px;
  content: "";
  border: 18px solid var(--mint-200);
  border-radius: 50%;
}

.image-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 74%;
  height: 66%;
  border-radius: var(--radius-lg);
  background: var(--teal-600);
}

.section-copy { max-width: 620px; }

.section-copy p { font-size: 1.06rem; }

.large-copy {
  color: var(--navy-800);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.3rem !important;
  font-weight: 700;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--navy-800);
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: .22rem;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  content: "✓";
  border-radius: 50%;
  background: var(--mint-200);
  color: var(--teal-600);
  font-size: .75rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--teal-600);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.text-link span { transition: transform .2s ease; }

.text-link:hover span { transform: translateX(5px); }

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

.section-heading {
  display: flex;
  max-width: 1040px;
  margin-bottom: 48px;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading > div { max-width: 570px; }

.section-heading h2 { margin-bottom: 0; }

.section-heading > p {
  max-width: 430px;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.section-heading.centered {
  display: block;
  max-width: 710px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered > div,
.section-heading.centered > p { max-width: none; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 325px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 116px;
  height: 116px;
  content: "";
  border: 18px solid var(--mint-100);
  border-radius: 50%;
  transition: transform .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--mint-300);
  box-shadow: 0 24px 50px rgba(3,45,72,.1);
}

.service-card:hover::after { transform: scale(1.18); }

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 16px;
  background: var(--mint-100);
  color: var(--teal-600);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.service-card h3 { margin-bottom: 13px; }

.service-card p { margin-bottom: 22px; }

.service-card a {
  position: relative;
  z-index: 2;
  color: var(--teal-600);
  font-weight: 800;
  text-decoration: none;
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}

.process::before {
  position: absolute;
  top: -320px;
  left: -300px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(159,213,192,.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(159,213,192,.03),
    0 0 0 96px rgba(159,213,192,.025);
}

.process-wrap {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.process-intro {
  position: sticky;
  top: 145px;
  align-self: start;
}

.process-intro h2,
.process-intro p { color: var(--white); }

.process-intro p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255,255,255,.7);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  padding: 28px;
  align-items: start;
  gap: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}

.process-list li > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-600);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255,255,255,.65);
}

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

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: center;
  gap: 22px;
}

.testimonial-card {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(3,45,72,.06);
}

.testimonial-card.featured {
  padding-block: 48px;
  background: var(--mint-100);
  border-color: var(--mint-300);
}

.stars {
  margin-bottom: 18px;
  color: #e7a720;
  letter-spacing: .12em;
}

.testimonial-card p {
  color: var(--navy-800);
  font-size: 1.08rem;
  font-weight: 600;
}

.testimonial-card footer {
  color: var(--teal-600);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.contact {
  background:
    radial-gradient(circle at 80% 25%, rgba(159,213,192,.22), transparent 28%),
    var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: start;
  gap: 72px;
}

.contact-copy { padding-top: 28px; }

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.08rem;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-card {
  display: flex;
  padding: 17px 18px;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.8);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.contact-card:hover {
  transform: translateX(5px);
  border-color: var(--mint-300);
}

.contact-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--navy-950);
  color: var(--white);
}

.contact-card small,
.contact-card strong { display: block; }

.contact-card small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--navy-950);
}

.contact-form {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-heading { margin-bottom: 26px; }

.form-heading h3 {
  margin-bottom: 5px;
  font-size: 1.6rem;
}

.form-heading p { margin-bottom: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 17px;
  color: var(--navy-950);
  font-size: .92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid #cbdcd6;
  border-radius: 11px;
  outline: 0;
  background: #fbfdfc;
  color: var(--ink);
  font-weight: 500;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea { resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(8,169,144,.12);
}

.form-note {
  margin: -3px 0 18px;
  font-size: .78rem;
}

.cta-band {
  padding: 64px 0;
  background: linear-gradient(115deg, var(--teal-600), #0cb69e);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.site-footer {
  padding-top: 78px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .6fr 1fr;
  gap: 70px;
  padding-bottom: 56px;
}

.footer-logo-card {
  display: inline-block;
  max-width: 235px;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--white);
}

.footer-brand p {
  max-width: 480px;
  color: rgba(255,255,255,.64);
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--mint-300);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.site-footer a,
.site-footer address span {
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.site-footer a:hover { color: var(--mint-300); }

.footer-bottom {
  display: flex;
  padding: 24px 0;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .9rem;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
  font-size: .9rem;
}

.mobile-call { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1020px) {
  .primary-nav { gap: 18px; }
  .primary-nav > a:not(.button) { font-size: .9rem; }
  .hero-grid { gap: 40px; }
  .hero-photo-wrap > img { min-height: 510px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 40px; }
}

@media (max-width: 850px) {
  .topbar p { display: none; }
  .topbar-inner { justify-content: center; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 130px;
    right: 18px;
    left: 18px;
    display: grid;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: .25s ease;
  }
  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .primary-nav .button { width: 100%; }
  .hero-grid,
  .split-layout,
  .process-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 62px; }
  .hero-copy { max-width: 710px; }
  .hero-visual { max-width: 650px; margin-inline: auto; }
  .hero-photo-wrap > img { min-height: 570px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-grid article:last-child { border-bottom: 0; }
  .split-layout { gap: 56px; }
  .image-card { max-width: 620px; }
  .process-wrap { gap: 50px; }
  .process-intro { position: static; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 700px; margin-inline: auto; }
  .testimonial-card.featured { padding-block: 34px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .topbar { display: none; }
  .nav-wrap { min-height: 76px; }
  .brand { width: 154px; }
  .brand img { height: 60px; }
  .primary-nav { top: 88px; }
  .hero { padding: 50px 0 76px; }
  h1 { font-size: clamp(2.6rem, 13vw, 4.15rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-photo-wrap { border-radius: 38% 38% 20px 20px; }
  .hero-photo-wrap > img {
    min-height: 430px;
    border-radius: calc(38% - 7px) calc(38% - 7px) 14px 14px;
  }
  .photo-badge {
    right: -6px;
    bottom: 18px;
    min-width: 162px;
    padding: 15px 17px;
  }
  .photo-badge span { font-size: 1.1rem; }
  .hero-shape-one { width: 110px; height: 110px; right: -8px; }
  .trust-strip { margin-top: -24px; }
  .trust-grid article { padding: 24px; }
  .image-card { padding: 0 20px 20px 0; }
  .image-card::before { top: -16px; left: -10px; width: 90px; height: 90px; border-width: 12px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .process-list li {
    grid-template-columns: 48px 1fr;
    padding: 22px 18px;
    gap: 14px;
  }
  .process-list li > span { width: 44px; height: 44px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cta-inner { display: grid; }
  .cta-inner .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; padding-bottom: 82px; }
  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 999;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--teal-600);
    box-shadow: 0 12px 32px rgba(3,45,72,.32);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
  }
}

.legal-page {
  max-width: 850px;
  padding-top: 90px;
  padding-bottom: 110px;
}
.legal-page h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
.legal-page h2 { margin-top: 42px; font-size: 1.55rem; }
.legal-page p, .legal-page li { font-size: 1.05rem; }


.form-status {
  display: none;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.success {
  display: block;
  background: #e8f7f1;
  border: 1px solid #9fd5c0;
  color: #063b5b;
}

.form-status.error {
  display: block;
  background: #fff1f0;
  border: 1px solid #e8aaa4;
  color: #7d2420;
}
