:root {
  --navy: #0d2b40;
  --navy-2: #143f56;
  --ink: #162636;
  --muted: #657585;
  --teal: #138f88;
  --teal-dark: #0d736d;
  --teal-soft: #e7f6f3;
  --coral: #df7259;
  --coral-dark: #bd5842;
  --coral-soft: #fff0eb;
  --amber: #e9a33d;
  --amber-soft: #fff7e7;
  --blue: #3d74b8;
  --blue-soft: #edf4fd;
  --violet: #6b60be;
  --violet-soft: #f1effc;
  --mint: #62c9af;
  --paper: #ffffff;
  --canvas: #f7f9f9;
  --line: #dfe8ea;
  --line-dark: rgba(255, 255, 255, .13);
  --shadow-sm: 0 8px 24px rgba(13, 43, 64, .08);
  --shadow-md: 0 18px 45px rgba(13, 43, 64, .12);
  --shadow-lg: 0 28px 70px rgba(13, 43, 64, .18);
  --radius: 8px;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-heading: "Manrope", "Segoe UI", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--teal);
}

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(61, 116, 184, .32);
  outline-offset: 3px;
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

/* Top bar */
.topbar {
  position: relative;
  z-index: 31;
  color: rgba(255, 255, 255, .82);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .78rem;
  font-weight: 600;
}

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

.availability,
.topbar__contact,
.topbar__contact a,
.topbar__contact span {
  display: flex;
  align-items: center;
}

.availability {
  min-width: max-content;
  gap: 9px;
  color: #fff;
}

.availability i {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: #64d5a4;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(100, 213, 164, .15);
}

.availability i::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(100, 213, 164, .5);
  border-radius: 50%;
  animation: statusPulse 2s ease-out infinite;
}

.topbar__contact {
  justify-content: flex-end;
  gap: 22px;
}

.topbar__contact a,
.topbar__contact span {
  gap: 7px;
  white-space: nowrap;
}

.topbar__contact a {
  transition: color .2s ease;
}

.topbar__contact a:hover {
  color: #fff;
}

.topbar__contact svg {
  width: .9rem;
  height: .9rem;
  color: var(--mint);
}

@keyframes statusPulse {
  0% { opacity: .8; transform: scale(.8); }
  70%, 100% { opacity: 0; transform: scale(1.55); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(223, 232, 234, .9);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .985);
  box-shadow: 0 10px 30px rgba(13, 43, 64, .09);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand__mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 9px 22px rgba(19, 143, 136, .22);
}

.brand__mark::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 22px;
  height: 22px;
  background: var(--coral);
  border-radius: 50%;
}

.brand__mark svg {
  position: relative;
  z-index: 1;
  width: 1.35rem;
  height: 1.35rem;
}

.brand__text {
  display: block;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.2;
}

.brand strong b {
  color: var(--coral);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.2;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__links a {
  position: relative;
  padding: 27px 0 26px;
  color: #31475a;
  font-size: .87rem;
  font-weight: 700;
  transition: color .2s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--teal-dark);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
}

.close-icon {
  display: none;
}

/* Buttons */
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  color: #fff;
  background: var(--coral);
  border: 1px solid var(--coral);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(223, 114, 89, .23);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  box-shadow: 0 16px 34px rgba(223, 114, 89, .3);
  transform: translateY(-2px);
}

.btn svg:last-child:not(:first-child) {
  transition: transform .2s ease;
}

.btn:hover svg:last-child:not(:first-child) {
  transform: translateX(3px);
}

.btn--header {
  min-height: 43px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: none;
}

.btn--header:hover,
.btn--navy:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
  box-shadow: 0 14px 30px rgba(13, 43, 64, .2);
}

.btn--glass {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .4);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .6);
  box-shadow: none;
}

.btn--blue {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(61, 116, 184, .25);
}

.btn--blue:hover {
  background: #2e609e;
  border-color: #2e609e;
  box-shadow: 0 16px 34px rgba(61, 116, 184, .3);
}

