:root {
  --pv-ink: #143438;
  --pv-deep: #087f8c;
  --pv-dark: #073b4c;
  --pv-teal: #0e9aa7;
  --pv-aqua: #9be7df;
  --pv-coral: #ff745c;
  --pv-sun: #ffd166;
  --pv-black: #0b0c0d;
  --pv-white: #ffffff;
  --pv-paper: #fbfefd;
  --pv-mist: #e5f4f5;
  --pv-line: rgba(7, 59, 76, 0.14);
  --pv-shadow: 0 18px 60px rgba(7, 59, 76, 0.14);
  --pv-container: min(1180px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pv-ink);
  background: var(--pv-white);
  font-family: 'Cairo', Tahoma, Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.pv-menu-open {
  overflow: hidden;
}

body.pv-modal-open {
  overflow: hidden;
}

body.pv-lightbox-open {
  overflow: hidden;
}

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

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

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

.pv-container {
  width: var(--pv-container);
  margin-inline: auto;
}

.pv-skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  padding: 10px 14px;
  color: var(--pv-white);
  background: var(--pv-deep);
  transform: translateY(-180%);
}

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

.pv-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--pv-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.admin-bar .pv-header {
  top: 32px;
}

.pv-header.is-scrolled {
  color: var(--pv-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(7, 59, 76, 0.08);
  backdrop-filter: blur(14px);
}

.pv-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 32px;
}

.pv-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  direction: ltr;
  gap: 14px;
}

.pv-language-switcher {
  display: inline-flex;
  min-width: 72px;
  align-items: center;
  justify-content: center;
  color: inherit;
  direction: ltr;
  font-family: 'Cairo', sans-serif;
  font-size: 11px;
  gap: 6px;
}

.pv-language-switcher a {
  padding-block: 8px;
  opacity: 0.58;
}

.pv-language-switcher a.is-active {
  font-weight: 800;
  opacity: 1;
}

.pv-language-switcher span {
  opacity: 0.36;
}

.pv-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  direction: ltr;
  line-height: 1;
  letter-spacing: 0;
}

.pv-brand__name {
  font-family: 'Cairo', sans-serif;
  font-size: 23px;
  font-weight: 300;
  direction: ltr;
  text-align: left;
  unicode-bidi: isolate;
}

.pv-brand__name b {
  font-weight: 800;
}

.pv-brand__place {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0;
}

.pv-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
}

.pv-nav a {
  position: relative;
  padding-block: 26px;
}

.pv-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  content: '';
  background: var(--pv-coral);
  transition: width 180ms ease;
}

.pv-nav a:hover::after,
.pv-nav a:focus-visible::after {
  width: 100%;
}

.pv-header__cta,
.pv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  gap: 12px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.pv-header__cta {
  min-height: 44px;
  color: var(--pv-ink);
  background: var(--pv-sun);
}

.pv-header.is-scrolled .pv-header__cta {
  color: var(--pv-white);
  background: var(--pv-deep);
}

.pv-button:hover,
.pv-button:focus-visible,
.pv-header__cta:hover,
.pv-header__cta:focus-visible {
  transform: translateY(-2px);
}

.pv-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px 10px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.pv-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.pv-menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pv-menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.pv-menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pv-hero {
  position: relative;
  display: block;
  min-height: 82svh;
  overflow: hidden;
  color: var(--pv-white);
  background: var(--pv-deep);
}

.pv-hero__slides,
.pv-hero__slide {
  position: absolute;
  inset: 0;
}

.pv-hero__slides {
  transform: translate3d(0, var(--hero-story-shift, 0px), 0) scale(var(--hero-story-scale, 1));
  transform-origin: center;
  will-change: transform;
}

.pv-hero__slide {
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 800ms ease, visibility 800ms ease;
}

.pv-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.pv-hero__media,
.pv-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pv-hero__media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  transition: transform 7s ease;
}

.pv-hero__slide.is-active .pv-hero__media {
  transform: scale(1);
}

.pv-hero__overlay {
  background: linear-gradient(90deg, rgba(3, 43, 53, 0.2) 0%, rgba(3, 43, 53, 0.42) 48%, rgba(3, 43, 53, 0.88) 100%);
}

.pv-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 88px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease 180ms, transform 650ms ease 180ms;
}

.pv-hero__slide.is-active .pv-hero__content {
  opacity: 1;
  transform: translateY(0);
}

.pv-hero .pv-eyebrow {
  margin-bottom: 12px;
}

