@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --paper: #f6f7f9;
  --paper-2: #eef1f5;
  --surface: #ffffff;
  --ink: #0d1520;
  --ink-2: #26313f;
  --muted: #5c6b7d;
  --line: #dfe5ec;
  --line-soft: #e9edf2;
  --accent: #0e5a8a;
  --accent-2: #4fa3d8;
  --accent-soft: #e8f2f9;
  --dark: #0a1017;
  --dark-2: #111b28;
  --goldless-cta: #0e5a8a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-1: 0 10px 40px -12px rgba(13, 21, 32, 0.18);
  --shadow-2: 0 24px 70px -20px rgba(13, 21, 32, 0.28);
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--accent);
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--paper-2);
}
::-webkit-scrollbar-thumb {
  background: #b9c5d2;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.container-x {
  width: min(1240px, 92vw);
  margin-inline: auto;
}
.container-narrow {
  width: min(920px, 92vw);
  margin-inline: auto;
}

.font-display {
  font-family: var(--font-display);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--light {
  color: var(--accent-2);
}
.eyebrow--light::before,
.eyebrow--light::after {
  background: var(--accent-2);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-size: clamp(2.4rem, 6vw, 5rem);
}
.h-1 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  letter-spacing: -0.01em;
}
.h-2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
}
.h-3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}
.h-1,
.h-2,
.h-3,
.h-display {
  height: auto !important;
}
.lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  color: var(--muted);
  font-weight: 400;
}
.text-body {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--muted);
}
.dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 4.4em;
  line-height: 0.8;
  float: left;
  padding: 0.08em 0.14em 0 0;
  color: var(--accent);
  font-weight: 600;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}
.section--tight {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}
.section--dark {
  background: var(--dark);
  color: #eef3f8;
}
.section--dark .lede,
.section--dark .text-body {
  color: #9fb0c2;
}
.section--paper2 {
  background: var(--paper-2);
}
.section--white {
  background: var(--surface);
}

.bg-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.bg-photo--fixed {
  background-attachment: fixed;
}
.on-photo {
  color: #f4f8fc;
}
.on-photo .lede,
.on-photo .text-body {
  color: #c3d2df;
}
.on-photo .h-display,
.on-photo .h-1,
.on-photo .h-2,
.on-photo .h-3 {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 0.8, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}
.btn i {
  transition: transform 0.35s ease;
}
.btn:hover i {
  transform: translateX(4px);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: #0a4568;
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover {
  background: var(--accent-2);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn--line {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--line:hover {
  background: var(--ink);
  color: #fff;
}
.btn--line-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn--line-light:hover {
  background: #fff;
  color: var(--ink);
}
.btn--sm {
  padding: 12px 22px;
  font-size: 11px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--surface);
}
.badge i {
  color: var(--accent);
  font-size: 10px;
}
.badge--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #dbe6ef;
}
.badge--accent {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--accent);
}
.badge--accent i {
  color: var(--accent);
}

.tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.45s cubic-bezier(0.22, 0.8, 0.3, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-1);
  border-color: #cbd6e0;
}
.card--pad {
  padding: clamp(1.6rem, 3vw, 2.6rem);
}
.card--dark {
  background: var(--dark-2);
  border-color: rgba(255, 255, 255, 0.1);
  color: #eef3f8;
}
.card--dark:hover {
  border-color: rgba(255, 255, 255, 0.28);
}
.card--accent {
  background: var(--accent-soft);
  border-color: #cfe3f0;
}