.btn--amber {
  color: var(--navy);
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 12px 28px rgba(233, 163, 61, .25);
}

.btn--amber:hover {
  color: var(--navy);
  background: #d7922f;
  border-color: #d7922f;
  box-shadow: 0 16px 34px rgba(233, 163, 61, .3);
}

.btn--navy {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 12px 28px rgba(13, 43, 64, .18);
}

.btn--outline {
  width: 100%;
  color: var(--navy);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.btn--outline:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: none;
}

/* Hero slider */
.slider {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .65s ease, visibility .65s ease;
}

.slide::before,
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.slide::before {
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
  transition: transform 7s ease;
}

.slide::after {
  background: linear-gradient(90deg, rgba(8, 31, 47, .94) 0%, rgba(8, 31, 47, .86) 38%, rgba(8, 31, 47, .38) 68%, rgba(8, 31, 47, .12) 100%);
}

.slide:nth-child(2)::before {
  background-position: center 48%;
}

.slide:nth-child(3)::before {
  background-position: center 50%;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slide.is-active::before {
  transform: scale(1);
}

.slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 112px;
}

.eyebrow,
.section-kicker,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 1px solid #cdeae5;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
}

.eyebrow {
  color: #d8fff7;
  background: rgba(19, 143, 136, .25);
  border-color: rgba(98, 201, 175, .34);
  backdrop-filter: blur(8px);
}

.eyebrow--blue {
  color: #e5f1ff;
  background: rgba(61, 116, 184, .28);
  border-color: rgba(149, 193, 246, .36);
}

.eyebrow--amber {
  color: #fff4d8;
  background: rgba(233, 163, 61, .22);
  border-color: rgba(255, 215, 153, .35);
}

.slide h1,
.slide h2 {
  max-width: 750px;
  margin: 18px 0 19px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 4.15rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.slide p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 27px;
  color: rgba(255, 255, 255, .78);
  font-size: .8rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 1rem;
  height: 1rem;
  color: var(--mint);
}

.slider__ui {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider__dots,
.slider__arrows {
  display: flex;
  align-items: center;
}

.slider__dots {
  gap: 9px;
}

.slider__dot {
  position: relative;
  width: 42px;
  height: 4px;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, .3);
  border: 0;
  border-radius: 99px;
  cursor: pointer;
}

.slider__dot span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--amber);
  border-radius: inherit;
}

.slider__dot.is-active span {
  animation: slideProgress 5.8s linear forwards;
}

.slider.is-paused .slider__dot.is-active span {
  animation-play-state: paused;
}

@keyframes slideProgress {
  from { width: 0; }
  to { width: 100%; }
}

.slider__arrows {
  gap: 10px;
}

.slider__arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.slider__arrow:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-1px);
}

.slider__count {
  min-width: 62px;
  color: rgba(255, 255, 255, .58);
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
}

.slider__count b {
  color: #fff;
  font-size: .95rem;
}