.pv-eyebrow {
  margin: 0 0 18px;
  color: var(--pv-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.pv-eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-inline-end: 10px;
  vertical-align: middle;
  content: '';
  background: var(--pv-coral);
}

.pv-eyebrow--light {
  color: var(--pv-white);
}

.pv-eyebrow--light::before {
  background: rgba(255, 255, 255, 0.72);
}

.pv-hero__title {
  max-width: 720px;
  margin: 0;
  font-family: 'Cairo', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

.pv-hero__lead {
  max-width: 590px;
  margin: 18px 0 0;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.75;
}

.pv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.pv-button--accent {
  color: var(--pv-ink);
  background: var(--pv-sun);
}

.pv-button--glass {
  color: var(--pv-white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.pv-button--glass:hover,
.pv-button--glass:focus-visible {
  color: var(--pv-ink);
  background: var(--pv-white);
}

.pv-button--solid {
  color: var(--pv-white);
  background: var(--pv-deep);
}

.pv-button--outline-light {
  color: var(--pv-white);
  border-color: rgba(255, 255, 255, 0.56);
}

.pv-button--outline-light:hover,
.pv-button--outline-light:focus-visible {
  color: var(--pv-deep);
  background: var(--pv-white);
}

.pv-button--full {
  width: 100%;
}

.pv-hero__controls {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  direction: ltr;
  color: var(--pv-white);
  gap: 9px;
}

.pv-hero__controls > button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 4px;
  color: var(--pv-white);
  background: rgba(7, 59, 76, 0.46);
  cursor: pointer;
  font-size: 18px;
  backdrop-filter: blur(8px);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.pv-hero__controls > button:hover,
.pv-hero__controls > button:focus-visible {
  color: var(--pv-ink);
  background: var(--pv-sun);
  outline: 0;
  transform: translateY(-2px);
}

.pv-hero__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pv-hero__dots button {
  width: 24px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.pv-hero__dots button.is-active {
  width: 42px;
  background: var(--pv-sun);
}

.pv-hero__dots button:focus-visible {
  outline: 2px solid var(--pv-white);
  outline-offset: 4px;
}

.pv-hero__count {
  display: flex;
  min-width: 52px;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  gap: 5px;
}

.pv-hero__count i {
  opacity: 0.56;
  font-style: normal;
}

.pv-scroll-story {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  color: var(--pv-white);
  background: #0b252c;
  --story-exterior-opacity: 1;
  --story-exterior-scale: 1;
  --story-window-opacity: 0;
  --story-window-scale: 0.86;
  --story-start-shift: 0%;
  --story-end-shift: 0%;
  --story-view-scale: 1.1;
  --story-glass-opacity: 0.22;
}

.pv-motion-ready .pv-scroll-story {
  height: 340svh;
}

.pv-scroll-story__sticky {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: stretch;
  overflow: hidden;
}

.pv-motion-ready .pv-scroll-story__sticky {
  position: sticky;
  top: 0;
}

.admin-bar .pv-motion-ready .pv-scroll-story__sticky {
  top: 32px;
  min-height: calc(100svh - 32px);
}

.pv-scroll-story__scene,
.pv-scroll-story__exterior,
.pv-scroll-story__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pv-scroll-story__scene {
  background: #0b252c;
}

.pv-scroll-story__exterior {
  object-fit: cover;
  opacity: var(--story-exterior-opacity);
  transform: scale(var(--story-exterior-scale));
  transform-origin: center 42%;
  will-change: transform, opacity;
}

.pv-scroll-story__window {
  position: absolute;
  inset: clamp(54px, 8vh, 86px) clamp(24px, 6vw, 96px);
  overflow: hidden;
  background: #a7dfe3;
  opacity: var(--story-window-opacity);
  transform: scale(var(--story-window-scale));
  transform-origin: center;
  will-change: transform, opacity;
}

.pv-scroll-story__view,
.pv-scroll-story__glass {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pv-scroll-story__view {
  object-fit: cover;
  transform: scale(var(--story-view-scale));
  will-change: transform;
}

.pv-scroll-story__glass {
  z-index: 2;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.02) 36%, rgba(72, 174, 186, 0.18));
  opacity: var(--story-glass-opacity);
  pointer-events: none;
}

.pv-scroll-story__shutter {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 50.15%;
  background-color: #d9d0c5;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(43, 57, 59, 0.11)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(87, 76, 66, 0.06) 24px 25px);
  box-shadow: inset 0 0 0 1px rgba(65, 77, 76, 0.2), inset 0 0 48px rgba(55, 48, 42, 0.12);
  will-change: transform;
}

.pv-scroll-story__shutter::after {
  position: absolute;
  top: 48%;
  width: 4px;
  height: 54px;
  border-radius: 2px;
  content: '';
  background: rgba(39, 58, 61, 0.48);
}

.pv-scroll-story__shutter--start {
  left: 0;
  transform: translate3d(var(--story-start-shift), 0, 0);
}

.pv-scroll-story__shutter--start::after {
  right: 18px;
}

.pv-scroll-story__shutter--end {
  right: 0;
  transform: translate3d(var(--story-end-shift), 0, 0);
}

.pv-scroll-story__shutter--end::after {
  left: 18px;
}

.pv-scroll-story__frame {
  position: absolute;
  z-index: 4;
  background: #22383b;
  box-shadow: 0 0 24px rgba(4, 23, 27, 0.26);
}

.pv-scroll-story__frame--top,
.pv-scroll-story__frame--bottom {
  right: 0;
  left: 0;
  height: clamp(12px, 1.7vw, 26px);
}

.pv-scroll-story__frame--top {
  top: 0;
}

.pv-scroll-story__frame--bottom {
  bottom: 0;
}

.pv-scroll-story__frame--start,
.pv-scroll-story__frame--end,
.pv-scroll-story__frame--middle {
  top: 0;
  bottom: 0;
  width: clamp(10px, 1.3vw, 20px);
}

.pv-scroll-story__frame--start {
  left: 0;
}

.pv-scroll-story__frame--end {
  right: 0;
}

.pv-scroll-story__frame--middle {
  left: 50%;
  width: clamp(8px, 0.9vw, 14px);
  transform: translateX(-50%);
}

.pv-scroll-story__shade {
  z-index: 5;
  background:
    linear-gradient(180deg, rgba(4, 28, 33, 0.32), transparent 34%, rgba(4, 28, 33, 0.62) 100%),
    linear-gradient(90deg, transparent 34%, rgba(4, 28, 33, 0.58) 100%);
  pointer-events: none;
}

.pv-scroll-story__content {
  position: relative;
  z-index: 6;
  min-height: 100svh;
}

.pv-scroll-story__beats {
  position: absolute;
  right: 0;
  bottom: clamp(118px, 15vh, 170px);
  width: min(650px, calc(100% - 40px));
}

.pv-lang-en .pv-scroll-story__beats {
  right: auto;
  left: 0;
}

.pv-scroll-story__beat {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pv-lang-en .pv-scroll-story__beat {
  right: auto;
  left: 0;
}

.pv-scroll-story__beat.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pv-scroll-story__beat h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.24;
  text-shadow: 0 4px 26px rgba(2, 22, 27, 0.4);
}

.pv-lang-en .pv-scroll-story__beat h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.14;
}

.pv-scroll-story__beat > p:not(.pv-eyebrow) {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.9;
  text-shadow: 0 2px 18px rgba(2, 22, 27, 0.48);
}

.pv-scroll-story__chapters {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  direction: rtl;
}

.pv-lang-en .pv-scroll-story__chapters {
  direction: ltr;
}

.pv-scroll-story__chapters span {
  position: relative;
  display: flex;
  padding-top: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
  gap: 9px;
  transition: color 260ms ease;
}

.pv-scroll-story__chapters span::before {
  position: absolute;
  top: -4px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: '';
  background: rgba(255, 255, 255, 0.48);
  transition: background-color 260ms ease, transform 260ms ease;
}

.pv-lang-en .pv-scroll-story__chapters span::before {
  right: auto;
  left: 0;
}

.pv-scroll-story__chapters span.is-active {
  color: var(--pv-white);
}

.pv-scroll-story__chapters span.is-active::before {
  background: var(--pv-sun);
  transform: scale(1.45);
}

.pv-scroll-story__chapters i {
  color: var(--pv-sun);
  direction: ltr;
  font-style: normal;
}

.pv-page-story-rail {
  position: fixed;
  z-index: 900;
  top: 32vh;
  left: 16px;
  width: 2px;
  height: 34vh;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(7, 59, 76, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.pv-lang-en .pv-page-story-rail {
  right: 16px;
  left: auto;
}

.pv-page-story-rail.is-visible {
  opacity: 1;
}

.pv-page-story-rail span {
  position: absolute;
  inset: 0;
  background: var(--pv-sun);
  transform: scaleY(var(--page-story-progress, 0));
  transform-origin: top;
}

.pv-facts {
  color: #273a3d;
  background: #f1f3f2;
}

.pv-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pv-fact {
  display: flex;
  min-height: 128px;
  padding: 26px 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(39, 58, 61, 0.13);
}

.pv-fact[role='button'] {
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.pv-fact[role='button']:hover,
.pv-fact[role='button']:focus-visible {
  color: #273a3d;
  background: #dfe7e4;
  outline: 0;
  transform: translateY(-3px);
}

.pv-fact[role='button']:hover strong,
.pv-fact[role='button']:focus-visible strong,
.pv-fact[role='button']:hover > span,
.pv-fact[role='button']:focus-visible > span {
  color: #273a3d;
}

.pv-fact:last-child {
  border-left: 0;
}

.pv-fact strong {
  color: #273a3d;
  font-family: 'Cairo', sans-serif;
  font-size: 34px;
  line-height: 1.1;
  direction: ltr;
  text-align: center;
}

.pv-fact > span {
  margin-top: 6px;
  color: #657477;
  font-size: 13px;
}

[data-counter] {
  display: inline-block;
  min-width: 2.6ch;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.pv-counter-unit {
  display: inline-block;
  margin-inline-start: 3px;
  font-size: 0.46em;
  font-weight: 600;
  direction: rtl;
  unicode-bidi: isolate;
}

.pv-section {
  padding-block: clamp(74px, 9vw, 132px);
}

.pv-section[data-story-chapter] {
  position: relative;
  overflow: clip;
}

.pv-section[data-story-chapter]::before {
  position: absolute;
  z-index: 0;
  top: 10px;
  inset-inline-end: max(18px, calc((100vw - 1180px) / 2));
  color: rgba(14, 154, 167, 0.07);
  content: attr(data-story-chapter);
  direction: ltr;
  font-family: 'Cairo', sans-serif;
  font-size: clamp(76px, 10vw, 150px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.pv-section[data-story-chapter] > .pv-container {
  position: relative;
  z-index: 1;
}

.pv-motion-ready [data-story-reveal] .pv-fact,
.pv-motion-ready [data-story-reveal] .pv-quick-lead__copy > *,
.pv-motion-ready [data-story-reveal] .pv-form-wrap,
.pv-motion-ready [data-story-reveal] .pv-intro__copy > *,
.pv-motion-ready [data-story-reveal] .pv-section-heading > *,
.pv-motion-ready [data-story-reveal] .pv-feature,
.pv-motion-ready [data-story-reveal] .pv-carousel,
.pv-motion-ready [data-story-reveal] .pv-film__copy > *,
.pv-motion-ready [data-story-reveal] .pv-masterplan__image,
.pv-motion-ready [data-story-reveal] .pv-payment__copy > *,
.pv-motion-ready [data-story-reveal] .pv-faq__intro > *,
.pv-motion-ready [data-story-reveal] .pv-faq__item,
.pv-motion-ready [data-story-reveal] .pv-contact__copy > * {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 680ms ease, transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pv-motion-ready [data-story-reveal] .pv-intro__media,
.pv-motion-ready [data-story-reveal] .pv-film__player,
.pv-motion-ready [data-story-reveal] .pv-payment__image {
  clip-path: inset(0 0 0 100%);
  opacity: 0;
  transform: scale(1.035);
  transition: clip-path 980ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pv-lang-en.pv-motion-ready [data-story-reveal] .pv-intro__media,
.pv-lang-en.pv-motion-ready [data-story-reveal] .pv-film__player,
.pv-lang-en.pv-motion-ready [data-story-reveal] .pv-payment__image {
  clip-path: inset(0 100% 0 0);
}

.pv-motion-ready [data-story-reveal].is-story-visible .pv-fact,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-quick-lead__copy > *,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-form-wrap,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-intro__copy > *,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-section-heading > *,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-feature,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-carousel,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-film__copy > *,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-film__player,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-intro__media,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-masterplan__image,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-payment__image,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-payment__copy > *,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-faq__intro > *,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-faq__item,
.pv-motion-ready [data-story-reveal].is-story-visible .pv-contact__copy > * {
  clip-path: inset(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pv-motion-ready [data-story-reveal] .pv-form-wrap,
.pv-motion-ready [data-story-reveal] .pv-carousel,
.pv-motion-ready [data-story-reveal] .pv-film__player,
.pv-motion-ready [data-story-reveal] .pv-masterplan__image {
  transition-delay: 140ms;
}

.pv-motion-ready [data-story-reveal] .pv-feature:nth-child(2),
.pv-motion-ready [data-story-reveal] .pv-faq__item:nth-child(2),
.pv-motion-ready [data-story-reveal] .pv-fact:nth-child(2) {
  transition-delay: 90ms;
}

.pv-motion-ready [data-story-reveal] .pv-feature:nth-child(3),
.pv-motion-ready [data-story-reveal] .pv-faq__item:nth-child(3),
.pv-motion-ready [data-story-reveal] .pv-fact:nth-child(3) {
  transition-delay: 180ms;
}

.pv-motion-ready [data-story-reveal] .pv-feature:nth-child(4),
.pv-motion-ready [data-story-reveal] .pv-faq__item:nth-child(4),
.pv-motion-ready [data-story-reveal] .pv-fact:nth-child(4) {
  transition-delay: 270ms;
}

[data-story-parallax] > img {
  transform: translate3d(0, var(--pv-parallax-y, 0px), 0) scale(1.045);
  will-change: transform;
}

.pv-intro {
  background: var(--pv-paper);
}

.pv-intro__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
}

.pv-intro__copy h2,
.pv-section-heading h2,
.pv-film__copy h2,
.pv-payment__copy h2,
.pv-contact__copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.pv-intro__copy > p:not(.pv-eyebrow),
.pv-section-heading > p,
.pv-film__copy > p:not(.pv-eyebrow),
.pv-payment__copy > p:not(.pv-eyebrow),
.pv-contact__copy > p:not(.pv-eyebrow) {
  margin: 28px 0 0;
  color: #536e72;
  font-size: 17px;
  line-height: 1.95;
}

.pv-text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  color: var(--pv-teal);
  font-weight: 700;
  gap: 10px;
}

.pv-text-link span {
  transition: transform 180ms ease;
}

.pv-text-link:hover span,
.pv-text-link:focus-visible span {
  transform: translateX(-5px);
}

.pv-intro__media {
  position: relative;
  margin: 0;
}

.pv-intro__media::before {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -18px;
  width: 86px;
  height: 86px;
  content: '';
  border-top: 4px solid var(--pv-coral);
  border-right: 4px solid var(--pv-coral);
}

.pv-intro__media img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  box-shadow: var(--pv-shadow);
}

.pv-intro__media figcaption {
  margin-top: 14px;
  color: #6c8588;
  font-family: 'Cairo', sans-serif;
  font-size: 10px;
  letter-spacing: 0;
}

.pv-experience {
  background: var(--pv-white);
}

.pv-section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(38px, 8vw, 120px);
  margin-bottom: 56px;
}

.pv-section-heading > p {
  margin: 0 0 8px;
}

.pv-section-heading--compact {
  margin-bottom: 42px;
}

.pv-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--pv-line);
  border-bottom: 1px solid var(--pv-line);
}

.pv-feature {
  min-height: 272px;
  padding: 34px 26px;
  border-left: 1px solid var(--pv-line);
  background: var(--pv-white);
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.pv-feature[role='button'] {
  cursor: pointer;
}

.pv-feature:last-child {
  border-left: 0;
}

.pv-feature:hover,
.pv-feature:focus-visible {
  z-index: 1;
  color: var(--pv-white);
  background: var(--pv-teal);
  outline: 0;
  transform: translateY(-8px);
}

.pv-feature__number {
  color: var(--pv-coral);
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.pv-feature h3 {
  margin: 68px 0 12px;
  font-size: 21px;
  line-height: 1.4;
}

.pv-feature p {
  margin: 0;
  color: #536e72;
  font-size: 14px;
}

.pv-feature:hover p,
.pv-feature:focus-visible p {
  color: rgba(255, 255, 255, 0.76);
}

.pv-gallery {
  background: var(--pv-mist);
}

.pv-carousel {
  position: relative;
}

.pv-carousel__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pv-carousel__count {
  display: flex;
  align-items: baseline;
  color: var(--pv-deep);
  direction: ltr;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  gap: 8px;
}

.pv-carousel__count i {
  color: #6c8588;
  font-style: normal;
  font-weight: 400;
}

.pv-carousel__buttons {
  display: flex;
  direction: rtl;
  gap: 8px;
}

.pv-carousel__buttons button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--pv-deep);
  border-radius: 4px;
  color: var(--pv-deep);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.pv-carousel__buttons button:last-child,
.pv-carousel__buttons button:hover,
.pv-carousel__buttons button:focus-visible {
  color: var(--pv-white);
  background: var(--pv-deep);
}

.pv-carousel__buttons button:hover,
.pv-carousel__buttons button:focus-visible {
  transform: translateY(-2px);
}

.pv-carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.pv-carousel__track {
  display: flex;
  gap: 16px;
  direction: ltr;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pv-carousel__slide {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  flex: 0 0 min(82%, 860px);
  overflow: hidden;
  border-radius: 4px;
  background: #cbe9eb;
  cursor: pointer;
}

.pv-carousel__slide:focus-visible {
  outline: 3px solid var(--pv-coral);
  outline-offset: 4px;
}

.pv-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.pv-carousel__slide.is-portrait-focus img {
  object-position: center 58%;
}

.pv-carousel__slide:hover img {
  transform: scale(1.025);
}

.pv-carousel__slide figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  max-width: calc(100% - 32px);
  min-height: 46px;
  padding: 10px 14px;
  align-items: center;
  border-radius: 4px;
  color: var(--pv-white);
  background: rgba(7, 59, 76, 0.9);
  direction: rtl;
  font-size: 13px;
  gap: 12px;
}

.pv-carousel__slide figcaption span {
  color: #c8edf0;
  direction: ltr;
  font-family: 'Cairo', sans-serif;
  font-size: 11px;
}

.pv-carousel__dots {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  direction: ltr;
  gap: 8px;
}

.pv-carousel__dots button {
  width: 22px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #a9d4d8;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.pv-carousel__dots button.is-active {
  width: 44px;
  background: var(--pv-deep);
}

.pv-film {
  color: var(--pv-ink);
  background: var(--pv-paper);
}

.pv-film__grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: clamp(46px, 9vw, 140px);
}

.pv-film__copy > p:not(.pv-eyebrow) {
  color: #536e72;
}

.pv-film__copy .pv-button {
  margin-top: 30px;
}

.pv-film__player {
  justify-self: center;
  width: min(100%, 390px);
  padding: 10px;
  border: 1px solid var(--pv-line);
  background: var(--pv-white);
  box-shadow: var(--pv-shadow);
}

.pv-film__player video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--pv-dark);
}

.pv-masterplan {
  background: var(--pv-white);
}

.pv-masterplan__image {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--pv-line);
  background: var(--pv-paper);
  cursor: zoom-in;
}

.pv-masterplan__image img {
  width: 100%;
  height: auto;
  transition: transform 500ms ease;
}

.pv-masterplan__image:hover img {
  transform: scale(1.015);
}

.pv-masterplan__image:focus-visible {
  outline: 3px solid var(--pv-coral);
  outline-offset: 5px;
}

.pv-masterplan-lightbox[hidden] {
  display: none;
}

.pv-masterplan-lightbox {
  position: fixed;
  z-index: 2150;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.pv-masterplan-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pv-masterplan-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 27, 0.9);
  backdrop-filter: blur(8px);
}

.pv-masterplan-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1500px);
  max-height: calc(100svh - 48px);
  place-items: center;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 220ms ease, transform 220ms ease;
}

.pv-masterplan-lightbox.is-open .pv-masterplan-lightbox__dialog {
  opacity: 1;
  transform: scale(1);
}

.pv-masterplan-lightbox__dialog > img {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 48px);
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.pv-masterplan-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--pv-white);
  background: rgba(14, 24, 27, 0.72);
  cursor: pointer;
}

