:root {
  --bg: #f4f8fc;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-line: rgba(82, 138, 193, 0.18);
  --text: #12304d;
  --muted: #567089;
  --primary: #1d7fd0;
  --primary-deep: #0f5ea7;
  --accent: #f6b11a;
  --accent-deep: #cf8800;
  --shadow: 0 24px 60px rgba(18, 48, 77, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(29, 127, 208, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(246, 177, 26, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 56%, #f5f9fc 100%);
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(10px);
}

.page-shell::before {
  top: -120px;
  left: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(29, 127, 208, 0.24), transparent 70%);
}

.page-shell::after {
  right: -90px;
  bottom: -90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(246, 177, 26, 0.18), transparent 70%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.78);
  border-bottom: 1px solid rgba(82, 138, 193, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 18px 0 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  margin-left: auto;
  border: 1px solid rgba(82, 138, 193, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 34px rgba(18, 48, 77, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-branding {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.brand img {
  width: min(460px, 100%);
  height: auto;
}

.brand-claim {
  margin: 0;
  color: var(--primary-deep);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-row {
  padding-bottom: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(82, 138, 193, 0.14);
  box-shadow: 0 18px 34px rgba(18, 48, 77, 0.08);
}

.site-nav a {
  padding: 12px 20px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-deep);
  background: rgba(29, 127, 208, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 16px 28px rgba(29, 127, 208, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #2890e5 0%, #0e578d 100%);
}

.hero {
  padding: 54px 0 28px;
}

.hero-panel,
.content-panel,
.feature-card,
.highlight-card,
.contact-card,
.legal-card,
.subpage-hero {
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--surface-line);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
  gap: 34px;
  padding: 42px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(29, 127, 208, 0.16), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: rgba(18, 48, 77, 0.06);
  border-radius: 999px;
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.subpage-hero h1 {
  margin: 0 0 18px;
  line-height: 1.04;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}

.hero p,
.subpage-hero p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-actions,
.contact-actions,
.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 18px 28px rgba(29, 127, 208, 0.22);
}

.button:visited,
.button:hover,
.button:focus-visible {
  color: #fff;
}

.button-secondary {
  color: var(--primary-deep);
  background: rgba(29, 127, 208, 0.08);
  border: 1px solid rgba(29, 127, 208, 0.14);
}

.button:hover,
.button-secondary:hover,
.button:focus-visible,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.hero-stats,
.cards-grid,
.steps-grid,
.contact-grid,
.footer-grid,
.highlights-grid,
.reviews-grid,
.review-links {
  display: grid;
  gap: 18px;
}

.hero-stats {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 1.02fr);
  margin-top: 28px;
}

.stat,
.feature-card,
.highlight-card,
.contact-card {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(82, 138, 193, 0.14);
}

.stat-head {
  display: block;
  margin-bottom: 8px;
}

.stat strong {
  display: block;
  font-size: 0.98rem;
  color: var(--primary-deep);
  line-height: 1.12;
  white-space: nowrap;
}

.stat:nth-child(3) strong {
  font-size: 0.88rem;
}

.stat span {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: end;
  min-height: 100%;
}

.hero-glass {
  position: relative;
  width: min(100%, 420px);
  min-height: 620px;
  border-radius: 42px;
  background: #fff;
  border: 1px solid rgba(82, 138, 193, 0.14);
  box-shadow: 0 34px 60px rgba(18, 48, 77, 0.18);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: 42px;
}

.hero-glass::after,
.feature-card.feature-link::after {
  content: "";
  position: absolute;
  inset: -24%;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.74) 50%, rgba(255, 255, 255, 0.14) 56%, transparent 66%);
  transform: translateX(-150%) skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.hero-glass:hover::after,
.hero-glass:focus-within::after {
  opacity: 1;
  transform: translateX(140%) skewX(-18deg);
  transition: transform 900ms ease, opacity 240ms ease;
}

.video-parallax {
  position: relative;
  min-height: 240px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(82, 138, 193, 0.1);
  box-shadow: 0 28px 56px rgba(18, 48, 77, 0.12);
  background: #dfe8f1;
}

.video-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 35, 54, 0.08) 0%, rgba(16, 35, 54, 0.12) 100%);
  pointer-events: none;
}

.video-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 55%, rgba(16, 35, 54, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

.video-parallax video {
  display: block;
  width: 100%;
  height: calc(100% + 36px);
  min-height: 276px;
  object-fit: cover;
  transform: translate3d(0, -10px, 0) scale(1.015);
  transform-origin: center center;
  will-change: transform;
  opacity: 1;
  filter: saturate(0.95) contrast(1) brightness(0.98);
}

main section,
.subpage-main {
  padding: 26px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-header p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

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

.feature-card h3,
.highlight-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.feature-media {
  margin: -24px -24px 20px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 18px 18px;
  border-bottom: 1px solid rgba(82, 138, 193, 0.14);
  background: linear-gradient(135deg, rgba(29, 127, 208, 0.06), rgba(246, 177, 26, 0.08));
}

.feature-media img {
  width: 100%;
  aspect-ratio: 468 / 170;
  object-fit: cover;
}

.feature-card.feature-link {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

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

.feature-card.feature-link:hover,
.feature-card.feature-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(29, 127, 208, 0.24);
  outline: none;
}

.feature-card.feature-link:hover::after,
.feature-card.feature-link:focus-visible::after {
  opacity: 1;
  transform: translateX(140%) skewX(-18deg);
  transition: transform 820ms ease, opacity 220ms ease;
}

.feature-link .feature-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  margin-top: auto;
  align-self: flex-start;
  overflow: hidden;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 16px 28px rgba(29, 127, 208, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.feature-link .feature-more::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.14) 56%, transparent 66%);
  transform: translateX(-150%) skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.feature-card.feature-link:hover .feature-more,
.feature-card.feature-link:focus-visible .feature-more {
  transform: translateY(-2px) scale(1.04);
  color: #fff;
  background: linear-gradient(135deg, #2890e5 0%, #0e578d 100%);
  box-shadow: 0 22px 36px rgba(29, 127, 208, 0.3);
}

.feature-card.feature-link:hover .feature-more::after,
.feature-card.feature-link:focus-visible .feature-more::after {
  opacity: 1;
  transform: translateX(140%) skewX(-18deg);
  transition: transform 820ms ease, opacity 220ms ease;
}

.feature-card p,
.highlight-card p,
.contact-card p,
.feature-card ul,
.legal-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card ul {
  padding-left: 18px;
}

.feature-card li + li {
  margin-top: 8px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(29, 127, 208, 0.14), rgba(246, 177, 26, 0.16));
  color: var(--primary-deep);
  font-size: 1.35rem;
  font-weight: 800;
}

.content-panel {
  border-radius: var(--radius-xl);
  padding: 36px;
}

.promise-media-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 18px;
  align-items: stretch;
}

.promise-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  text-align: left;
}

.promise-panel p {
  margin: 0;
  color: var(--primary-deep);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.55;
  font-weight: 500;
}

.promise-video {
  align-self: stretch;
  min-height: 260px;
  height: 100%;
  aspect-ratio: auto;
}

.promise-video video {
  min-height: 100%;
  height: 100%;
}

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

.step {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(82, 138, 193, 0.14);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step::after,
.review-quote::after {
  content: "";
  position: absolute;
  inset: -24%;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.74) 50%, rgba(255, 255, 255, 0.14) 56%, transparent 66%);
  transform: translateX(-150%) skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.step:hover,
.step:focus-within {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(29, 127, 208, 0.24);
  box-shadow: 0 28px 44px rgba(18, 48, 77, 0.16);
}

.step:hover::after,
.step:focus-within::after {
  opacity: 1;
  transform: translateX(140%) skewX(-18deg);
  transition: transform 820ms ease, opacity 220ms ease;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  font-weight: 800;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

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

.highlights-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.highlight-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-deep);
}