/* Scrolling services */
.marquee {
  overflow: hidden;
  background: linear-gradient(180deg, #2c3238 0%, #242a30 100%);
  border-top: 1px solid #e37a34;
  border-bottom: 1px solid #e37a34;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), inset 0 -1px 0 rgba(255, 255, 255, .03);
}

.marquee--footer {
  background:
    radial-gradient(circle at top left, rgba(227, 122, 52, .12), transparent 28%),
    radial-gradient(circle at top right, rgba(45, 164, 160, .08), transparent 26%),
    linear-gradient(180deg, #242a30 0%, #1e2429 100%);
}

.marquee__track,
.marquee__group {
  display: flex;
  width: max-content;
}

.marquee__track {
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  gap: 22px;
  padding: 15px 22px 15px 0;
}

.marquee__group span {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: rgba(244, 248, 250, .92);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.marquee__group span::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 14px;
  background: #e37a34;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(227, 122, 52, .12);
}

.marquee__group span:nth-child(2),
.marquee__group span:nth-child(5) {
  color: rgba(255, 236, 225, .94);
}

.marquee__group span:nth-child(3),
.marquee__group span:nth-child(6) {
  color: rgba(226, 244, 246, .95);
}

.marquee__group svg {
  color: #e37a34;
}

.marquee--footer .marquee__group {
  padding: 16px 22px 16px 0;
}

.marquee--footer .marquee__group span {
  color: rgba(247, 250, 252, .93);
}

.marquee--footer .marquee__group span:nth-child(2),
.marquee--footer .marquee__group span:nth-child(5) {
  color: rgba(255, 232, 217, .94);
}

.marquee--footer .marquee__group span:nth-child(3),
.marquee--footer .marquee__group span:nth-child(6) {
  color: rgba(220, 241, 243, .96);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Trust strip */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  align-items: center;
}

.trust-intro {
  padding-right: 32px;
  font-size: .85rem;
}

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

.trust-intro span {
  color: var(--muted);
  font-weight: 600;
}

.trust-intro strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.trust-item {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.trust-item__icon,
.price-icon,
.promise-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
}

.trust-item__icon {
  width: 42px;
  height: 42px;
}

.teal { color: var(--teal-dark); background: var(--teal-soft); }
.coral { color: var(--coral-dark); background: var(--coral-soft); }
.amber { color: #8d5b13; background: var(--amber-soft); }
.blue { color: #315f98; background: var(--blue-soft); }
.violet { color: #554b9d; background: var(--violet-soft); }
.mint { color: #0c685f; background: #dcf5ee; }

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

.trust-item strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.trust-item div > span {
  color: var(--muted);
  font-size: .73rem;
  font-weight: 600;
}

/* Common sections */
.section {
  padding: 100px 0;
}

.section-kicker {
  margin-bottom: 14px;
}

.section-kicker--coral {
  color: #934733;
  background: var(--coral-soft);
  border-color: #f3d3cb;
}

.section-kicker--dark {
  color: #e0fff7;
  background: rgba(98, 201, 175, .14);
  border-color: rgba(98, 201, 175, .3);
}

.section h2,
.booking h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 42px;
}

.section-heading > p,
.section-heading--split > p,
.section-heading--center > p,
.promise-copy > p,
.faq-intro > p {
  margin: 18px 0 0;
  color: var(--muted);
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
}

.section-heading--split > p {
  max-width: 440px;
  margin: 0 0 5px;
}

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

/* Services */
.services {
  background: var(--canvas);
}

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

.service-card {
  position: relative;
  min-height: 296px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  border-color: #cfdde0;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card.color-b { border-top-color: var(--coral); }
.service-card.color-c { border-top-color: var(--violet); }
.service-card.color-d { border-top-color: var(--blue); }
.service-card.color-e { border-top-color: var(--amber); }
.service-card.color-f { border-top-color: #499f73; }

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: var(--radius);
}

.color-b .service-card__icon { color: var(--coral-dark); background: var(--coral-soft); }
.color-c .service-card__icon { color: #564da0; background: var(--violet-soft); }
.color-d .service-card__icon { color: #2e609e; background: var(--blue-soft); }
.color-e .service-card__icon { color: #8d5b13; background: var(--amber-soft); }
.color-f .service-card__icon { color: #28754f; background: #eaf7ef; }

.service-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.service-card__number {
  color: #a3b0b9;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 800;
}

.service-card h3,
.price-card h3,
.process-grid h3,
.booking-form h3 {
  margin: 20px 0 9px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .89rem;
}

.service-card > a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 800;
}

.service-card > a {
  margin-top: auto;
  padding-top: 20px;
}

.service-card > a svg,
.text-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform .2s ease;
}

.service-card > a:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

/* Feature sections */
.feature-band--mint {
  background: #edf8f5;
  border-top: 1px solid #d9eeea;
  border-bottom: 1px solid #d9eeea;
}

.feature-band--warm {
  background: #fff8f3;
  border-bottom: 1px solid #f1e5de;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 76px;
  align-items: center;
}

.feature-grid--reverse {
  grid-template-columns: .96fr 1.04fr;
}

.feature-visual {
  position: relative;
}

.feature-visual::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 76px;
  height: 76px;
  border-top: 3px solid var(--coral);
  border-left: 3px solid var(--coral);
  border-radius: var(--radius) 0 0 0;
}

.feature-band--warm .feature-visual::before {
  right: -14px;
  left: auto;
  border-top-color: var(--blue);
  border-right: 3px solid var(--blue);
  border-left: 0;
  border-radius: 0 var(--radius) 0 0;
}

.feature-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.image-note {
  position: absolute;
  right: -20px;
  bottom: 24px;
  z-index: 2;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.image-note > span {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: var(--radius);
}

.image-note--right {
  right: auto;
  left: -20px;
}

.image-note--right > span {
  color: #315f98;
  background: var(--blue-soft);
}

.image-note strong,
.image-note small {
  display: block;
}

.image-note strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: .87rem;
  line-height: 1.3;
}

.image-note small {
  color: var(--muted);
  font-size: .68rem;
}

.feature-copy h2 {
  max-width: 560px;
}

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

.feature-list {
  margin: 28px 0 24px;
  border-top: 1px solid rgba(13, 115, 109, .15);
}

.feature-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(13, 115, 109, .15);
}

.feature-list > div > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid #d5ebe6;
  border-radius: var(--radius);
}

.feature-list strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: .9rem;
}

.feature-list p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.online-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.online-points span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: #354c60;
  background: rgba(255, 255, 255, .75);
  border: 1px solid #eee2da;
  border-radius: var(--radius);
  font-size: .78rem;
}

.online-points svg {
  flex: 0 0 auto;
  color: var(--coral);
}

/* Process */
.process {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.process .container {
  position: relative;
}

.section-heading--light {
  max-width: 680px;
}

.section-heading--light h2,
.section-heading--light p {
  color: #fff;
}

.section-heading--light p {
  opacity: .68;
}

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

.process-grid::before {
  content: "";
  position: absolute;
  top: 55px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: rgba(255, 255, 255, .18);
}

.process-grid article {
  position: relative;
  min-height: 275px;
  padding: 26px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  transition: background .2s ease, transform .2s ease;
}

.process-grid article:hover {
  background: rgba(255, 255, 255, .085);
  transform: translateY(-4px);
}

.process-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255, 255, 255, .34);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 800;
}

.process-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 5px solid var(--navy);
  border-radius: 50%;
}

.process-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.process-grid h3 {
  margin-top: 22px;
  color: #fff;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .86rem;
}

/* Pricing */
.pricing {
  background: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  padding-top: 10px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.price-card--featured {
  border: 2px solid var(--coral);
  box-shadow: 0 20px 50px rgba(223, 114, 89, .14);
}

.popular-label {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  color: #fff;
  background: var(--coral);
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: .7rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.popular-label svg {
  width: .85rem;
  height: .85rem;
}

.price-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 3px;
}

.price-card--featured .price-card__head {
  margin-top: 14px;
}

.price-icon {
  width: 48px;
  height: 48px;
}

.badge {
  padding: 6px 10px;
  font-size: .68rem;
}

.badge--coral {
  color: #934733;
  background: var(--coral-soft);
  border-color: #f3d3cb;
}

.badge--violet {
  color: #554b9d;
  background: var(--violet-soft);
  border-color: #dedaf3;
}

.price-card h3 {
  margin-bottom: 4px;
  font-size: 1.22rem;
}

.price {
  min-height: 53px;
  margin: 4px 0 18px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.35;
}

.price small {
  display: block;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #516576;
  font-size: .82rem;
}

.price-card li svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--teal);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  max-width: 750px;
  margin: 26px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: .74rem;
}