.pv-masterplan-lightbox__close:hover,
.pv-masterplan-lightbox__close:focus-visible {
  color: var(--pv-ink);
  background: var(--pv-sun);
  outline: 0;
}

.pv-masterplan-lightbox__close svg {
  width: 20px;
  height: 20px;
}

.pv-payment {
  color: var(--pv-ink);
  background: var(--pv-white);
}

.pv-payment__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(50px, 9vw, 135px);
}

.pv-payment__image {
  width: min(100%, 430px);
  justify-self: center;
  overflow: hidden;
  box-shadow: 22px 22px 0 #d8cfc5;
}

.pv-payment__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.pv-payment__copy > p:not(.pv-eyebrow) {
  color: #5d6c6f;
}

.pv-payment .pv-eyebrow--light {
  color: #6b7f84;
}

.pv-payment .pv-eyebrow--light::before {
  background: #a99a86;
}

.pv-payment__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 36px 0;
  border-top: 1px solid rgba(39, 58, 61, 0.14);
  border-bottom: 1px solid rgba(39, 58, 61, 0.14);
}

.pv-payment__numbers div {
  padding: 22px 16px;
  border-left: 1px solid rgba(39, 58, 61, 0.14);
  text-align: center;
}

.pv-payment__numbers div:last-child {
  border-left: 0;
}

