:root {
  --navy: #0b1b30;
  --navy-deep: #060f1b;
  --ink: #0B3A66;
  --orange: #CC4A00;
  --orange-deep: #B04300;
  --orange-soft: #fff1e6;
  --cream: #ffffff;
  --paper: #F4F6F8;
  --line: #e7e7e7;
  --line-strong: #dad0c2;
  --muted: #5b6675;
  --muted-light: #8a93a1;
  --ring: #ff6a0055;
  --shadow-sm: 0 1px 2px rgba(11, 27, 48, 0.06), 0 2px 8px rgba(11, 27, 48, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(11, 27, 48, 0.22), 0 4px 12px rgba(11, 27, 48, 0.06);
  --shadow-lg: 0 30px 60px -24px rgba(11, 27, 48, 0.35);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --maxw: 1400px;
  --display: "Plus Jakarta Sans", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button:focus {
  outline: none !important;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.07;
  letter-spacing: -0.015em;
  color: var(--navy);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange-deep);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 18px 0 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.075rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn i {
  font-size: 20px;
  flex: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(255, 106, 0, 0.7);
}

.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(255, 106, 0, 0.75);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: #fff;
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

/* ---------- Top info bar ---------- */

.topbar {
  background: var(--navy);
  color: #c3cdda;
  font-size: 0.85rem;
  position: relative;
  z-index: 61;
}

/*.topbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, #ffa45c 45%, var(--orange) 100%);
}*/

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  gap: 18px;
}

.topbar-left,
.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.topbar-status b {
  color: #fff;
  font-weight: 700;
}

.topbar-status .ping {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #36d860;
  flex: none;
}

.topbar-status .ping::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #36d860;
  animation: ping 1.9s ease-out infinite;
}

.topbar-status.closed .ping {
  background: #ff7a59;
}

.topbar-status.closed .ping::after {
  animation: none;
  background: #ff7a59;
  opacity: 0.35;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  75%,
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.topbar-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.topbar-rating .rstars {
  display: inline-flex;
  gap: 1px;
  color: var(--orange);
}

.topbar-rating .rstars i {
  font-size: 12px;
}

.topbar-rating b {
  color: #fff;
  font-weight: 700;
}

.topbar a {
  color: #e2e8f1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar a:hover {
  color: #fff;
}

.topbar a i {
  font-size: 14px;
  color: var(--orange);
  flex: none;
}

.topbar-sep {
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.18);
}

/* ---------- Header (solid, separated) ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
  padding: 10px;
}

.site-header.scrolled {
  box-shadow: 0 8px 26px -20px rgba(11, 27, 48, 0.55);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*height: 80px;*/
  gap: 20px;
  transition: height 0.28s ease;
}

.scrolled .nav {}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand img {
  max-height: 90px;
  width: auto;
  transition: all 0.28s ease;
}

.scrolled .brand img {
  max-height: 80px;
}

.brand .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand .name small {
  display: block;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width 0.22s ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--navy);
  font-weight: 700;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links .m-phone {
  display: none;
}

.drawer,
.nav-backdrop {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 11px;
}

.header-call .hc-ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  flex: none;
  transition: background 0.2s, transform 0.2s;
}

.header-call .hc-ic i {
  font-size: 20px;
  color: var(--orange-deep);
  transition: color 0.2s;
}

.header-call:hover .hc-ic {
  background: var(--orange);
  transform: translateY(-1px);
}

.header-call:hover .hc-ic i {
  color: #fff;
}

