:root {
  --bg: #08182e;
  --bg-soft: #102544;
  --panel: rgba(10, 25, 48, 0.72);
  --panel-strong: rgba(15, 33, 62, 0.94);
  --line: rgba(129, 210, 255, 0.18);
  --line-strong: rgba(1, 204, 252, 0.38);
  --text: #f4fbff;
  --muted: rgba(228, 243, 255, 0.72);
  --primary: #01ccfc;
  --secondary: #00bad6;
  --brand: #425893;
  --brand-deep: #14395e;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --page-gutter: 12px;
  --section-frame-inset-block: 8px;
  --section-frame-inset-inline: 10px;
  --section-divider-width: calc(100% - (var(--page-gutter) * 4));
  --header-offset: 128px;
  --section-top-offset: 18px;
  --section-space: 28px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(1, 204, 252, 0.16), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(66, 88, 147, 0.38), transparent 30%),
    linear-gradient(180deg, #061326 0%, #08182e 42%, #0b1f3b 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  top: 88px;
  right: -96px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 204, 252, 0.18), transparent 68%);
  filter: blur(12px);
}

.page-shell::after {
  bottom: 48px;
  left: -110px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 186, 214, 0.14), transparent 70%);
  filter: blur(18px);
}

.container,
.topbar {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 12px;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(1, 204, 252, 0.18));
}

.brand-kicker {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.brand-text {
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.topbar-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.96rem;
  color: var(--text);
}

.topbar-link.muted {
  color: var(--muted);
}

[data-copy-email] {
  cursor: pointer;
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(180, 234, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.locale-button {
  min-width: 54px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.locale-button:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.locale-button.is-active {
  background: linear-gradient(135deg, rgba(1, 204, 252, 0.92), rgba(0, 186, 214, 0.88));
  color: #04203a;
  box-shadow: 0 10px 22px rgba(1, 204, 252, 0.28);
}

.section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--section-top-offset) + var(--section-space)) 0 var(--section-space);
  overflow: clip;
  isolation: isolate;
  scroll-margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scroll-sections > .section::before,
.scroll-sections > .section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.scroll-sections > .section::before {
  inset: var(--section-frame-inset-block) var(--section-frame-inset-inline);
  border: 1px solid rgba(129, 210, 255, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top left, rgba(1, 204, 252, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(66, 88, 147, 0.14), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(1, 204, 252, 0.05);
}

.scroll-sections > .section::after {
  left: 50%;
  bottom: 10px;
  width: min(var(--section-divider-width), 960px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(1, 204, 252, 0.22), transparent);
}

.scroll-sections > .section:last-child::after {
  display: none;
}

.hero.section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 18% 24%, rgba(1, 204, 252, 0.1), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(66, 88, 147, 0.18), transparent 36%);
}

.benefits.section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 14% 76%, rgba(1, 204, 252, 0.08), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(66, 88, 147, 0.16), transparent 34%);
}

.services.section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 16% 18%, rgba(1, 204, 252, 0.08), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(0, 186, 214, 0.11), transparent 34%);
}

.extras.section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 82% 22%, rgba(1, 204, 252, 0.09), transparent 26%),
    radial-gradient(circle at 12% 78%, rgba(66, 88, 147, 0.18), transparent 38%);
}

.trust.section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 18% 20%, rgba(1, 204, 252, 0.08), transparent 24%),
    radial-gradient(circle at 88% 68%, rgba(66, 88, 147, 0.15), transparent 34%);
}

.contact.section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 16% 20%, rgba(1, 204, 252, 0.08), transparent 24%),
    radial-gradient(circle at 84% 84%, rgba(66, 88, 147, 0.18), transparent 34%);
}