.pv-payment__numbers strong,
.pv-payment__numbers > div > span {
  display: block;
}

.pv-payment__numbers strong {
  color: #425b61;
  font-family: 'Cairo', sans-serif;
  font-size: 32px;
  line-height: 1;
  direction: ltr;
  text-align: center;
}

.pv-payment__numbers > div > span {
  margin-top: 8px;
  color: #68777a;
  font-size: 12px;
}

.pv-payment .pv-button--accent {
  color: var(--pv-ink);
  background: #f1e6cd;
}

.pv-payment .pv-button--accent:hover,
.pv-payment .pv-button--accent:focus-visible {
  color: #273a3d;
  border-color: var(--pv-white);
  background: var(--pv-white);
}

.pv-faq {
  background: var(--pv-white);
}

.pv-faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(48px, 9vw, 132px);
}

.pv-faq__intro h2 {
  margin: 0;
  color: var(--pv-dark);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.24;
}

.pv-faq__intro > p:not(.pv-eyebrow) {
  margin: 24px 0 0;
  color: #536e72;
  font-size: 16px;
  line-height: 1.9;
}

.pv-faq__intro .pv-button {
  margin-top: 28px;
}

.pv-faq__list {
  margin: 0;
  border-top: 1px solid var(--pv-line);
}