.header-call .hc-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.header-call .hc-text small {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-call .hc-text b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.nav-phone {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* Invisible bridge between trigger and dropdown */

@media (min-width: 1025px) {
  .dor-dd::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    z-index: 59;
  }
}

.dor-dd {
  --dd-navy: var(--navy, #0B1B30);
  --dd-navy-deep: var(--navy-deep, #060F1B);
  --dd-orange: var(--orange, #FF6A00);
  --dd-orange-soft: var(--orange-soft, #FFF1E6);
  --dd-orange-deep: var(--orange-deep, #E25C00);
  --dd-line: var(--line, #ECE3D8);
  --dd-cream: var(--cream, #FBF8F4);
  --dd-ink: var(--ink, #16222F);
  --dd-muted: var(--muted, #5B6675);
  --dd-display: var(--display, 'Plus Jakarta Sans', system-ui, sans-serif);
  --dd-body: var(--body, 'Inter', system-ui, sans-serif);
  position: relative;
  list-style: none;
  font-family: var(--dd-body);
}

/* trigger button — matches your existing nav-link look */

.dor-dd__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  font-family: var(--dd-body);
  font-weight: 500;
  font-size: .97rem;
  color: var(--dd-ink);
  position: relative;
  white-space: nowrap;
  transition: color .18s;
}

.dor-dd__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--dd-orange);
  transition: width .22s ease;
}

.dor-dd__trigger:hover {
  color: var(--dd-navy)
}

.dor-dd__trigger:hover::after {
  width: 100%
}

.dor-dd__trigger[aria-expanded="true"] {
  color: var(--dd-navy);
  font-weight: 700
}

.dor-dd__trigger[aria-expanded="true"]::after {
  width: 100%
}

.dor-dd__trigger:focus-visible {
  outline: 3px solid rgba(255, 106, 0, .35);
  outline-offset: 4px;
  border-radius: 6px
}

.dor-dd__chev {
  width: 15px;
  height: 15px;
  transition: transform .22s ease;
  flex: none
}

.dor-dd__trigger[aria-expanded="true"] .dor-dd__chev {
  transform: rotate(180deg)
}

/* the dropdown panel */

.dor-dd__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 340px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 18px;
  box-shadow: 0 24px 60px -20px rgba(11, 27, 48, .28), 0 6px 18px rgba(11, 27, 48, .08);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  z-index: 60;
}

/* little arrow pointing at the trigger */

.dor-dd__panel::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid var(--dd-line);
  border-left: 1px solid var(--dd-line);
  border-top-left-radius: 3px;
}

.dor-dd.is-open .dor-dd__panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease;
}

/* menu items */

.dor-dd__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.dor-dd__menu a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--dd-ink);
  text-decoration: none;
  transition: background .18s, transform .18s;
}

.dor-dd__menu a:hover,
.dor-dd__menu a:focus-visible {
  background: var(--dd-cream);
  outline: none;
}

.dor-dd__menu a:focus-visible {
  box-shadow: inset 0 0 0 2px var(--dd-orange)
}

.dor-dd__ic {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 11px;
  background: var(--dd-orange-soft);
  display: grid;
  place-items: center;
  transition: background .18s, transform .18s;
}

.dor-dd__ic svg {
  width: 20px;
  height: 20px;
  color: var(--dd-orange-deep)
}

.dor-dd__menu a:hover .dor-dd__ic {
  background: var(--dd-orange);
  transform: rotate(-3deg)
}

.dor-dd__menu a:hover .dor-dd__ic svg {
  color: #fff
}

.dor-dd__body {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.dor-dd__body b {
  font-family: var(--dd-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--dd-navy)
}

.dor-dd__body small {
  font-size: .78rem;
  color: var(--dd-muted);
  margin-top: 2px
}

/* bottom CTA inside the panel */

.dor-dd__cta {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--dd-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 2px;
  font-family: var(--dd-display);
  font-weight: 700;
  color: var(--dd-orange-deep);
  text-decoration: none;
  font-size: .96rem;
  transition: color .18s;
}

.dor-dd__cta svg {
  width: 18px;
  height: 18px;
  transition: transform .2s ease
}

.dor-dd__cta:hover {
  color: var(--dd-navy)
}

.dor-dd__cta:hover svg {
  transform: translateX(4px)
}

/* --------- Mobile (tap to toggle, inline accordion style) --------- */

@media (max-width:1024px) {
  .dor-dd {
    width: 100%
  }
  .dor-dd__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 16px 2px;
    border-bottom: 1px solid var(--dd-line);
    font-family: var(--dd-display);
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--dd-navy);
  }
  .dor-dd__trigger::after {
    display: none
  }
  .dor-dd__chev {
    width: 18px;
    height: 18px
  }
  .dor-dd__panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    width: 100%;
    transform: unset !important;
    max-height: 0;
    overflow: hidden;
    padding: 0 4px;
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: none;
    transition: max-height .35s ease, padding .3s ease;
  }
  .dor-dd__panel::before {
    display: none
  }
  .dor-dd.is-open .dor-dd__panel {
    max-height: 600px;
    padding: 10px 4px 6px;
    pointer-events: auto;
    transition: max-height .45s ease, padding .3s ease;
  }
  .dor-dd__menu a {
    padding: 12px 10px;
    border-radius: 12px;
    margin-bottom: 6px
  }
  .dor-dd__menu a:hover {
    background: var(--dd-cream)
  }
  .dor-dd__ic {
    width: 38px;
    height: 38px
  }
  .dor-dd__cta {
    margin-top: 6px;
    padding: 14px 16px;
    justify-content: center;
    background: var(--dd-orange);
    color: #fff;
    border-radius: 999px;
    border-top: none;
  }
  .dor-dd__cta:hover {
    color: #fff;
    background: var(--dd-orange-deep)
  }
}