.frame-line {
  border: 1px solid var(--line);
}
.on-photo .frame-line,
.section--dark .frame-line {
  border-color: rgba(255, 255, 255, 0.22);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.media-frame:hover img {
  transform: scale(1.06);
}
.media-frame--tall {
  aspect-ratio: 3/4;
}
.media-frame--wide {
  aspect-ratio: 16/10;
}
.media-frame--square {
  aspect-ratio: 1/1;
}
.media-frame--pano {
  aspect-ratio: 21/9;
}
.media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(transparent, rgba(10, 16, 23, 0.72));
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tx-acc {
  color: var(--accent) !important;
}
.tx-a2 {
  color: var(--accent-2) !important;
}
.tx-mut {
  color: var(--muted) !important;
}
.tx-mut-l {
  color: #9fb1c2 !important;
}
.tx-ink {
  color: var(--ink) !important;
}
.tx-white {
  color: #fff !important;
}

.pulse-marker.mk-1 {
  top: 22%;
  left: 30%;
}
.pulse-marker.mk-2 {
  top: 55%;
  left: 66%;
}
.pulse-marker.mk-3 {
  top: 78%;
  left: 40%;
}
.pulse-marker.mk-4 {
  top: 30%;
  left: 72%;
}
.pulse-marker.mk-5 {
  top: 64%;
  left: 22%;
}
.pulse-marker.mk-6 {
  top: 44%;
  left: 52%;
}
.pulse-marker.mk-7 {
  top: 18%;
  left: 58%;
}
.pulse-marker.mk-8 {
  top: 70%;
  left: 78%;
}
.pulse-marker.mk-9 {
  top: 36%;
  left: 16%;
}

.cookie-text {
  font-size: 0.85rem;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}
.cookie-link {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  margin-top: 14px;
  color: var(--accent);
  text-decoration: none;
}
.cookie-link:hover {
  text-decoration: underline;
}

.big-quote--sm {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}
.mh-320 {
  min-height: 320px;
}
.mh-420 {
  min-height: 420px;
}
.mh-480 {
  min-height: 480px;
}
.mh-560 {
  min-height: 560px;
}

.card--dark .price-row,
.section--dark .price-row,
.on-photo .price-row {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}
.card--dark .p-name,
.section--dark .p-name,
.on-photo .p-name {
  color: #fff;
}
.card--dark .p-desc,
.section--dark .p-desc,
.on-photo .p-desc {
  color: #9fb1c2;
}
.card--dark .p-val,
.section--dark .p-val,
.on-photo .p-val {
  color: var(--accent-2);
}

.icon-chip {
  width: 52px;
  height: 52px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 19px;
}
.icon-chip--dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-2);
}
.icon-chip--line {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--accent);
}

.divider-x {
  height: 1px;
  background: var(--line);
  border: 0;
}
.corner-frame {
  position: relative;
}
.corner-frame::before,
.corner-frame::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.8;
}
.corner-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.corner-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1px 1px 0;
}

.num-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  line-height: 1;
  color: var(--accent);
}
.section--dark .stat-num,
.on-photo .stat-num {
  color: var(--accent-2);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  font-weight: 600;
}
.marquee-item i {
  color: var(--accent);
  font-size: 0.55em;
}

.h-scroll {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  cursor: grab;
}
.h-scroll.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.h-scroll > * {
  scroll-snap-align: start;
  flex: none;
}
.h-scroll::-webkit-scrollbar {
  height: 6px;
}

.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.section--dark .timeline::before,
.on-photo .timeline::before {
  background: rgba(255, 255, 255, 0.2);
}
.tl-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 2.6rem;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-dot {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--surface);
  display: grid;
  place-items: center;
}
.tl-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.section--dark .tl-dot,
.on-photo .tl-dot {
  background: var(--dark);
}
.tl-time {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.section--dark .tl-time,
.on-photo .tl-time {
  color: var(--accent-2);
}

details.acc {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
details.acc + details.acc {
  margin-top: 12px;
}
details.acc[open] {
  box-shadow: var(--shadow-1);
  border-color: #c8d4df;
}
details.acc > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
details.acc > summary::-webkit-details-marker {
  display: none;
}
details.acc > summary .acc-ico {
  flex: none;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 11px;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}
details.acc[open] > summary .acc-ico {
  transform: rotate(45deg);
  background: var(--accent-soft);
}
.acc-body {
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.96rem;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tab-btn {
  padding: 12px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.tab-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.6s cubic-bezier(0.22, 0.8, 0.3, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(79, 163, 216, 0.55);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(79, 163, 216, 0);
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes liveblink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.pulse-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(79, 163, 216, 0.4);
  animation: pulse-dot 2.4s ease infinite;
  cursor: pointer;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e05252;
  display: inline-block;
  animation: liveblink 1.6s ease infinite;
}
.float-slow {
  animation: floaty 7s ease-in-out infinite;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
}
.input,
select.input,
textarea.input {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  outline: none;
}
.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 90, 138, 0.12);
}
.input.is-error {
  border-color: #d06a6a;
  box-shadow: 0 0 0 4px rgba(208, 106, 106, 0.12);
}
.field .err-msg {
  display: none;
  font-size: 0.78rem;
  color: #b44f4f;
}
.field.has-error .err-msg {
  display: block;
}
.section--dark .field label,
.on-photo .field label {
  color: #cdd9e4;
}
.section--dark .input,
.on-photo .input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.section--dark .input::placeholder,
.on-photo .input::placeholder {
  color: #7f93a8;
}
.section--dark .input:focus,
.on-photo .input:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(124, 196, 234, 0.15);
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  cursor: pointer;
}
.checkbox-line input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex: none;
}
.checkbox-line a {
  color: var(--accent);
  text-decoration: underline;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
}
.spinner--dark {
  border-color: rgba(13, 21, 32, 0.2);
  border-top-color: var(--ink);
}

