:root {
  --navy-950: #03132f;
  --navy-900: #061a3b;
  --navy-800: #0a2851;
  --navy-700: #123b69;
  --teal-600: #09ad9e;
  --teal-500: #16c7b5;
  --teal-400: #35d9c8;
  --teal-100: #dffaf6;
  --ink: #0b1830;
  --muted: #64748b;
  --line: #dce5ec;
  --surface: #f5f9fb;
  --white: #ffffff;
  --success: #0a8f68;
  --danger: #c33d48;
  --shadow-sm: 0 10px 30px rgba(3, 19, 47, 0.08);
  --shadow-lg: 0 24px 70px rgba(3, 19, 47, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(22, 199, 181, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--teal-400);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 100px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--teal-400);
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.legal-content h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.center p {
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(6, 26, 59, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 235px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a {
  position: relative;
  color: #2a3850;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--teal-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.btn):hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy-950);
  background: var(--teal-500);
  box-shadow: 0 10px 24px rgba(22, 199, 181, 0.22);
}

.btn-primary:hover {
  background: var(--teal-400);
  box-shadow: 0 14px 28px rgba(22, 199, 181, 0.28);
}

.btn-outline {
  border-color: rgba(6, 26, 59, 0.18);
  color: var(--navy-900);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--teal-500);
}

.btn-dark {
  color: var(--white);
  background: var(--navy-900);
}

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

.btn-block {
  width: 100%;
}

.btn svg,
.contact-pill svg,
.inline-link svg,
.mobile-contact-bar svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--navy-900);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 20%, rgba(22, 199, 181, 0.19), transparent 28%),
    linear-gradient(130deg, var(--navy-950), var(--navy-900) 58%, #0b3157);
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -240px;
  width: 540px;
  height: 540px;
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  padding-block: 70px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.8rem, 5.7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  color: var(--teal-400);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin: 26px 0 0;
  color: #c4d1e1;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dae4ef;
  font-size: 0.94rem;
  font-weight: 650;
}

.hero-points li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--teal-500);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-photo {
  position: absolute;
  inset: 0 22px 38px 46px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.3);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 19, 47, 0.34));
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-card {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.proof-card .proof-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--teal-100);
  font-size: 1.35rem;
}

.proof-card strong,
.proof-card span {
  display: block;
}

.proof-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.proof-card .proof-time {
  color: var(--teal-600);
  font-size: 0.83rem;
  font-weight: 800;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 15px;
  padding: 22px 30px;
  border-right: 1px solid var(--line);
}

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

.trust-icon,
.service-icon,
.step-number,
.area-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-900);
  background: var(--teal-100);
}

.trust-icon {
  width: 43px;
  height: 43px;
  border-radius: 13px;
}

.trust-icon svg,
.service-icon svg,
.area-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--navy-950);
  font-size: 0.95rem;
}

.trust-item span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(3, 19, 47, 0.02);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card::after {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--teal-100);
  content: "";
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  border-color: rgba(22, 199, 181, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card:hover::after {
  opacity: 0.65;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 9px;
  color: var(--navy-950);
  font-size: 1.2rem;
  line-height: 1.25;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.inline-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--teal-600);
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: 285px 285px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-900);
}

.gallery-card:first-child {
  grid-row: 1 / 3;
}

.gallery-card:nth-child(4) {
  grid-column: 2 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(3, 19, 47, 0.88));
  content: "";
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: var(--white);
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-caption strong {
  font-size: 1.02rem;
}

.gallery-caption span {
  margin-top: 2px;
  color: #c7d3df;
  font-size: 0.82rem;
}

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

.process-step {
  position: relative;
  padding: 30px 30px 28px;
  border-left: 1px solid var(--line);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 900;
}

.process-step h3 {
  margin: 20px 0 8px;
  font-size: 1.18rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.area-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.area-section::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 199, 181, 0.2), transparent 68%);
  content: "";
}

.area-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.area-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.area-copy p {
  margin: 22px 0 0;
  color: #bac9d9;
}

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

.area-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 700;
}

.area-list li::before {
  color: var(--teal-400);
  content: "●";
  font-size: 0.58rem;
}

.quote-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 92%, rgba(22, 199, 181, 0.15), transparent 28%),
    var(--navy-950);
}

.quote-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}

.quote-copy {
  position: sticky;
  top: 125px;
  padding-top: 18px;
}

.quote-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.quote-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: #aebfd2;
  font-size: 1.07rem;
}

.quote-benefits {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.quote-benefits li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #d9e3ee;
  font-weight: 650;
}

.quote-benefits strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--teal-400);
  background: rgba(22, 199, 181, 0.11);
  font-size: 0.73rem;
  letter-spacing: 0.06em;
}

.quote-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.24);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}