@media (prefers-reduced-motion:reduce) {
  .dor-dd__panel,
  .dor-dd__chev,
  .dor-dd__ic,
  .dor-dd__cta svg,
  .dor-dd__menu a {
    transition: none
  }
}

/* ---------- Hero (full-bleed image) ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(640px, 90vh, 880px);
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient( 90deg, rgba(6, 15, 27, 0.95) 0%, rgba(6, 15, 27, 0.86) 34%, rgba(6, 15, 27, 0.55) 66%, rgba(6, 15, 27, 0.4) 100%), linear-gradient(0deg, rgba(6, 15, 27, 0.92) 2%, rgba(6, 15, 27, 0.1) 38%), radial-gradient(70% 60% at 80% 8%, rgba(255, 106, 0, 0.16), transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 20px;
}

.hero-content {
  max-width: 660px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
}

.hero-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #36d860;
  box-shadow: 0 0 0 4px rgba(54, 216, 96, 0.25);
}

.hero-badge .pill {
  background: var(--orange);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  font-weight: 700;
  margin: 26px 0 0;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 .accent {
  color: var(--orange);
  position: relative;
  white-space: nowrap;
}

.hero p.lead {
  font-size: 1.18rem;
  color: #d6dde7;
  margin: 24px 0 0;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.btn-hero-ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  color: #c6cfdb;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-rating .stars {
  display: inline-flex;
  gap: 2px;
  color: var(--orange);
}

.hero-rating .stars svg {
  width: 17px;
  height: 17px;
}

/* hero booking form */

.hero-form-wrap {
  position: relative;
  z-index: 2;
  margin-left: 12%;
}

.hero-form {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-form br {
  display: none;
}

.hero-form p {
  margin-bottom: 0;
}

.hf-head {
  margin-bottom: 18px;
}

.hf-head h2 {
  font-size: 1.5rem;
  color: var(--navy);
}

.hf-head p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 5px;
}

.hf-field {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
}

.hf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hf-field label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.hf-field input,
.hf-field select,
.hf-field textarea {
  width: 100%;
  border: 1.5px solid var(--line-strong);
  border-radius: 11px;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 0.97rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.hf-field textarea {
  height: 80px;
}

.hf-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235B6675' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.hf-field input::placeholder {
  color: var(--muted-light);
}

.hf-field input:focus,
.hf-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--ring);
}

.hf-field input.invalid {
  border-color: #e0492f;
  box-shadow: 0 0 0 3px rgba(224, 73, 47, 0.14);
}

.hf-submit {
  width: 100%;
  margin-top: 6px;
  font-size: 1.02rem;
}

.hf-submit i {
  width: 19px;
  height: 19px;
  transition: transform 0.2s;
}

.hf-submit:hover i {
  transform: translateX(3px);
}

.hf-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
  justify-content: center;
}