.pv-faq__item {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(22px, 4vw, 54px);
  padding: 24px 0;
  border-bottom: 1px solid var(--pv-line);
}

.pv-faq__item dt {
  color: var(--pv-dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.65;
}

.pv-faq__item dd {
  margin: 0;
  color: #536e72;
  font-size: 14px;
  line-height: 1.9;
}

.pv-quick-lead {
  background: var(--pv-mist);
}

.pv-quick-lead__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(48px, 9vw, 132px);
}

.pv-quick-lead__copy h2 {
  margin: 0;
  color: var(--pv-deep);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.2;
}

.pv-quick-lead__copy > p:not(.pv-eyebrow) {
  max-width: 570px;
  margin: 26px 0 0;
  color: #536e72;
  font-size: 16px;
  line-height: 1.9;
}

.pv-quick-lead__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--pv-line);
  border-bottom: 1px solid var(--pv-line);
}

.pv-quick-lead__points span {
  padding: 16px 10px;
  border-inline-end: 1px solid var(--pv-line);
  color: var(--pv-deep);
  font-size: 12px;
  font-weight: 700;
}

.pv-quick-lead__points span:last-child {
  border-inline-end: 0;
}

.pv-form-wrap--quick {
  border-top: 4px solid var(--pv-deep);
}

.pv-contact {
  background: var(--pv-paper);
}

.pv-contact__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: clamp(48px, 9vw, 132px);
}

.pv-form-wrap {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--pv-white);
  box-shadow: var(--pv-shadow);
}

.pv-form-wrap__heading {
  margin-bottom: 28px;
}

.pv-form-wrap__heading span {
  color: var(--pv-coral);
  font-size: 12px;
  font-weight: 700;
}

.pv-form-wrap__heading h3 {
  margin: 2px 0 0;
  font-size: 30px;
  line-height: 1.35;
}

.pv-form-placeholder {
  padding-top: 24px;
  border-top: 1px solid var(--pv-line);
}

.pv-form-placeholder p {
  margin: 0 0 18px;
  color: #536e72;
  font-size: 14px;
}

.pv-form-placeholder .pv-form-placeholder__title {
  color: var(--pv-ink);
  font-size: 18px;
  font-weight: 700;
}

.pv-form-placeholder .pv-form-placeholder__admin {
  margin: 18px 0 0;
  padding: 12px;
  border-right: 3px solid var(--pv-coral);
  background: #eef8f8;
  font-size: 12px;
}

/* WPForms inherits the landing page visual system. */
.pv-form-wrap .wpforms-container {
  margin: 0;
}

.pv-form-wrap .wpforms-field {
  padding: 0 0 18px;
}

.pv-form-wrap .wpforms-field-label {
  margin: 0 0 8px;
  color: var(--pv-ink);
  font-size: 13px;
  font-weight: 700;
}

.pv-form-wrap .wpforms-required-label {
  color: var(--pv-coral);
}

.pv-form-wrap input[type='text'],
.pv-form-wrap input[type='email'],
.pv-form-wrap input[type='tel'],
.pv-form-wrap input[type='number'],
.pv-form-wrap select,
.pv-form-wrap textarea {
  width: 100% !important;
  max-width: none !important;
  min-height: 52px;
  padding: 12px 14px !important;
  border: 1px solid #c4dadd !important;
  border-radius: 4px !important;
  color: var(--pv-ink) !important;
  background: #fbfefd !important;
  box-shadow: none !important;
}