.hero {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-grid,
.services-grid,
.trust-layout,
.contact-card {
  display: grid;
  gap: 22px;
}

.hero-grid {
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.footer-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.footer-heading::before {
  content: "";
  flex: 0 0 34px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(1, 204, 252, 0.28), var(--primary));
  box-shadow: 0 0 12px rgba(1, 204, 252, 0.28);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 6.2vw, 5rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 640px;
  margin-top: 18px;
  font-size: 1.1rem;
}

.support-line {
  margin-top: 18px;
  max-width: 700px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #04203a;
  box-shadow: 0 18px 32px rgba(1, 204, 252, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(1, 204, 252, 0.34);
}

.btn-secondary {
  border-color: rgba(180, 234, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(1, 204, 252, 0.08);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 16px rgba(1, 204, 252, 0.5);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.brand-card,
.info-card,
.trust-card,
.quote-panel,
.contact-card,
.detail-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand-card {
  position: relative;
  width: min(100%, 500px);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(1, 204, 252, 0.4), transparent 34%, transparent 66%, rgba(66, 88, 147, 0.55));
  opacity: 0.7;
  z-index: -1;
}

.image-frame {
  overflow: hidden;
  border-radius: inherit;
  aspect-ratio: 1 / 1;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.section-head {
  max-width: 800px;
  margin-bottom: 24px;
  min-width: 0;
}

.section-head p:last-child {
  margin-top: 14px;
}

.section-head.compact {
  margin-bottom: 0;
}

.benefits-grid,
.service-list,
.trust-grid,
.contact-details {
  display: grid;
  gap: 16px;
}

.services-copy,
.extras-column,
.extra-item,
.service-item,
.trust-card,
.info-card,
.quote-panel {
  min-width: 0;
}

.info-card,
.trust-card,
.detail-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.info-card:hover,
.trust-card:hover,
.detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 28, 53, 0.88);
}

.info-card p,
.trust-card p,
.detail-card p {
  margin-top: 10px;
}

.gallery-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.gallery-viewport {
  min-width: 0;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.gallery-slide {
  display: flex;
  justify-content: center;
  flex: 0 0 100%;
}

.gallery-card {
  width: min(100%, 760px);
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 25, 46, 0.78);
  box-shadow: var(--shadow);
}

.gallery-control {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(180, 234, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 25, 48, 0.82);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.gallery-control:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(12, 32, 58, 0.94);
}

.gallery-control span {
  transform: translateY(-2px);
}

.gallery-media {
  overflow: hidden;
  height: clamp(220px, 50vw, 520px);
  border: 1px solid rgba(180, 234, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(1, 204, 252, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.gallery-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.gallery-dot {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.gallery-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(180, 234, 255, 0.26);
  transition:
    width 0.22s ease,
    background-color 0.22s ease;
}

.gallery-dot.is-active::before {
  width: 32px;
  background: var(--primary);
}

.extras-head {
  margin-bottom: 28px;
}

.extras-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.extras-column {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 25, 46, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.extras-column::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(1, 204, 252, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(1, 204, 252, 0.05), transparent 40%);
  pointer-events: none;
}

.extras-column-head {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.extras-category {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(180, 234, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.extras-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.extra-item {
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(180, 234, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.extra-item:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(1, 204, 252, 0.06);
}

.extra-item h3 {
  font-size: 1.08rem;
}

.extra-item p {
  margin-top: 10px;
  font-size: 0.97rem;
}

.service-list {
  margin-top: 22px;
}

.service-item {
  position: relative;
  padding: 18px 20px 18px 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.service-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 35% 35%, #d6fbff, var(--primary) 52%, var(--secondary));
  box-shadow: 0 0 18px rgba(1, 204, 252, 0.36);
}

.service-item:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(1, 204, 252, 0.06);
}

.trust-layout {
  align-items: start;
}

.quote-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
}

blockquote {
  margin: 0;
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.3;
}

.quote-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.contact-card {
  padding: 24px;
  border-radius: 30px;
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(1, 204, 252, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(9, 25, 46, 0.84);
}

.contact-copy p:not(.eyebrow) {
  margin-top: 14px;
}

.contact-copy,
.contact-details,
.footer-nav,
.footer-contact,
.footer-bottom {
  min-width: 0;
}

.detail-card {
  min-height: 100%;
}

.detail-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.detail-card p {
  overflow-wrap: anywhere;
}

.qr-detail-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.qr-image {
  width: min(100%, 180px);
  height: auto;
  margin-top: 12px;
  border: 1px solid rgba(180, 234, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 10px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.map-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(1, 204, 252, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 24, 46, 0.74);
  box-shadow: var(--shadow);
}

.map-card-copy h3 {
  margin: 10px 0 0;
}

.map-card-copy p:not(.eyebrow) {
  margin-top: 12px;
}

.map-embed {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  min-height: 320px;
  background: rgba(4, 13, 24, 0.7);
}

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

.scroll-sections {
  display: block;
}

.contact.section {
  align-items: stretch;
}

.contact-shell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 100%;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 0 0 10px;
}

.site-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, transparent, rgba(1, 204, 252, 0.42), transparent);
}

.footer-layout {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 24, 46, 0.74);
  box-shadow: var(--shadow);
}

.footer-copy {
  margin-top: 12px;
}

.footer-heading {
  margin: 0;
  color: var(--primary);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.footer-links a,
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links a:hover,
.footer-contact-link:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  padding-top: 18px;
}

.footer-bottom p {
  max-width: 780px;
  color: rgba(228, 243, 255, 0.56);
  font-size: 0.92rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 12px));
  z-index: 60;
  min-width: min(320px, calc(100% - 32px));
  max-width: min(420px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(180, 234, 255, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 24, 45, 0.94);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(4, 12, 24, 0.34);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast.is-error {
  border-color: rgba(255, 130, 130, 0.34);
}

@media (max-width: 767px) {
  html {
    scroll-snap-type: none;
  }

  .topbar {
    top: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
      var(--panel-strong);
    border: 1px solid rgba(129, 210, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(4, 12, 24, 0.28);
    backdrop-filter: blur(18px);
  }

  .section {
    min-height: auto;
    padding: 42px 0 var(--section-space);
  }

  .scroll-sections > .section::after {
    bottom: 4px;
  }
}

@media (max-width: 479px) {
  :root {
    --page-gutter: 12px;
    --section-frame-inset-block: 8px;
    --section-frame-inset-inline: 10px;
    --section-divider-width: calc(100% - 48px);
    --header-offset: 108px;
    --section-top-offset: 14px;
    --section-space: 28px;
  }

  .scroll-sections > .section::before {
    inset: 8px 10px;
    border-radius: 24px;
  }

  .page-shell::before {
    right: -96px;
    width: 220px;
    height: 220px;
  }

  .page-shell::after {
    left: -110px;
    width: 240px;
    height: 240px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .topbar-actions,
  .cta-row {
    width: 100%;
  }

  .brand {
    width: auto;
    align-items: flex-start;
    gap: 10px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .brand-text {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .gallery-carousel {
    grid-template-columns: 1fr;
  }

  .gallery-control {
    position: absolute;
    top: clamp(92px, 26vw, 120px);
    z-index: 1;
  }

  .gallery-control-prev {
    left: 12px;
  }

  .gallery-control-next {
    right: 12px;
  }

  .topbar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 6px 12px;
  }

  .topbar-link {
    width: auto;
    min-height: 36px;
    font-size: 0.88rem;
  }

  .locale-switcher {
    width: fit-content;
  }

  .btn {
    width: 100%;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 8px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero-lead,
  .support-line,
  .section-head,
  .quote-panel {
    max-width: 100%;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 1rem;
  }

  .cta-row {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-points {
    gap: 8px;
    margin-top: 20px;
  }

  .brand-card {
    width: 100%;
    max-width: 420px;
  }

  .gallery-card {
    padding: 10px;
    border-radius: 22px;
  }

  .gallery-media {
    height: clamp(220px, 72vw, 320px);
    border-radius: 18px;
  }

  .gallery-dots {
    gap: 4px;
    margin-top: 10px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .eyebrow {
    gap: 8px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .eyebrow::before,
  .footer-heading::before {
    flex-basis: 24px;
    width: 24px;
  }

  .info-card,
  .trust-card,
  .detail-card,
  .extras-column,
  .quote-panel {
    padding: 18px;
  }

  .service-item {
    padding: 16px 16px 16px 46px;
    font-size: 0.98rem;
  }

  .service-item::before {
    left: 16px;
    width: 16px;
    height: 16px;
  }

  .extras-head {
    margin-bottom: 22px;
  }

  .extras-column-head {
    margin-bottom: 14px;
  }

  .extras-category {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .extra-item {
    padding: 16px;
  }

  .extra-item h3 {
    font-size: 1rem;
  }

  .extra-item p {
    font-size: 0.94rem;
  }

  .trust-layout {
    gap: 18px;
  }

  blockquote {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
  }

  .contact-shell {
    gap: 20px;
  }

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

  .contact-details {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-card {
    padding: 16px;
  }

  .qr-detail-card {
    align-items: center;
    text-align: center;
  }

  .qr-image {
    width: min(100%, 160px);
  }

  .site-footer {
    padding-bottom: 4px;
  }

  .footer-layout {
    gap: 14px;
  }

  .footer-nav,
  .footer-contact {
    padding: 18px;
    border-radius: 20px;
  }

  .footer-links {
    gap: 6px;
    margin-top: 10px;
  }

  .footer-bottom {
    padding-top: 14px;
  }

  .footer-bottom p {
    font-size: 0.88rem;
  }

  .toast {
    bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 8px));
    min-width: auto;
    width: calc(100% - 24px);
    max-width: 360px;
    padding: 12px 14px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  :root {
    --page-gutter: 16px;
    --section-frame-inset-block: 12px;
    --section-frame-inset-inline: 14px;
    --section-divider-width: calc(100% - 72px);
    --header-offset: 104px;
    --section-top-offset: 18px;
    --section-space: 32px;
  }

  .page-shell::before {
    top: 96px;
    right: -112px;
    width: 280px;
    height: 280px;
  }

  .page-shell::after {
    bottom: 52px;
    left: -120px;
    width: 300px;
    height: 300px;
  }

  .topbar {
    gap: 12px;
    padding: 14px 16px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-grid {
    gap: 26px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 7vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.95rem, 6vw, 2.7rem);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 1.04rem;
  }

  .brand-card {
    max-width: 460px;
  }

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

  .extras-column,
  .quote-panel {
    padding: 20px;
  }

  .service-item {
    min-height: 100%;
  }

  .trust-layout {
    gap: 20px;
  }

  .gallery-card {
    padding: 12px;
  }

  .gallery-media {
    height: clamp(260px, 58vw, 400px);
  }

  .contact-shell {
    gap: 22px;
  }

  .contact-card {
    gap: 20px;
    padding: 22px;
  }

  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .qr-detail-card {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .toast {
    width: min(420px, calc(100% - 32px));
  }
}

@media (min-width: 768px) {
  html {
    scroll-snap-type: y mandatory;
  }

  :root {
    --page-gutter: 20px;
    --section-frame-inset-block: 14px;
    --section-frame-inset-inline: 16px;
    --section-divider-width: calc(100% - 96px);
    --header-offset: 96px;
    --section-top-offset: 20px;
    --section-space: 40px;
  }

  .section {
    min-height: 100svh;
    padding: calc(var(--section-top-offset) + var(--section-space)) 0 var(--section-space);
  }

  .hero-grid,
  .trust-layout,
  .contact-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-grid,
  .trust-grid,
  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .topbar-actions {
    justify-content: flex-end;
  }

  .hero-grid {
    gap: 28px;
  }

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

  .gallery-card {
    padding: 12px;
  }

  .gallery-media {
    height: clamp(280px, 44vw, 440px);
  }

  .contact-shell {
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  :root {
    --page-gutter: 20px;
    --section-frame-inset-block: 18px;
    --section-frame-inset-inline: 24px;
    --section-divider-width: calc(100% - 120px);
    --header-offset: 96px;
    --section-top-offset: 24px;
    --section-space: 44px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 36px;
  }

  .hero-visual {
    justify-items: end;
  }

  .extras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
  }

  .trust-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 24px;
  }

  .quote-panel {
    min-height: 100%;
  }

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

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

  .gallery-carousel {
    grid-template-columns: 60px minmax(0, 1fr) 60px;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
    gap: 22px;
    padding: 26px;
  }

  .contact-copy h2 {
    font-size: clamp(2.45rem, 4.1vw, 4.2rem);
    line-height: 1.02;
  }

  .contact-copy p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 1rem;
  }

  .contact-details {
    gap: 14px;
  }

  .detail-card {
    padding: 18px;
  }

  .qr-image {
    width: min(100%, 150px);
    margin-top: 10px;
    padding: 8px;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .site-footer::before {
    margin-bottom: 16px;
  }

  .footer-nav,
  .footer-contact {
    padding: 18px;
  }

  .footer-links {
    gap: 8px;
    margin-top: 10px;
  }

  .footer-copy {
    margin-top: 8px;
  }

  .footer-bottom {
    padding-top: 12px;
  }

  .footer-bottom p {
    font-size: 0.86rem;
  }

  .map-card {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
    align-items: center;
    gap: 24px;
    padding: 34px;
  }

  .footer-layout {
    grid-template-columns: minmax(220px, 0.9fr) minmax(240px, 1.1fr);
    align-items: start;
    gap: 16px;
  }
}

@media (min-width: 1440px) {
  :root {
    --page-gutter: 24px;
    --section-frame-inset-block: 20px;
    --section-frame-inset-inline: 28px;
    --section-divider-width: calc(100% - 144px);
    --section-top-offset: 28px;
    --section-space: 52px;
  }

  .page-shell::before {
    top: 110px;
    right: -120px;
    width: 320px;
    height: 320px;
  }

  .page-shell::after {
    bottom: 60px;
    left: -120px;
    width: 360px;
    height: 360px;
  }

  .scroll-sections > .section::before {
    border-radius: 38px;
  }
}