.pricing-note svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--teal);
}

/* Promise */
.promise {
  background: #f4f8f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.promise-items {
  display: grid;
  gap: 0;
}

.promise-items > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.promise-items > div:first-child {
  border-top: 1px solid var(--line);
}

.promise-icon {
  width: 46px;
  height: 46px;
}

.promise-items strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: .92rem;
}

.promise-items p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .81rem;
}

/* FAQ */
.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 88px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro .text-link {
  margin-top: 24px;
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 4px;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 700;
}

.faq-item button svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  color: var(--teal);
  transition: transform .25s ease;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 48px 23px 4px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

/* Booking */
.booking {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.booking::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: var(--coral);
}

.booking-grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 80px;
  align-items: center;
}

.booking h2 {
  color: #fff;
}

.booking-copy > p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .68);
}

.booking-contact {
  display: grid;
  gap: 15px;
  margin-top: 32px;
}

.booking-contact > a,
.booking-contact > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.booking-contact > a > span,
.booking-contact > div > span {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--mint);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
}

.booking-contact small,
.booking-contact strong {
  display: block;
}

.booking-contact small {
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
}

.booking-contact strong {
  color: #fff;
  font-size: .82rem;
  line-height: 1.4;
}

.booking-form {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .2);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading span:first-child {
  color: var(--teal-dark);
  font-size: .7rem;
  font-weight: 800;
}