.pv-form-wrap textarea {
  min-height: 110px;
  resize: vertical;
}

.pv-form-wrap input:focus,
.pv-form-wrap select:focus,
.pv-form-wrap textarea:focus {
  border-color: var(--pv-teal) !important;
  outline: 3px solid rgba(14, 154, 167, 0.14) !important;
}

.pv-form-wrap button[type='submit'],
.pv-form-wrap .wpforms-submit {
  width: 100% !important;
  min-height: 54px !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 4px !important;
  color: var(--pv-white) !important;
  background: var(--pv-deep) !important;
  font-weight: 700 !important;
  cursor: pointer;
}

.pv-form-wrap button[type='submit']:hover,
.pv-form-wrap .wpforms-submit:hover {
  background: var(--pv-teal) !important;
}

.pv-lead-modal[hidden] {
  display: none;
}

.pv-lead-modal {
  position: fixed;
  z-index: 2200;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.pv-lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pv-lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 43, 53, 0.78);
  backdrop-filter: blur(8px);
}

.pv-lead-modal__dialog {
  position: relative;
  width: min(100%, 470px);
  max-height: calc(100svh - 48px);
  padding: clamp(28px, 5vw, 46px);
  overflow: auto;
  border-top: 5px solid var(--pv-aqua);
  border-radius: 8px;
  background: var(--pv-white);
  box-shadow: 0 28px 80px rgba(3, 43, 53, 0.34);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.pv-lead-modal.is-open .pv-lead-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pv-lead-modal__close {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--pv-line);
  border-radius: 50%;
  color: var(--pv-dark);
  background: var(--pv-paper);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.pv-lang-en .pv-lead-modal__close {
  right: 14px;
  left: auto;
}

.pv-lead-modal__close:hover,
.pv-lead-modal__close:focus-visible {
  color: var(--pv-white);
  background: var(--pv-coral);
  outline: 0;
  transform: rotate(6deg);
}

.pv-lead-modal__close svg {
  width: 20px;
  height: 20px;
}

.pv-lead-modal__heading {
  padding-inline-end: 28px;
}

.pv-lang-en .pv-lead-modal__heading {
  padding-inline: 0 28px;
}

.pv-lead-modal__heading .pv-eyebrow {
  margin-bottom: 10px;
}

.pv-lead-modal__heading h2 {
  margin: 0;
  color: var(--pv-dark);
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.3;
}

.pv-lead-modal__heading > p:not(.pv-eyebrow) {
  margin: 12px 0 0;
  color: #536e72;
  font-size: 14px;
  line-height: 1.8;
}

.pv-modal__form.pv-form-wrap {
  margin-top: 24px;
  padding: 22px 0 0;
  border-top: 1px solid var(--pv-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pv-modal__form .wpforms-field {
  padding-bottom: 14px;
}

.pv-modal__form .wpforms-submit-container {
  padding-top: 2px !important;
}

.pv-thank-you {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  color: var(--pv-white);
  background: var(--pv-dark);
}

.pv-thank-you__media,
.pv-thank-you__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pv-thank-you__media {
  object-fit: cover;
  object-position: center;
}

.pv-thank-you__overlay {
  background: rgba(3, 43, 53, 0.78);
}

.pv-thank-you__content {
  position: relative;
  z-index: 1;
  padding-block: 132px 90px;
}

.pv-thank-you__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--pv-ink);
  background: var(--pv-sun);
}

.pv-thank-you__icon svg {
  width: 31px;
  height: 31px;
}

.pv-thank-you h1 {
  max-width: 760px;
  margin: 0;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0;
}

.pv-thank-you__content > p:not(.pv-eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
}

.pv-thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px;
}

.page-template-page-thank-you .pv-header__cta {
  display: none;
}

.pv-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--pv-dark);
}

.pv-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 42px;
}

.pv-brand--footer {
  color: var(--pv-white);
}

.pv-footer__inner p {
  max-width: 620px;
  margin: 0;
  justify-self: end;
  font-size: 13px;
}

.pv-contact__copy[role='button'],
.pv-footer__inner p[role='button'] {
  cursor: pointer;
}

.pv-contact__copy[role='button']:focus-visible,
.pv-footer__inner p[role='button']:focus-visible {
  outline: 3px solid var(--pv-coral);
  outline-offset: 8px;
}

.pv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.pv-footer__bottom p {
  margin: 0;
}

.pv-contact-actions {
  position: fixed;
  z-index: 990;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
}

.pv-contact-action {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--pv-white);
  box-shadow: 0 12px 32px rgba(7, 59, 76, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.pv-contact-action svg {
  width: 27px;
  height: 27px;
}

.pv-contact-action::after {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  min-width: max-content;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--pv-white);
  background: var(--pv-dark);
  content: attr(data-tooltip);
  font-family: 'Cairo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.pv-contact-action:hover,
.pv-contact-action:focus-visible {
  box-shadow: 0 16px 38px rgba(7, 59, 76, 0.3);
  transform: translateY(-3px);
}

.pv-contact-action:hover::after,
.pv-contact-action:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.pv-call-button {
  background: var(--pv-coral);
}

.pv-call-button:hover,
.pv-call-button:focus-visible {
  background: #f05e49;
}

.pv-whatsapp-button {
  background: #25d366;
}

.pv-whatsapp-button:hover,
.pv-whatsapp-button:focus-visible {
  background: #1fbd5a;
}

body.pv-is-scrolling .pv-whatsapp-button {
  animation: pv-whatsapp-scroll 820ms ease-in-out infinite alternate;
}

@keyframes pv-whatsapp-scroll {
  from {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.24), 0 0 0 0 rgba(37, 211, 102, 0.3);
    transform: translateY(0) scale(1);
  }

  to {
    box-shadow: 0 16px 38px rgba(37, 211, 102, 0.38), 0 0 0 9px rgba(37, 211, 102, 0);
    transform: translateY(-4px) scale(1.04);
  }
}

.pv-lang-en {
  font-family: 'Cairo', Arial, sans-serif;
}

.pv-lang-en .pv-nav a::after {
  right: auto;
  left: 0;
}

.pv-lang-en .pv-hero__overlay {
  background: linear-gradient(270deg, rgba(3, 43, 53, 0.2) 0%, rgba(3, 43, 53, 0.42) 48%, rgba(3, 43, 53, 0.88) 100%);
}