.toast-wrap {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  font-size: 0.9rem;
  max-width: 360px;
  animation: fadeUp 0.45s cubic-bezier(0.22, 0.8, 0.3, 1) both;
}
.toast i {
  color: var(--accent-2);
  font-size: 18px;
}
.toast.is-out {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 99998;
  width: min(430px, calc(100vw - 48px));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-2);
  padding: 24px;
  display: none;
}
.cookie-banner.is-visible {
  display: block;
  animation: fadeUp 0.6s cubic-bezier(0.22, 0.8, 0.3, 1) both;
}
.cookie-banner .cb-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    box-shadow 0.4s ease,
    background 0.4s ease;
  background: rgba(246, 247, 249, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.is-scrolled {
  box-shadow: 0 12px 40px -18px rgba(13, 21, 32, 0.25);
}
.header-topbar {
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.78rem;
  color: var(--muted);
}
.header-topbar .tb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-topbar .tb-item i {
  color: var(--accent);
  font-size: 10px;
}
.header-topbar a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.header-topbar a:hover {
  color: var(--accent);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  height: 46px;
  width: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.brand--inv .brand-name {
  color: #fff;
}
.brand--lg img {
  height: 52px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 10px 13px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.main-nav a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 17px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.burger:hover {
  background: var(--ink);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 0.8, 0.3, 1);
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu .mm-close {
  align-self: flex-end;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.mobile-menu ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu ul a i {
  font-size: 12px;
  color: var(--accent-2);
}
.mm-contacts {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 12px;
  font-size: 0.9rem;
  color: #b8c8d6;
}
.mm-contacts a {
  color: #b8c8d6;
  text-decoration: none;
}
.mm-contacts a:hover {
  color: var(--accent-2);
}
.footer-blurb {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #9fb1c2;
  margin-top: 20px;
}
.mm-contacts i {
  color: var(--accent-2);
  width: 18px;
}

.site-footer {
  background: var(--dark);
  color: #b9c8d6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-title {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: #9fb1c2;
  text-decoration: none;
  font-size: 0.9rem;
  transition:
    color 0.3s,
    padding-left 0.3s;
}
.footer-links a:hover {
  color: var(--accent-2);
  padding-left: 6px;
}
.footer-contact {
  display: grid;
  gap: 14px;
  font-size: 0.9rem;
}
.footer-contact .fc-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--accent-2);
  margin-top: 3px;
  width: 15px;
}
.footer-contact a {
  color: #b9c8d6;
  text-decoration: none;
}
.footer-contact a:hover {
  color: var(--accent-2);
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #cdd9e4;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.socials--light a {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
}
.socials--light a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.fc-light .fc-row {
  color: var(--muted);
}
.fc-light i {
  color: var(--accent);
}
.fc-light a {
  color: var(--accent);
}
.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}
.socials--light a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 56px;
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #7e92a5;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide .bg-photo {
  position: absolute;
  inset: 0;
}
.slider-dots {
  display: flex;
  gap: 10px;
}
.slider-dots button {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}
.slider-dots button.is-active {
  background: #fff;
  width: 52px;
}
.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
}
.slider-arrow:hover {
  background: #fff;
  color: var(--ink);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.price-row .p-name {
  font-weight: 600;
  color: var(--ink);
}
.price-row .p-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}
.price-row .p-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  white-space: nowrap;
}
.price-row .p-val small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.compare-table thead th {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.compare-table td i.fa-check {
  color: var(--accent);
}
.compare-table td i.fa-minus {
  color: #c3cdd8;
}
.compare-table tbody tr {
  transition: background 0.3s ease;
}
.compare-table tbody tr:hover {
  background: var(--accent-soft);
}

.leader-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.leader-line .dots {
  flex: 1;
  border-bottom: 1px dashed #c5cfda;
  transform: translateY(-5px);
}

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 380px;
  filter: grayscale(1) contrast(1.04);
  border-radius: var(--radius);
}
.stepper {
  counter-reset: step;
}
.stepper .step-item {
  position: relative;
  padding-left: 74px;
  padding-bottom: 2.4rem;
  counter-increment: step;
}
.stepper .step-item::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-soft);
  -webkit-text-stroke: 1px var(--accent);
}
.stepper .step-item::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 54px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.stepper .step-item:last-child::after {
  display: none;
}