.booking-form h3 {
  margin: 4px 0 0;
  font-size: 1.35rem;
}

.form-heading__icon {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--coral-dark);
  background: var(--coral-soft);
  border-radius: var(--radius);
}

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

.booking-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #405568;
  font-size: .75rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8faf9;
  border: 1px solid #d8e3e5;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 500;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.booking-form input,
.booking-form select {
  height: 46px;
}

.booking-form textarea {
  min-height: 105px;
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #99a6af;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(19, 143, 136, .1);
}

.btn--form {
  width: 100%;
  margin-top: 2px;
  background: #15966c;
  border-color: #15966c;
  box-shadow: 0 12px 26px rgba(21, 150, 108, .2);
}

.btn--form:hover {
  background: #117b59;
  border-color: #117b59;
  box-shadow: 0 16px 34px rgba(21, 150, 108, .25);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 0;
  color: #7e8d98;
  font-size: .67rem;
  text-align: center;
}

.form-note svg {
  width: .85rem;
  height: .85rem;
  color: var(--teal);
}

/* Footer */
.footer {
  color: rgba(255, 255, 255, .63);
  background: #091f2f;
  padding-top: 72px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr .9fr 1.1fr;
  gap: 48px;
  padding-bottom: 54px;
}

.brand--footer {
  margin-bottom: 18px;
}

.brand--footer strong {
  color: #fff;
}

.brand--footer small {
  color: rgba(255, 255, 255, .52);
}

.footer__about p {
  max-width: 320px;
  margin: 0;
  font-size: .82rem;
}

.footer h3 {
  margin: 5px 0 19px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: .85rem;
}

.footer__grid > div:not(.footer__about) > a,
.footer__grid > div:not(.footer__about) > span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 10px 0;
  font-size: .76rem;
  transition: color .2s ease;
}

.footer__grid > div:not(.footer__about) > a:hover {
  color: #fff;
}

.footer__contact svg {
  width: .95rem;
  height: .95rem;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--mint);
}

.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  transition: background .2s ease, transform .2s ease;
}

.footer__social a:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .7rem;
}

.footer__bottom div {
  display: flex;
  gap: 22px;
}

.footer__bottom a:hover {
  color: #fff;
}

/* Floating actions */
.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 40;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: 0 15px 36px rgba(13, 43, 64, .24);
}