.pv-lang-en .pv-intro__copy h2,
.pv-lang-en .pv-quick-lead__copy h2,
.pv-lang-en .pv-section-heading h2,
.pv-lang-en .pv-film__copy h2,
.pv-lang-en .pv-payment__copy h2,
.pv-lang-en .pv-contact__copy h2 {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.14;
}

.pv-lang-en .pv-text-link:hover span,
.pv-lang-en .pv-text-link:focus-visible span {
  transform: translateX(5px);
}

.pv-lang-en .pv-fact strong,
.pv-lang-en .pv-payment__numbers strong,
.pv-lang-en [data-counter] {
  text-align: center;
}

.pv-lang-en .pv-carousel__slide figcaption {
  right: auto;
  left: 16px;
  direction: ltr;
}

@media (max-width: 980px) {
  :root {
    --pv-container: min(100% - 36px, 760px);
  }

  .pv-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .pv-scroll-story__window {
    inset: 62px 28px;
  }

  .pv-scroll-story__beats {
    width: min(620px, calc(100% - 32px));
  }

  .pv-header__actions {
    grid-column: 3;
    justify-self: end;
  }

  .pv-menu-toggle {
    display: block;
  }

  .pv-nav {
    position: fixed;
    z-index: 1001;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100svh - 78px);
    padding: 42px 24px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    color: var(--pv-ink);
    background: var(--pv-white);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .admin-bar .pv-nav {
    top: 110px;
    height: calc(100svh - 110px);
  }

  .pv-nav.is-open {
    transform: translateX(0);
  }

  .pv-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--pv-line);
    font-size: 20px;
  }

  .pv-nav a::after {
    display: none;
  }

  .pv-intro__grid,
  .pv-quick-lead__grid,
  .pv-film__grid,
  .pv-payment__grid,
  .pv-faq__grid,
  .pv-contact__grid {
    grid-template-columns: 1fr;
  }

  .pv-intro__media {
    order: -1;
  }

  .pv-quick-lead__copy {
    max-width: 640px;
  }

  .pv-section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .pv-section-heading > p {
    max-width: 620px;
  }

  .pv-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pv-feature:nth-child(2) {
    border-left: 0;
  }

  .pv-feature:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pv-line);
  }

  .pv-film__copy {
    max-width: 620px;
  }

  .pv-film__player {
    width: min(100%, 420px);
  }

  .pv-payment__image {
    order: 2;
    width: min(80%, 430px);
  }

  .pv-contact__copy {
    max-width: 640px;
  }

  .pv-thank-you h1 {
    font-size: 48px;
  }
}