.hf-note i {
  width: 15px;
  height: 15px;
  color: var(--muted-light);
  flex: none;
}

.hf-success {
  background: #fff;
  border-radius: 22px;
  padding: 42px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hf-tick {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e9f7ec;
  color: #1f9d40;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.hf-tick i {
  width: 32px;
  height: 32px;
}

.hf-success h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.hf-success p {
  color: var(--muted);
  margin-bottom: 22px;
}

.hf-success-call {
  width: 100%;
}

/* hero trust blocks */

.trust-wrap {
  position: relative;
  z-index: 3;
}

.trust-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: -46px;
}

.tblock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.tblock .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  flex: none;
}

.tblock .ic i {
  color: var(--orange-deep);
  font-size: 22px;
}

.tblock b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  display: block;
  line-height: 1.18;
}

.tblock span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Faults grid ---------- */

.faults {
  background: var(--paper);
  padding-top: 130px;
}

.fault-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fault {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}

.fault:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.fault .fi {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.fault .fi i {
  font-size: 22px;
  color: var(--orange);
}

.fault h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
}

.fault p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.5;
}

.appliance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
  align-items: center;
}

.appliance-row .lbl {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
  margin-right: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.chip i {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

/* appliance photo cards */

.acards-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 54px;
  flex-wrap: wrap;
}

.acards-head h3 {
  font-size: 1.5rem;
}

.acards-head p {
  color: var(--muted);
  font-size: 0.96rem;
}

.acards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.acard {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--navy);
}

.acard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.acard:hover img {
  transform: scale(1.08);
}

.acard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 17, 30, 0.9) 0%, rgba(8, 17, 30, 0.35) 42%, rgba(8, 17, 30, 0) 68%);
}

.acard .cap {
  position: absolute;
  left: 16px;
  right: 14px;
  bottom: 15px;
  z-index: 2;
}

.acard .cap b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.04rem;
  color: #fff;
  display: block;
  line-height: 1.15;
}

.acard .cap span {
  font-size: 0.8rem;
  color: #c3cdda;
}

.acard .pin {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px -5px rgba(255, 106, 0, 0.7);
  transform: scale(0.4);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.acard:hover .pin {
  transform: scale(1);
  opacity: 1;
}

.acard .pin i {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* image hover-zoom on framed photos */

.media-img>img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-img:hover>img {
  transform: scale(1.05);
}

/* ---------- How it works ---------- */

.how {
  background: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 30px 32px;
}

.step .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: var(--orange);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px -6px rgba(255, 106, 0, 0.6);
}

.step h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  font-size: 0.97rem;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -17px;
  width: 34px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 11px);
  z-index: 2;
}

/* ---------- Coverage ---------- */

.coverage {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.coverage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 88% 12%, rgba(255, 106, 0, 0.16), transparent 60%), radial-gradient(40% 50% at 8% 95%, rgba(255, 106, 0, 0.08), transparent 60%);
  pointer-events: none;
}

.coverage h2,
.coverage h3 {
  color: #fff;
}

.cov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.coverage .eyebrow {
  color: var(--orange);
}

.coverage .lead {
  color: #b8c2d0;
  font-size: 1.08rem;
  margin: 16px 0 0;
  max-width: 480px;
}

.checker {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 30px;
  margin-top: 30px;
  backdrop-filter: blur(4px);
}

.checker label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 11px;
  color: #fff;
}

.checker-form {
  display: flex;
  gap: 10px;
}

.checker input {
  flex: 1;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 15px 18px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 0;
}

.checker input::placeholder {
  color: #9aa3af;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.checker input:focus {
  outline: none;
  border-color: var(--orange);
}

.checker-result {
  margin-top: 16px;
  font-size: 0.96rem;
  font-weight: 600;
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.checker-result.show {
  display: flex;
}

.checker-result i {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 1px;
}

.checker-result.yes {
  background: rgba(39, 194, 74, 0.14);
  color: #9ff0b3;
  border: 1px solid rgba(39, 194, 74, 0.3);
}

.checker-result.maybe {
  background: rgba(255, 106, 0, 0.14);
  color: #ffc79a;
  border: 1px solid rgba(255, 106, 0, 0.3);
}

.cov-note {
  margin-top: 18px;
  font-size: 0.86rem;
  color: #8b97a8;
}

.cov-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 30px;
}