.ticker-num {
  font-variant-numeric: tabular-nums;
}
.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
.kbd-key {
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.72rem;
  background: var(--paper-2);
}
.thin-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.thin-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 0.94rem;
  color: var(--muted);
}
.thin-list li i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 11px;
  flex: none;
}
.section--dark .thin-list li,
.on-photo .thin-list li {
  color: #a7b8c8;
}
.section--dark .thin-list li i,
.on-photo .thin-list li i {
  color: var(--accent-2);
}

.big-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.5;
}
.big-quote::before {
  content: "\201C";
  display: block;
  font-size: 3.4em;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 18px;
}
.on-photo .big-quote::before,
.section--dark .big-quote::before {
  color: var(--accent-2);
}

.stars i {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 3px;
}
.on-photo .stars i,
.section--dark .stars i {
  color: var(--accent-2);
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--ink);
}
.legal-doc p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.97rem;
}
.legal-doc ul {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.95rem;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.legal-doc a {
  color: var(--accent);
}

.back-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1500;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: var(--shadow-1);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.4s ease;
}
.back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover {
  background: var(--ink);
  color: #fff;
}

.progress-line {
  height: 3px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.progress-line span {
  display: block;
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width 0.3s ease;
}

.article-body p {
  color: var(--muted);
  line-height: 1.95;
  font-size: 1.02rem;
  margin-bottom: 1.6em;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  margin: 2.2em 0 0.9em;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1.8em 0 0.7em;
}
.article-body ul {
  color: var(--muted);
  line-height: 1.9;
  padding-left: 22px;
  margin-bottom: 1.6em;
  display: grid;
  gap: 8px;
}
.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .header-cta .btn {
    display: none;
  }
  .bg-photo--fixed {
    background-attachment: scroll;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 3.8rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .header-topbar .tb-hide {
    display: none;
  }
  .btn {
    padding: 15px 26px;
  }
  .mobile-sticky-cta {
    position: sticky;
    bottom: 12px;
    z-index: 50;
  }
  .marquee-track {
    animation-duration: 20s;
  }
  .cookie-banner {
    left: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
  .toast-wrap {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .toast {
    max-width: none;
  }
  .timeline::before {
    left: 15px;
  }
  .tl-item {
    padding-left: 48px;
  }
  .tl-dot {
    left: 4px;
  }
}
@media (max-width: 560px) {
  .brand-name {
    font-size: 1.05rem;
  }
  .compare-table {
    min-width: 620px;
  }
  .table-scroll {
    overflow-x: auto;
  }
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: #0a4568;
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}

.stepper--light .step-item::before {
  color: transparent;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.55);
}
.stepper--light .step-item::after {
  background: rgba(255, 255, 255, 0.18);
}

.num-list {
  counter-reset: num;
  list-style: none;
  margin: 0;
  padding: 0;
}
.num-list li {
  position: relative;
  padding-left: 58px;
  padding-bottom: 1.5rem;
  counter-increment: num;
  color: var(--ink-2);
  line-height: 1.7;
}
.num-list li::before {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
}

.legal-toc {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.legal-toc a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition:
    color 0.25s,
    border-color 0.25s;
}
.legal-toc a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.legal-body h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body p {
  margin-bottom: 1.1rem;
  color: var(--ink-2);
  line-height: 1.78;
}