@media (max-width: 700px) {
  :root {
    --pv-container: calc(100% - 28px);
  }

  .admin-bar .pv-header {
    top: 46px;
  }

  .admin-bar .pv-nav {
    top: 124px;
    height: calc(100svh - 124px);
  }

  .pv-header__inner {
    min-height: 70px;
    gap: 10px;
  }

  .pv-header__actions {
    gap: 8px;
  }

  .pv-brand__name {
    font-size: 19px;
  }

  .pv-brand__place {
    margin-top: 5px;
    font-size: 6px;
  }

  .pv-header__cta {
    display: none;
  }

  .pv-nav {
    top: 70px;
    height: calc(100svh - 70px);
  }

  .pv-hero {
    min-height: 84svh;
  }

  .pv-hero__slide.is-billboard .pv-hero__media {
    object-position: 45% center;
  }

  .pv-hero__overlay {
    background: linear-gradient(180deg, rgba(3, 43, 53, 0.12) 0%, rgba(3, 43, 53, 0.74) 66%, rgba(3, 43, 53, 0.96) 100%);
  }

  .pv-lang-en .pv-hero__overlay {
    background: linear-gradient(180deg, rgba(3, 43, 53, 0.12) 0%, rgba(3, 43, 53, 0.74) 66%, rgba(3, 43, 53, 0.96) 100%);
  }

  .pv-hero__content {
    align-self: flex-end;
    padding-top: 120px;
    padding-bottom: 104px;
  }

  .pv-hero__title {
    font-size: 38px;
    line-height: 1.28;
  }

  .pv-hero__lead {
    margin-top: 14px;
    font-size: 16px;
  }

  .pv-hero__actions {
    margin-top: 24px;
  }

  .pv-button {
    min-height: 50px;
    padding-inline: 18px;
  }

  .pv-hero__controls {
    left: 14px;
    bottom: 14px;
    gap: 7px;
  }

  .pv-hero__controls > button {
    width: 38px;
    height: 38px;
  }

  .pv-hero__dots button {
    width: 18px;
  }

  .pv-hero__dots button.is-active {
    width: 32px;
  }

  .pv-hero__count {
    min-width: 44px;
  }

  .pv-motion-ready .pv-scroll-story {
    height: 300svh;
  }

  .admin-bar .pv-motion-ready .pv-scroll-story__sticky {
    top: 46px;
    min-height: calc(100svh - 46px);
  }

  .pv-scroll-story__window {
    inset: 70px 14px 146px;
  }

  .pv-scroll-story__shade {
    background: linear-gradient(180deg, rgba(4, 28, 33, 0.18), rgba(4, 28, 33, 0.2) 42%, rgba(4, 28, 33, 0.92) 82%, #041c21 100%);
  }

  .pv-scroll-story__beats {
    right: 0;
    bottom: 104px;
    left: 0;
    width: 100%;
  }

  .pv-lang-en .pv-scroll-story__beats {
    right: 0;
    left: 0;
  }

  .pv-scroll-story__beat h2,
  .pv-lang-en .pv-scroll-story__beat h2 {
    font-size: 34px;
    line-height: 1.28;
  }

  .pv-scroll-story__beat > p:not(.pv-eyebrow) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.75;
  }

  .pv-scroll-story__chapters {
    bottom: 20px;
    max-width: none;
  }

  .pv-scroll-story__chapters span {
    padding-top: 11px;
    font-size: 9px;
    gap: 5px;
  }

  .pv-page-story-rail {
    display: none;
  }

  .pv-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pv-fact {
    min-height: 104px;
    padding: 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .pv-fact:nth-child(2) {
    border-left: 0;
  }

  .pv-fact:nth-child(n + 3) {
    border-bottom: 0;
  }

  .pv-fact strong {
    font-size: 28px;
  }

  .pv-section {
    padding-block: 70px;
  }

  .pv-section[data-story-chapter]::before {
    top: 12px;
    inset-inline-end: 14px;
    font-size: 70px;
  }

  .pv-intro__copy h2,
  .pv-quick-lead__copy h2,
  .pv-section-heading h2,
  .pv-film__copy h2,
  .pv-payment__copy h2,
  .pv-contact__copy h2 {
    font-size: 38px;
  }

  .pv-lang-en .pv-intro__copy h2,
  .pv-lang-en .pv-quick-lead__copy h2,
  .pv-lang-en .pv-section-heading h2,
  .pv-lang-en .pv-film__copy h2,
  .pv-lang-en .pv-payment__copy h2,
  .pv-lang-en .pv-contact__copy h2 {
    font-size: 36px;
  }

  .pv-faq__intro h2 {
    font-size: 38px;
  }

  .pv-intro__copy > p:not(.pv-eyebrow),
  .pv-quick-lead__copy > p:not(.pv-eyebrow),
  .pv-section-heading > p,
  .pv-film__copy > p:not(.pv-eyebrow),
  .pv-payment__copy > p:not(.pv-eyebrow),
  .pv-contact__copy > p:not(.pv-eyebrow) {
    font-size: 15px;
  }

  .pv-intro__media::before {
    top: -10px;
    right: -8px;
    width: 62px;
    height: 62px;
  }

  .pv-intro__media img {
    aspect-ratio: 1.15 / 1;
  }

  .pv-section-heading {
    margin-bottom: 34px;
  }

  .pv-feature-grid {
    grid-template-columns: 1fr;
  }

  .pv-feature {
    min-height: auto;
    padding: 26px 20px;
    border-left: 0;
    border-bottom: 1px solid var(--pv-line);
  }

  .pv-feature:nth-child(3) {
    border-bottom: 1px solid var(--pv-line);
  }

  .pv-feature:last-child {
    border-bottom: 0;
  }

  .pv-faq__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .pv-feature h3 {
    margin: 32px 0 8px;
  }

  .pv-carousel__slide {
    aspect-ratio: 4 / 3;
    flex-basis: 90%;
  }

  .pv-carousel__toolbar {
    margin-bottom: 12px;
  }

  .pv-carousel__buttons button {
    width: 44px;
    height: 44px;
  }

  .pv-carousel__slide figcaption {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .pv-lang-en .pv-carousel__slide figcaption {
    right: auto;
    left: 10px;
  }

  .pv-carousel__dots button {
    width: 14px;
  }

  .pv-carousel__dots button.is-active {
    width: 32px;
  }

  .pv-film__grid {
    gap: 40px;
  }

  .pv-film__player {
    width: min(88%, 360px);
  }

  .pv-payment__grid {
    gap: 54px;
  }

  .pv-payment__image {
    width: calc(100% - 22px);
    margin-inline-end: 22px;
    box-shadow: 14px 14px 0 #d9d9d9;
  }

  .pv-payment__numbers div {
    padding-inline: 10px;
  }

  .pv-payment__numbers strong {
    font-size: 26px;
  }

  .pv-form-wrap {
    padding: 28px 20px;
  }

  .pv-lead-modal {
    padding: 12px;
  }

  .pv-lead-modal__dialog {
    max-height: calc(100svh - 24px);
    padding: 30px 20px 24px;
  }

  .pv-lead-modal__close {
    top: 10px;
    left: 10px;
  }

  .pv-lang-en .pv-lead-modal__close {
    right: 10px;
    left: auto;
  }

  .pv-lead-modal__heading {
    padding-inline-end: 32px;
  }

  .pv-lang-en .pv-lead-modal__heading {
    padding-inline: 0 32px;
  }

  .pv-lead-modal__heading h2 {
    font-size: 30px;
  }

  .pv-footer {
    padding-bottom: 146px;
  }

  .pv-thank-you__content {
    padding-block: 120px 72px;
  }

  .pv-thank-you h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  .pv-thank-you__content > p:not(.pv-eyebrow) {
    margin-top: 18px;
    font-size: 16px;
  }

  .pv-thank-you__actions {
    margin-top: 26px;
  }

  .pv-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pv-footer__inner p {
    justify-self: start;
  }

  .pv-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .pv-contact-actions {
    right: 12px;
    bottom: 12px;
  }

  .pv-contact-action {
    width: 52px;
    height: 52px;
  }

  .pv-contact-action::after {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .pv-motion-ready .pv-scroll-story {
    height: auto;
  }

  .pv-motion-ready .pv-scroll-story__sticky {
    position: relative;
  }

  .pv-scroll-story__exterior,
  .pv-scroll-story__shutter,
  .pv-scroll-story__glass {
    display: none;
  }

  .pv-scroll-story__window {
    opacity: 1;
    transform: none;
  }

  .pv-scroll-story__view,
  [data-story-parallax] > img {
    transform: none;
  }

  .pv-motion-ready [data-story-reveal] .pv-fact,
  .pv-motion-ready [data-story-reveal] .pv-quick-lead__copy > *,
  .pv-motion-ready [data-story-reveal] .pv-form-wrap,
  .pv-motion-ready [data-story-reveal] .pv-intro__copy > *,
  .pv-motion-ready [data-story-reveal] .pv-section-heading > *,
  .pv-motion-ready [data-story-reveal] .pv-feature,
  .pv-motion-ready [data-story-reveal] .pv-carousel,
  .pv-motion-ready [data-story-reveal] .pv-film__copy > *,
  .pv-motion-ready [data-story-reveal] .pv-film__player,
  .pv-motion-ready [data-story-reveal] .pv-intro__media,
  .pv-motion-ready [data-story-reveal] .pv-masterplan__image,
  .pv-motion-ready [data-story-reveal] .pv-payment__image,
  .pv-motion-ready [data-story-reveal] .pv-payment__copy > *,
  .pv-motion-ready [data-story-reveal] .pv-faq__intro > *,
  .pv-motion-ready [data-story-reveal] .pv-faq__item,
  .pv-motion-ready [data-story-reveal] .pv-contact__copy > * {
    clip-path: none;
    opacity: 1;
    transform: none;
  }
}