.cov-card h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.cov-card .sub {
  color: #9aa6b6;
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.town-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.town-chips span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #dfe5ed;
}

.town-chips span span {
  background: unset;
  border: unset;
}

.town-chips span .pc {
  color: var(--orange);
  font-weight: 700;
}

.cov-stats {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cov-stat {
  flex: 1;
  min-width: 120px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
}

.cov-stat b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--orange);
  display: block;
}

.cov-stat span {
  font-size: 0.82rem;
  color: #9aa6b6;
}

/* ---------- Media band (image + text) ---------- */

.mediaband {
  background: var(--paper);
}

.mediaband .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.mediaband.alt .media-text {
  order: 2;
}

.mediaband.alt .media-img {
  order: 1;
}

.media-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.media-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-img .tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 13px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--shadow-md);
}

.media-img .tag i {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex: none;
}

.media-img .tag b {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.94rem;
  display: block;
  line-height: 1.1;
}

.media-img .tag span {
  font-size: 0.78rem;
  color: var(--muted);
}

.media-text h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin: 16px 0 18px;
}

.media-text>p {
  color: var(--muted);
  margin-bottom: 8px;
}

.media-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 24px 0 28px;
}

.media-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--ink);
}

.media-list i {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex: none;
  margin-top: 1px;
}

.media-sign {
  display: flex;
  align-items: center;
  gap: 13px;
}

.media-sign .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  flex: none;
}

.media-sign b {
  font-family: var(--display);
  color: var(--navy);
  display: block;
  font-size: 0.97rem;
}

.media-sign span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Why ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why {
  display: flex;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
}

.why .wi {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 14px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
}

.why .wi i {
  font-size: 22px;
  color: var(--orange-deep);
}

.why h3 {
  font-size: 1.18rem;
  margin-bottom: 7px;
}

.why p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- Parallax CTA band ---------- */

.parallax {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 120px 0;
  overflow: hidden;
  background-image: linear-gradient(rgba(6, 15, 27, 0.74), rgba(6, 15, 27, 0.82)), url("https://images.unsplash.com/photo-1632583824020-937ae9564495?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 120%, rgba(255, 106, 0, 0.22), transparent 60%);
  pointer-events: none;
}

.parallax .inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.parallax .eyebrow {
  color: var(--orange);
  justify-content: center;
  display: inline-flex;
}

.parallax h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  margin: 18px 0 16px;
}

.parallax p {
  color: #d4dbe5;
  font-size: 1.12rem;
  margin-bottom: 34px;
}

.parallax .btn {
  box-shadow: 0 14px 34px -10px rgba(255, 106, 0, 0.7);
}

.parallax-stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.parallax-stats div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 18px 26px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  min-width: 150px;
}

.parallax-stats b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  display: block;
  letter-spacing: -0.02em;
}

.parallax-stats span {
  font-size: 0.86rem;
  color: #aeb9c7;
}

/* ---------- Reviews ---------- */

.reviews {
  background: var(--paper);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--orange);
}

.stars i {
  width: 18px;
  height: 18px;
}

.review p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
}

.reviewer b {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  display: block;
  font-size: 0.96rem;
}

.reviewer span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* =====================================================
   GLOBAL IMAGE GRID
===================================================== */

.global-image-banner {
  padding: clamp(24px, 4vw, 56px) 0;
}

.global-image-banner__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 24px);
}

.global-image-banner__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: clamp(10px, 1.2vw, 18px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
}

.global-image-banner__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

a.global-image-banner__item:hover img {
  transform: scale(1.04);
}