.social-rail {
  position: fixed;
  top: 50%;
  left: 16px;
  z-index: 39;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 8px;
  background: rgba(8, 22, 34, .72);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(10, 29, 44, .26);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.social-rail__link {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(8, 22, 34, .22);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.social-rail__link::after {
  content: attr(data-label);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  padding: 8px 10px;
  color: #fff;
  background: rgba(8, 22, 34, .9);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-6px);
  transition: opacity .2s ease, transform .2s ease;
}

.social-rail__link:hover,
.social-rail__link:focus-visible {
  transform: translateX(3px) scale(1.04);
  box-shadow: 0 16px 26px rgba(8, 22, 34, .3);
  filter: saturate(1.05);
}

.social-rail__link:hover::after,
.social-rail__link:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.social-rail__link svg {
  width: 1.15rem;
  height: 1.15rem;
}

.social-rail__link--whatsapp {
  background: linear-gradient(180deg, #27d367 0%, #169d58 100%);
}

.social-rail__link--facebook {
  background: linear-gradient(180deg, #2d87ff 0%, #1664dd 100%);
}

.social-rail__link--instagram {
  background: linear-gradient(180deg, #ff8a3d 0%, #dd2f7a 52%, #7045ff 100%);
}

.social-rail__link--youtube {
  background: linear-gradient(180deg, #ff5d5d 0%, #df2525 100%);
}

.whatsapp-float {
  bottom: 88px;
  min-height: 50px;
  gap: 8px;
  padding: 0 16px;
  background: #15966c;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.whatsapp-float:hover {
  background: #117b59;
  transform: translateY(-2px);
}

.back-to-top {
  bottom: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--coral);
  border-radius: 50%;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.back-to-top:hover {
  background: var(--coral-dark);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1080px) {
  .nav {
    gap: 20px;
  }

  .nav__links {
    gap: 17px;
  }

  .feature-grid,
  .feature-grid--reverse {
    gap: 48px;
  }

  .booking-grid {
    gap: 50px;
  }

  .footer__grid {
    grid-template-columns: 1.15fr .7fr .9fr;
  }

  .footer__contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 92px;
  }

  .topbar__contact span {
    display: none;
  }

  .nav {
    min-height: 70px;
  }

  .nav__toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--navy);
    background: #f1f6f6;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
  }

  .nav__toggle[aria-expanded="true"] .menu-icon {
    display: none;
  }

  .nav__toggle[aria-expanded="true"] .close-icon {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 max(20px, calc((100% - 1180px) / 2));
    background: #fff;
    border-bottom: 1px solid transparent;
    box-shadow: 0 22px 35px rgba(13, 43, 64, .1);
    opacity: 0;
    visibility: hidden;
    transition: max-height .3s ease, opacity .2s ease, visibility .2s ease, padding .3s ease, border-color .2s ease;
  }

  .nav__links.is-open {
    max-height: 440px;
    padding-top: 10px;
    padding-bottom: 14px;
    border-color: var(--line);
    opacity: 1;
    visibility: visible;
  }

  .nav__links a {
    padding: 13px 0;
    border-bottom: 1px solid #edf1f2;
  }

  .nav__links a:last-child {
    border-bottom: 0;
  }

  .nav__links a::after {
    display: none;
  }

  .slider {
    min-height: 650px;
  }

  .slide h1,
  .slide h2 {
    max-width: 650px;
    font-size: 3.45rem;
  }

  .slide::after {
    background: linear-gradient(90deg, rgba(8, 31, 47, .94) 0%, rgba(8, 31, 47, .84) 52%, rgba(8, 31, 47, .3) 100%);
  }

  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 0;
  }

  .trust-intro {
    grid-column: 1 / -1;
    padding: 0 0 18px;
    text-align: center;
  }

  .trust-intro span,
  .trust-intro strong {
    display: inline;
  }

  .trust-intro span {
    margin-right: 5px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading--split > p {
    margin: 0;
  }

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

  .feature-grid,
  .feature-grid--reverse {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .feature-grid--reverse .feature-copy {
    order: 2;
  }

  .feature-grid--reverse .feature-visual {
    order: 1;
  }

  .feature-visual {
    max-width: 720px;
  }

  .feature-copy {
    max-width: 720px;
  }

  .promise-grid,
  .faq-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-intro {
    position: static;
    max-width: 620px;
  }

  .booking-copy {
    max-width: 700px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .topbar__inner {
    min-height: 40px;
  }

  .topbar__contact a[href^="mailto"] {
    display: none;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .btn--header {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .btn--header span {
    display: none;
  }

  .slider {
    min-height: 630px;
  }

  .slide::before {
    background-position: 58% center;
  }

  .slide:nth-child(2)::before {
    background-position: 55% center;
  }

  .slide:nth-child(3)::before {
    background-position: 57% center;
  }

  .slide::after,
  .slide:nth-child(2)::after,
  .slide:nth-child(3)::after {
    background: linear-gradient(90deg, rgba(8, 31, 47, .95) 0%, rgba(8, 31, 47, .83) 72%, rgba(8, 31, 47, .6) 100%);
  }

  .slide__content {
    padding-top: 28px;
    padding-bottom: 106px;
  }

  .slide h1,
  .slide h2 {
    max-width: 560px;
    font-size: 2.6rem;
    line-height: 1.08;
  }

  .slide p {
    max-width: 550px;
    font-size: .95rem;
  }

  .hero-proof {
    gap: 9px 16px;
    margin-top: 22px;
    font-size: .72rem;
  }

  .slider__ui {
    bottom: 24px;
  }

  .slider__count {
    display: none;
  }

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

  .trust-item {
    min-height: 70px;
    padding: 8px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section h2,
  .booking h2 {
    font-size: 2.15rem;
    line-height: 1.16;
  }

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

  .service-card {
    min-height: 280px;
  }

  .feature-visual::before {
    top: -9px;
    left: -9px;
  }

  .feature-band--warm .feature-visual::before {
    right: -9px;
    left: auto;
  }

  .image-note,
  .image-note--right {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid article {
    min-height: 245px;
  }

  .price-card--featured {
    order: -1;
  }

  .pricing-note {
    text-align: left;
  }

  .promise-grid,
  .faq-grid,
  .booking-grid {
    gap: 38px;
  }

  .booking-form {
    padding: 24px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
  }

  .footer__about {
    grid-column: 1 / -1;
  }

  .footer__contact {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .topbar__contact {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .availability {
    min-width: 0;
    text-align: center;
    font-size: .7rem;
  }

  .brand small {
    display: none;
  }

  .nav {
    gap: 10px;
  }

  .nav__toggle {
    margin-left: 2px;
  }

  .slider {
    min-height: 650px;
  }

  .eyebrow {
    font-size: .68rem;
  }

  .slide h1,
  .slide h2 {
    font-size: 2.25rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof span:nth-child(3) {
    display: none;
  }

  .slider__dots {
    gap: 6px;
  }

  .slider__ui {
    padding-right: 58px;
  }

  .slider__dot {
    width: 32px;
  }

  .slider__arrow {
    width: 38px;
    height: 38px;
  }

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

  .feature-copy .btn {
    width: 100%;
  }

  .faq-item button {
    min-height: 72px;
    font-size: .9rem;
  }

  .faq-answer {
    padding-right: 8px;
  }

  .booking::before {
    width: 4px;
  }

  .booking-form {
    padding: 20px;
  }

  .booking-contact strong {
    overflow-wrap: anywhere;
  }

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

  .footer__about,
  .footer__contact {
    grid-column: auto;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    min-height: 50px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .social-rail {
    top: auto;
    bottom: 24px;
    left: 14px;
    padding: 8px 7px;
    border-radius: 16px;
    transform: none;
  }

  .social-rail__link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .social-rail__link::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .marquee__track {
    transform: none;
  }
}