.form-group {
  min-width: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: #24364f;
  font-size: 0.83rem;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 57px;
  padding: 13px 15px;
  border: 1px solid #d5e0e8;
  border-radius: 13px;
  color: var(--ink);
  background: #fbfdfe;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-group textarea {
  min-height: 122px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ba8b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(22, 199, 181, 0.12);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--teal-600);
}

.consent a,
.form-note a {
  color: var(--teal-600);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.form-actions .btn {
  min-height: 59px;
  padding-inline: 16px;
}

.form-note {
  margin: 13px 0 0;
  color: #8a99aa;
  font-size: 0.74rem;
  text-align: center;
}

.form-status {
  display: none;
  margin: 17px 0 0;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #056147;
  background: #e2f8ef;
}

.form-status.is-error {
  color: #8d2831;
  background: #fdecee;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 54px 24px 0;
  color: var(--navy-950);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-600);
  background: var(--teal-100);
  content: "+";
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 800px;
  padding: 0 54px 24px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.cta-band {
  padding: 0 0 100px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 44px 50px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(22, 199, 181, 0.22), transparent 30%),
    var(--navy-900);
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.cta-inner p {
  margin: 10px 0 0;
  color: #bdcbda;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.site-footer {
  color: #b4c0cf;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.92fr 0.98fr;
  gap: 70px;
  padding-block: 70px 58px;
}

.footer-brand img {
  width: 245px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: #8fa0b4;
  font-size: 0.92rem;
}

.footer-title {
  margin: 0 0 22px;
  color: var(--teal-400);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-links span {
  color: #aebac9;
  font-size: 0.9rem;
}

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

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white) !important;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #75869a;
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-legal a:hover {
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 95px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(22, 199, 181, 0.18), transparent 30%),
    var(--navy-950);
}

.page-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.78fr;
  gap: 80px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.3vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.page-hero h1 span {
  color: var(--teal-400);
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: #becddd;
  font-size: 1.1rem;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 7px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.page-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 19, 47, 0.65));
  content: "";
}

.landing-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.landing-point {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.landing-point strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.06rem;
}

.landing-point p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.split-section {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
}

.split-image {
  overflow: hidden;
  min-height: 490px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
}

.split-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.split-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #33445c;
  font-weight: 650;
}

.check-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--teal-500);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.legal-hero {
  padding: 78px 0;
  color: var(--white);
  background: var(--navy-950);
}

.legal-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-hero p {
  margin: 16px 0 0;
  color: #aebfd2;
}

.legal-content {
  max-width: 900px;
  padding-block: 80px 110px;
}

.legal-content h2 {
  margin: 45px 0 14px;
  color: var(--navy-950);
  font-size: 1.35rem;
  line-height: 1.3;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 30px 0 10px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: #53647a;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--teal-600);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-notice {
  margin: 30px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--teal-500);
  border-radius: 0 14px 14px 0;
  background: var(--teal-100);
}

.legal-notice p {
  margin: 0;
  color: #26495a;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  text-align: center;
}

.error-logo {
  width: 80px;
  margin: 0 auto 24px;
}

.hero-actions-center {
  justify-content: center;
}

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

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
  }

  .main-nav > a {
    font-size: 0.86rem;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .hero-grid {
    gap: 45px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 45px;
  }

  .footer-main > :last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 78px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    top: 86px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 22px 20px 120px;
    visibility: hidden;
    background: var(--white);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .main-nav > a::after {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .area-grid,
  .quote-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 55px;
    padding-block: 75px 95px;
  }

  .hero-copy h1 {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 260px 260px;
  }

  .gallery-card:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery-card:nth-child(4) {
    grid-column: 1 / 3;
  }

  .quote-grid {
    gap: 50px;
  }

  .quote-copy {
    position: static;
  }

  .page-hero-grid {
    gap: 50px;
  }

  .landing-points {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 45px;
  }

  .split-image,
  .split-image img {
    min-height: 400px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand img {
    width: 190px;
  }

  .main-nav {
    top: 76px;
  }

  .hero-grid {
    padding-block: 62px 78px;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-photo {
    inset: 0 0 55px;
    border-radius: 28px;
  }

  .proof-card {
    grid-template-columns: auto 1fr;
    padding: 16px;
  }

  .proof-time {
    display: none !important;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 94px;
    padding: 18px 6px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-right: -14px;
    padding-right: 14px;
    scroll-snap-type: x mandatory;
  }

  .gallery-card {
    min-width: 82%;
    height: 390px;
    scroll-snap-align: start;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .form-actions {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
    padding: 35px 26px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 55px 44px;
  }

  .footer-main > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 98px;
  }

  .page-hero {
    padding: 62px 0 75px;
  }

  .page-hero-card {
    min-height: 340px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 999;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: var(--navy-950);
    box-shadow: 0 16px 40px rgba(3, 19, 47, 0.3);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 850;
  }

  .mobile-contact-bar a:last-child {
    color: var(--navy-950);
    background: var(--teal-500);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