a.global-image-banner__item:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* Laptop */
@media (max-width: 1100px) {
  .global-image-banner__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 800px) {
  .global-image-banner__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .global-image-banner__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .global-image-banner__item {
    padding: 10px;
    border-radius: 10px;
  }
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.faq-aside .btn {
  margin-top: 18px;
}

.faq-aside p {
  color: var(--muted);
  margin-top: 14px;
}

.acc {
  border-top: 1px solid var(--line-strong);
}

.acc-item {
  border-bottom: 1px solid var(--line-strong);
}

.acc-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy);
}

.acc-q .pm {
  width: 26px;
  height: 26px;
  flex: none;
  position: relative;
}

.acc-q .pm::before,
.acc-q .pm::after {
  content: "";
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.acc-q .pm::before {
  top: 12px;
  left: 4px;
  right: 4px;
  height: 2px;
}

.acc-q .pm::after {
  left: 12px;
  top: 4px;
  bottom: 4px;
  width: 2px;
}

.acc-item.open .pm::after {
  transform: scaleY(0);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-a p {
  padding: 0 4px 24px;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- Final CTA ---------- */

.final {
  padding: 0 0 96px;
}

.final-card {
  background: linear-gradient(150deg, #13243b, #0b1b30 60%);
  border-radius: var(--r-xl);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.final-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.3), transparent 68%);
}

.final-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.final h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.final p {
  color: #c4cdda;
  margin: 16px 0 0;
  font-size: 1.1rem;
  max-width: 460px;
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.final-actions .big-phone {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.02em;
}

.final-actions .big-phone i {
  width: 30px;
  height: 30px;
  color: var(--orange);
}

.final-actions .sub {
  color: #9aa6b6;
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-deep);
  color: #aeb9c7;
  padding: 64px 0 32px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.foot-logo img {
  height: 44px;
  width: auto;
}

.foot-logo span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.18rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.foot-brand p {
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  color: #fff;
  font-family: var(--display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.footer ul li {
  margin-bottom: 11px;
}

.footer ul a,
.footer ul li {
  font-size: 0.94rem;
  color: #aeb9c7;
  transition: color 0.18s;
}

.footer ul a:hover {
  color: var(--orange);
}

.foot-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: #dfe5ed;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.foot-grid>* {
  min-width: 0;
}

.foot-contact i {
  width: 17px;
  height: 17px;
  color: var(--orange);
  flex: none;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 26px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: #7e8a99;
}

.foot-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.foot-badges span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #cfd6df;
}

/* reveal */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .header-call {
    display: none;
  }
}

@media (max-width: 1080px) {
  .topbar a.tb-email,
  .sep-mail {
    display: none;
  }
}

@media (max-width: 880px) {
  .topbar-rating,
  .sep-rate {
    display: none;
  }
}

@media (max-width: 620px) {
  .status-rest {
    display: none;
  }
  .topbar-inner {
    justify-content: space-between;
  }
  .topbar {
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    display: grid;
  }
  .hero-content {
    max-width: none;
  }
  .hero-form-wrap {
    max-width: 520px;
    margin-bottom: 20px;
    margin-left: unset;
  }
  .trust-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
  .fault-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cov-grid,
  .faq-grid,
  .final-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .mediaband .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mediaband .media-img {
    order: -1;
  }
  .acards {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 1120px) {
  .nav-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 68px 0;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 0;
  }
  .hero-inner {
    padding: 48px 0;
  }
  .hero h1 {
    font-size: clamp(2.3rem, 8vw, 3.2rem);
  }
  .trust-blocks {
    grid-template-columns: 1fr 1fr;
    margin-bottom: -40px;
  }
  .faults {
    padding-top: 96px;
  }
  .brand .name small {
    display: none;
  }
  .brand .name {
    font-size: 1.02rem;
  }
  .brand img {
    max-height: 70px;
  }
  .nav-links,
  .nav-phone {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-actions .btn {
    padding: 11px 18px;
    font-size: 0.92rem;
  }
  .steps,
  .review-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .step:not(:last-child)::after {
    display: none;
  }
  .final h2 {
    font-size: 1.95rem;
  }
  .final-card {
    padding: 40px 26px;
  }
  .final-actions .big-phone {
    font-size: 1.6rem;
  }
  .parallax {
    background-attachment: scroll;
    padding: 80px 0;
  }
  .parallax-stats {
    gap: 10px;
  }
  .parallax-stats div {
    padding: 14px 18px;
    min-width: 0;
    flex: 1;
  }
  .acards-head h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 560px) {
  .parallax-stats {
    flex-direction: column;
  }
  .parallax-stats div {
    width: 100%;
    flex: none;
    text-align: center;
  }
  .acard {
    aspect-ratio: 1/1;
  }
  .acard .cap span {
    display: none;
  }
  .acard .cap b {
    font-size: 0.96rem;
  }
  .acards-head {
    margin-top: 44px;
  }
}

@media (max-width: 1024px) {
  /* mobile nav : off-canvas side drawer (top-level) */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(6, 15, 27, 0.5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
  .drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 330px);
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    padding: 0 26px calc(28px + env(safe-area-inset-bottom));
    box-shadow: -24px 0 60px -24px rgba(6, 15, 27, 0.55);
    transform: translateX(100%);
    transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 95;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .drawer.open {
    transform: translateX(0);
  }
  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    margin: 0 -26px 14px;
    padding: 0 18px 0 26px;
    border-bottom: 1px solid var(--line);
  }
  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .drawer-brand img {
    height: 34px;
    width: auto;
  }
  .drawer-brand span {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .drawer-close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--cream);
    color: var(--navy);
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
  }
  .drawer-close:hover {
    background: var(--line);
  }
  .drawer-close:active {
    transform: scale(0.94);
  }
  .drawer-close i {
    width: 22px;
    height: 22px;
  }
  .drawer-links {
    display: flex;
    flex-direction: column;
  }
  .drawer-links a {
    width: 100%;
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.18s;
  }
  .drawer.open .drawer-links a {
    opacity: 1;
    transform: none;
  }
  .drawer.open .drawer-links a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .drawer.open .drawer-links a:nth-child(2) {
    transition-delay: 0.15s;
  }
  .drawer.open .drawer-links a:nth-child(3) {
    transition-delay: 0.2s;
  }
  .drawer.open .drawer-links a:nth-child(4) {
    transition-delay: 0.25s;
  }
  .drawer.open .drawer-links a:nth-child(5) {
    transition-delay: 0.3s;
  }
  .drawer.open .drawer-links a:nth-child(6) {
    transition-delay: 0.35s;
  }
  .drawer-links .m-phone {
    display: flex;
    color: var(--orange-deep);
  }
  .drawer-links .m-phone i {
    width: 19px;
    height: 19px;
  }
  .drawer-cta {
    display: inline-flex;
    margin-top: 22px;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.42s, transform 0.4s ease 0.42s, background 0.2s;
  }
  .drawer.open .drawer-cta {
    opacity: 1;
    transform: none;
  }
  .hero h1 .accent {
    white-space: wrap;
  }
  .site-header {
    padding: 5px 0;
  }
  .nav-actions {
    gap: 5px;
  }
}

@media (max-width: 520px) {
  .wrap {
    padding: 0 18px;
  }
  .brand .name {
    display: none;
  }
  .nav-actions .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  .trust-blocks {
    grid-template-columns: 1fr;
    margin-bottom: -36px;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.7rem);
  }
  .fault-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .checker-form {
    flex-direction: column;
  }
  .hero-cta .btn {
    flex: 1;
  }
  .final-card {
    padding: 34px 22px;
  }
  .final h2 {
    font-size: 1.7rem;
    letter-spacing: -0.02em;
  }
  .final p {
    font-size: 1rem;
  }
  .final-actions .big-phone {
    font-size: 1.5rem;
  }
  .final-actions .sub {
    font-size: 0.84rem;
  }
  .final-actions .btn-light {
    font-size: 0.8rem;
    padding-left: 14px;
    padding-right: 14px;
    gap: 8px;
  }
  .final-actions .btn-light i {
    width: 16px;
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .tick path {
    stroke-dashoffset: 0;
  }
  .drawer,
  .drawer-links a,
  .drawer-cta,
  .nav-backdrop {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}