.contact-grid,
.footer-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.map-embed {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(82, 138, 193, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

.reviews-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.review-score {
  display: grid;
  place-items: center;
  min-width: 136px;
  min-height: 136px;
  padding: 16px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 18px 32px rgba(29, 127, 208, 0.24);
}

.review-score strong {
  font-size: 2.5rem;
  line-height: 1;
  color: #fff;
}

.review-score span {
  margin-top: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.review-stars {
  margin-top: 10px;
  color: #ffd24a;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.review-copy h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

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

.review-quotes {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.review-quote {
  position: relative;
  display: block;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(29, 127, 208, 0.06);
  border: 1px solid rgba(82, 138, 193, 0.14);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.review-quote:hover,
.review-quote:focus-visible {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(29, 127, 208, 0.24);
  box-shadow: 0 28px 44px rgba(18, 48, 77, 0.16);
  outline: none;
}

.review-quote:hover::after,
.review-quote:focus-visible::after {
  opacity: 1;
  transform: translateX(140%) skewX(-18deg);
  transition: transform 820ms ease, opacity 220ms ease;
}

.review-quote p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
}

.review-quote span {
  display: inline-block;
  margin-top: 10px;
  color: #f6b11a;
  letter-spacing: 0.16em;
  font-size: 1.15rem;
}

.review-links {
  grid-template-columns: 1fr;
}

.review-link-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(82, 138, 193, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-link-card:hover,
.review-link-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(29, 127, 208, 0.24);
  box-shadow: 0 24px 40px rgba(18, 48, 77, 0.14);
}

.review-link-card strong {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary-deep);
  font-size: 1.08rem;
}

.review-link-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.review-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 16px 28px rgba(29, 127, 208, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.review-cta:hover,
.review-cta:focus-visible {
  transform: translateY(-2px) scale(1.02);
  color: #fff;
  background: linear-gradient(135deg, #2890e5 0%, #0e578d 100%);
  box-shadow: 0 22px 36px rgba(29, 127, 208, 0.3);
  outline: none;
}

.contact-card a,
.site-footer a {
  color: var(--primary-deep);
}

.contact-card a.button,
.contact-card a.button:visited,
.contact-card a.button:hover,
.contact-card a.button:focus-visible {
  color: #fff;
}

.contact-card .contact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.subpage-hero {
  margin-top: 34px;
  padding: 36px;
  border-radius: var(--radius-xl);
}

.subpage-main .cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(82, 138, 193, 0.14);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 32, 0.86);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  display: grid;
  align-items: center;
  width: min(calc(100% - 32px), 1100px);
  height: min(calc(100% - 32px), 820px);
  margin: 16px auto;
  padding: 26px 70px 74px;
}

.lightbox-figure {
  margin: 0;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.lightbox-close {
  top: 10px;
  right: 10px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  margin-top: -27px;
  border-radius: 50%;
  font-size: 2rem;
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.lightbox-meta {
  position: absolute;
  right: 70px;
  bottom: 20px;
  left: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.lightbox-caption,
.lightbox-counter {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.legal-card {
  margin: 34px 0 52px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.legal-card h2,
.legal-card h3 {
  margin-top: 0;
}

.site-footer {
  padding: 18px 0 44px;
}

.footer-card {
  border-radius: var(--radius-xl);
  padding: 28px 30px;
  background: rgba(15, 39, 63, 0.92);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.footer-card h2,
.footer-card p {
  margin-top: 0;
}

.footer-card h2 {
  color: #fff;
}

.footer-logo {
  width: min(320px, 100%);
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.footer-meta a {
  color: #dcefff;
}

.small-note {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .hero-panel,
  .highlights-grid,
  .contact-grid,
  .footer-grid,
  .cards-grid,
  .steps-grid,
  .reviews-grid,
  .promise-media-grid,
  .subpage-main .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lightbox-dialog {
    padding-right: 56px;
    padding-left: 56px;
  }

  .lightbox-meta {
    right: 56px;
    left: 56px;
  }

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

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

  .hero-glass {
    min-height: 460px;
  }

  .video-parallax {
    min-height: 220px;
  }

  .video-parallax video {
    min-height: 244px;
  }
}

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

  .header-inner {
    position: relative;
    justify-content: center;
    padding: 18px 0 10px;
  }

  .nav-row {
    padding-bottom: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 20px;
    right: 0;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 24px;
  }

  .site-nav a {
    padding: 12px 14px;
    font-size: 0.96rem;
    text-align: center;
  }

  .header-branding {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .brand img {
    width: min(360px, 88vw);
  }

  .brand-claim {
    text-align: center;
    font-size: 1rem;
    white-space: normal;
  }

  .nav-row {
    display: none;
  }

  .site-header.menu-open .nav-row {
    display: block;
  }

  .hero,
  main section,
  .subpage-main,
  .site-footer {
    padding-top: 22px;
  }

  .hero-panel,
  .content-panel,
  .subpage-hero,
  .legal-card,
  .footer-card {
    padding: 26px;
  }

  .hero-stats,
  .cards-grid,
  .steps-grid,
  .highlights-grid,
  .contact-grid,
  .footer-grid,
  .reviews-grid,
  .promise-media-grid,
  .subpage-main .cards-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-dialog {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 20px 12px 78px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    margin-top: 0;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-meta {
    right: 78px;
    bottom: 20px;
    left: 78px;
    flex-direction: column;
    align-items: stretch;
  }

  .feature-media {
    margin: -26px -26px 20px;
  }

  .review-summary {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .button,
  .button-secondary,
  .feature-link .feature-more,
  .review-cta {
    width: 100%;
  }

  .feature-link .feature-more {
    align-self: stretch;
  }

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

  .hero-glass {
    min-height: 380px;
    border-radius: 28px;
  }

  .video-parallax {
    min-height: 180px;
    border-radius: 24px;
  }

  .video-parallax video {
    min-height: 208px;
    transform: translate3d(0, -8px, 0) scale(1.01);
  }

  .promise-panel,
  .promise-video {
    min-height: 0;
    height: auto;
  }

  .review-score {
    justify-self: start;
  }

  .review-copy h3 {
    font-size: 1.3rem;
  }

  .review-copy p,
  .review-quote p,
  .contact-card p,
  .section-header p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .review-links,
  .review-quotes {
    gap: 12px;
  }

  .map-embed iframe {
    min-height: 220px;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }
}

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

  .site-header {
    position: static;
  }

  .menu-toggle {
    top: 18px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .brand img {
    width: min(340px, 90vw);
  }

  .brand-claim {
    font-size: 0.94rem;
  }

  .site-nav {
    padding: 10px;
  }

  .site-nav a {
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .hero-panel,
  .content-panel,
  .subpage-hero,
  .legal-card,
  .footer-card,
  .feature-card,
  .highlight-card,
  .contact-card,
  .stat {
    padding: 20px;
  }

  .feature-media {
    margin: -20px -20px 18px;
  }

  .hero-stats {
    gap: 12px;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  .stat strong {
    font-size: 0.92rem;
    white-space: normal;
  }

  .stat:nth-child(3) strong {
    font-size: 0.9rem;
  }

  .stat span {
    font-size: 0.82rem;
  }

  .hero-glass {
    min-height: 320px;
  }

  .review-score {
    min-width: 120px;
    min-height: 120px;
    padding: 14px;
  }

  .review-score strong {
    font-size: 2.15rem;
  }

  .review-stars {
    font-size: 1.6rem;
  }

  .promise-panel p,
  .hero p,
  .subpage-hero p,
  .lead {
    font-size: 1rem;
  }

  .hero h1,
  .subpage-hero h1 {
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .review-copy h3 {
    font-size: 1.18rem;
  }

  .review-quote {
    padding: 16px 16px;
  }

  .contact-card a,
  .footer-meta a {
    overflow-wrap: anywhere;
  }
}
