:root {
  --bg: #071321;
  --surface: rgba(10, 27, 47, 0.9);
  --surface-solid: #0b1d31;
  --surface-soft: #10263f;
  --primary: #49b7ff;
  --primary-deep: #081a2c;
  --primary-soft: #8bd3ff;
  --accent: #ff6a5f;
  --accent-soft: #ffe6e2;
  --text: #ecf6ff;
  --muted: #9cb6d1;
  --line: rgba(121, 199, 255, 0.14);
  --shadow-lg: 0 34px 80px rgba(2, 9, 20, 0.5);
  --shadow-md: 0 22px 44px rgba(2, 9, 20, 0.36);
  --shadow-sm: 0 14px 28px rgba(2, 9, 20, 0.24);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --max-width: 1180px;
  --header-offset: 104px;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 7.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(73, 183, 255, 0.22), transparent 24%),
    radial-gradient(circle at top right, rgba(10, 108, 195, 0.22), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 106, 95, 0.08), transparent 18%),
    linear-gradient(180deg, #06111d 0%, #091a2c 32%, #0a2037 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.5;
  pointer-events: none;
}

.page-shell::before {
  top: 8%;
  left: -10%;
  width: 20rem;
  height: 20rem;
  background: rgba(121, 199, 255, 0.4);
  animation: drift 16s ease-in-out infinite;
}

.page-shell::after {
  right: -8%;
  bottom: 14%;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 106, 95, 0.16);
  animation: drift 14s ease-in-out infinite reverse;
}

.section-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  padding: 1rem 1rem 0;
}

.site-header__inner {
  width: min(calc(100% - 0rem), var(--max-width));
  margin: 0 auto;
  padding: 0.9rem 1rem 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(139, 211, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 23, 41, 0.72);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(2, 9, 20, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.72));
  color: var(--primary-deep);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
}

.brand__text strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.brand__text small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.77rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta {
  min-height: 3rem;
  padding: 0 1.25rem;
  background: linear-gradient(135deg, #1694ea, #64d0ff);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(5, 39, 70, 0.3);
}

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

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(139, 211, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  margin: 0.18rem auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-menu {
  display: none;
}

.hero {
  padding: 0 1rem;
  margin-top: -5rem;
}

.hero__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0 0 58px 58px;
  background:
    linear-gradient(135deg, rgba(4, 20, 35, 0.98) 0%, rgba(7, 56, 100, 0.96) 42%, rgba(16, 121, 197, 0.92) 100%);
  box-shadow: var(--shadow-lg);
  min-height: min(58rem, 100vh);
}

.hero__slides,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__slides {
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: heroSlideshow 18s ease-in-out infinite;
  will-change: opacity, transform;
}

.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(4, 14, 25, 0.82) 0%, rgba(4, 14, 25, 0.68) 34%, rgba(6, 29, 50, 0.44) 56%, rgba(9, 40, 68, 0.38) 100%),
    linear-gradient(180deg, rgba(3, 12, 22, 0.2) 0%, rgba(4, 14, 25, 0.45) 74%, rgba(5, 18, 31, 0.92) 100%);
}

.hero__slide--1 {
  background-image: url("assets/slide1.jpeg");
}

.hero__slide--2 {
  background-image: url("assets/slide2.jpeg");
  animation-delay: 6s;
}

.hero__slide--3 {
  background-image: url("assets/slide3.jpeg");
  animation-delay: 12s;
}

.hero__overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 76% 24%, rgba(94, 191, 255, 0.18), transparent 18%),
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.hero__panel::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -10rem;
  height: 18rem;
  background: rgba(7, 19, 33, 0.98);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero__glow {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.42;
}

.hero__glow--one {
  top: 12%;
  left: -2rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 255, 255, 0.16);
  animation: drift 14s ease-in-out infinite;
}

.hero__glow--two {
  right: -2rem;
  bottom: 22%;
  width: 20rem;
  height: 20rem;
  background: rgba(122, 203, 255, 0.28);
  animation: drift 17s ease-in-out infinite reverse;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 0.78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(8.75rem, 15vw, 11rem) 0 clamp(8.5rem, 12vw, 9.5rem);
}

.hero__content {
  position: relative;
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 0.24rem;
  border-radius: 999px;
  background: var(--accent);
}

.eyebrow--blue {
  color: var(--primary);
}

.hero h1,
.section-heading h2,
.feature__content h2,
.about__content h2,
.availability__panel h2,
.contact__content h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading h2,
.feature__content h2,
.about__content h2,
.availability__panel h2,
.contact__content h2 {
  color: var(--text);
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
}

.hero__lead,
.section-heading p,
.feature__content p,
.about__content p,
.availability__panel p,
.contact__content p,
.service-card p,
.trust-card p,
.about-card p,
.contact-form__note,
.site-footer__brand p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero__lead {
  max-width: 40rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.5rem;
  padding: 0 1.5rem;
  font-size: 0.98rem;
}

.button--primary {
  background: linear-gradient(135deg, #1b9bed, #69d4ff);
  color: #ffffff;
  box-shadow: 0 20px 36px rgba(2, 14, 28, 0.34);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(139, 211, 255, 0.16);
}

.button--light {
  background: #ffffff;
  color: var(--primary-deep);
  box-shadow: 0 18px 32px rgba(2, 14, 28, 0.26);
}

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

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.hero__scroll span {
  position: relative;
  width: 1.6rem;
  height: 2.6rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}

.hero__scroll span::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 50%;
  width: 0.28rem;
  height: 0.55rem;
  margin-left: -0.14rem;
  border-radius: 999px;
  background: #ffffff;
  animation: bounce 1.6s ease-in-out infinite;
}

.hero__visual {
  position: relative;
}

.visual-card {
  position: relative;
  width: min(100%, 27rem);
  margin-left: auto;
}

.visual-card__photo {
  position: relative;
  padding: 0.75rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(11, 33, 56, 0.86), rgba(5, 21, 36, 0.94));
  border: 1px solid rgba(139, 211, 255, 0.16);
  box-shadow: 0 26px 54px rgba(2, 10, 22, 0.46);
  backdrop-filter: blur(16px);
}

.visual-card__photo::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 7 / 9;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  filter: saturate(1.04) contrast(1.02);
}

.floating-tag {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  min-width: 10.75rem;
  border-radius: 18px;
  background: rgba(8, 25, 43, 0.92);
  color: var(--text);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 211, 255, 0.14);
  animation: float 6s ease-in-out infinite;
}

.floating-tag strong {
  font-size: 0.92rem;
  font-weight: 800;
}

.floating-tag span {
  color: var(--muted);
  font-size: 0.82rem;
}

.floating-tag--top {
  top: 11%;
  left: -8%;
}

.floating-tag--bottom {
  right: -7%;
  bottom: 12%;
  animation-delay: -2.5s;
}

.hero__summary-card {
  position: absolute;
  left: -8%;
  bottom: 5%;
  width: min(13.25rem, 44%);
  padding: 0.9rem;
  border-radius: 20px;
  background: rgba(6, 22, 39, 0.9);
  border: 1px solid rgba(139, 211, 255, 0.16);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.hero__summary-item + .hero__summary-item {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(139, 211, 255, 0.12);
}

.hero__summary-item strong {
  display: block;
  color: var(--text);
  font-size: 0.96rem;
}

.hero__summary-item span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.trust {
  position: relative;
  z-index: 3;
  margin-top: 1.1rem;
  padding: 0 0 2rem;
}

.trust__panel {
  padding: clamp(2.5rem, 6vw, 4rem);
  background:
    linear-gradient(180deg, rgba(8, 23, 39, 0.94), rgba(10, 29, 51, 0.94)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border-radius: 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139, 211, 255, 0.12);
}

.section,
.stats,
.availability,
.contact,
.site-footer {
  position: relative;
  padding: 2rem 0;
}

.section--soft {
  padding-top: 4rem;
}

.section-heading {
  max-width: 44rem;
}

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

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading p {
  margin-top: 1.2rem;
}

.trust__grid,
.services-grid,
.about__cards {
  display: grid;
  gap: 1.35rem;
  margin-top: 2.4rem;
}

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

.trust-card,
.service-card,
.about-card,
.contact-card,
.contact-form,
.stat-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 31, 54, 0.92), rgba(10, 24, 42, 0.94));
  box-shadow: var(--shadow-sm);
}

.trust-card,
.service-card,
.about-card,
.contact-card,
.feature__image-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-card:hover,
.service-card:hover,
.about-card:hover,
.contact-card:hover,
.feature__image-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 104, 181, 0.16);
}

.trust-card,
.service-card,
.about-card {
  padding: 1.6rem;
  border-radius: 28px;
}

.trust-card__badge {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(73, 183, 255, 0.12);
  color: var(--primary-soft);
  font-weight: 800;
}

.trust-card h3,
.service-card h3,
.about-card h3,
.stat-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--text);
}

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

.service-card {
  position: relative;
  padding-top: 1.8rem;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 1.6rem 1.4rem;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(121, 199, 255, 0.08));
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(73, 183, 255, 0.12), rgba(121, 199, 255, 0.18));
}

.service-card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--primary-soft);
}

.feature__grid,
.about,
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
}

.about {
  align-items: stretch;
}

.about__media {
  display: flex;
  align-items: stretch;
}

.about__photo-frame {
  position: relative;
  width: min(100%, 31rem);
  padding: 1rem;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(11, 29, 49, 0.94), rgba(8, 23, 39, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.about__photo-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.about__photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
}

.feature__image-card {
  overflow: hidden;
  padding: 1.2rem;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(11, 29, 49, 0.94), rgba(8, 23, 39, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.feature__image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
}

.feature__content p {
  margin-top: 1.2rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(11, 31, 53, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-weight: 800;
}

.feature-list__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(73, 183, 255, 0.12);
  color: var(--primary-soft);
}

.stats {
  padding-top: 1rem;
}

.stats__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.2rem;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(4, 20, 35, 0.78), rgba(8, 55, 96, 0.72)),
    url("assets/image 2.jpeg") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139, 211, 255, 0.14);
}

.stats__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 25, 0.4), rgba(5, 18, 31, 0.72)),
    radial-gradient(circle at top right, rgba(121, 199, 255, 0.18), transparent 24%);
  pointer-events: none;
}

.stats__panel > * {
  position: relative;
  z-index: 1;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(5, 19, 33, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  text-align: center;
  backdrop-filter: blur(10px);
  min-height: 10.75rem;
  display: grid;
  align-content: center;
  justify-items: center;
}

.stat-card__value {
  margin: 0;
  color: #ffffff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-card h3 {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.92);
}

.about__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: stretch;
}

.about__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.availability__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(4, 14, 25, 0.78), rgba(8, 55, 96, 0.68)),
    url("assets/image 3.jpeg") center/cover no-repeat;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139, 211, 255, 0.14);
}

.availability__panel .eyebrow,
.availability__panel .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.availability__panel .eyebrow::before {
  background: rgba(255, 255, 255, 0.82);
}

.availability__panel h2,
.availability__panel p {
  color: #ffffff;
}

.availability__panel p {
  margin-top: 1rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.3rem 1.4rem;
  border-radius: 24px;
}

.contact-card__label {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.06rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 32px;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(139, 211, 255, 0.14);
  border-radius: 18px;
  background: rgba(6, 20, 34, 0.84);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(156, 182, 209, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(73, 183, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(73, 183, 255, 0.14);
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form__note {
  font-size: 0.92rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 1.8rem;
  border-radius: 30px;
  background: rgba(5, 17, 30, 0.96);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(139, 211, 255, 0.12);
}

.site-footer__brand h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: #ffffff;
}

.site-footer__links,
.site-footer__contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  transition-delay: var(--delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.9rem, -1rem, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(0.5rem);
    opacity: 0.65;
  }
}

@keyframes heroSlideshow {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  5% {
    opacity: 1;
  }
  28% {
    opacity: 1;
    transform: scale(1);
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@media (max-width: 1080px) {
  .site-header__inner {
    border-radius: 28px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    margin-top: -4rem;
  }

  .feature__grid,
  .about,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.72fr);
    gap: 1.5rem;
    padding-top: 8rem;
  }

  .visual-card {
    width: min(100%, 22rem);
  }

  .floating-tag--top {
    left: -10%;
  }

  .floating-tag--bottom {
    right: -10%;
  }

  .hero__summary-card {
    left: -10%;
  }

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

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

  .about__photo-frame {
    width: 100%;
  }

  .about__photo-frame img {
    min-height: 22rem;
  }

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

  .availability__panel,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 88px;
  }

  .site-header {
    top: 0.75rem;
    padding: 0.75rem 0.75rem 0;
  }

  .site-header__inner {
    padding: 0.85rem 1rem;
  }

  .brand__text {
    display: none;
  }

  .site-header__actions {
    gap: 0.6rem;
  }

  .header-cta {
    min-height: 2.8rem;
    padding: 0 1rem;
    font-size: 0.92rem;
  }

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

  .mobile-menu {
    width: min(calc(100% - 1.5rem), var(--max-width));
    margin: 0.65rem auto 0;
    padding: 0.5rem;
    border: 1px solid rgba(139, 211, 255, 0.14);
    border-radius: 24px;
    background: rgba(5, 23, 41, 0.94);
    box-shadow: 0 18px 36px rgba(2, 9, 20, 0.3);
    position: relative;
    z-index: 25;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 0.3rem;
  }

  .mobile-menu a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 700;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    padding: 0 0.75rem;
    margin-top: -3.8rem;
  }

  .hero__panel {
    border-radius: 0 0 36px 36px;
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 6rem 0 4.7rem;
    align-items: start;
  }

  .hero__panel::after {
    left: -18%;
    right: -18%;
    bottom: -9rem;
    height: 12rem;
  }

  .hero__visual {
    display: none;
  }

  .hero h1 {
    max-width: 10.4ch;
    font-size: clamp(2.05rem, 10vw, 2.9rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
  }

  .hero__lead {
    max-width: none;
    margin-top: 0.9rem;
    font-size: 0.93rem;
    line-height: 1.58;
  }

  .hero__content {
    padding-top: 0.15rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.35rem;
    width: min(100%, 21rem);
  }

  .hero .button {
    width: 100%;
    min-height: 3rem;
    padding: 0 1.15rem;
    font-size: 0.9rem;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading h2,
  .feature__content h2,
  .about__content h2,
  .availability__panel h2,
  .contact__content h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .trust {
    margin-top: 0.8rem;
  }

  .trust__panel {
    border-radius: 34px;
    padding: 1.5rem;
  }

  .trust__grid,
  .services-grid,
  .stats__panel {
    grid-template-columns: 1fr;
  }

  .stats__panel {
    padding: 1rem;
    border-radius: 28px;
  }

  .service-card::after {
    inset: auto 1.4rem 1.2rem;
  }

  .floating-tag {
    display: none;
  }

  .hero__summary-card {
    display: none;
  }

  .contact-form,
  .feature__image-card {
    border-radius: 24px;
  }

  .site-footer__links,
  .site-footer__contact {
    gap: 0.85rem;
  }
}

@media (max-width: 420px) {
  .hero__grid {
    padding: 5.8rem 0 4.45rem;
  }

  .hero h1 {
    max-width: 9.6ch;
    font-size: clamp(1.95rem, 9.9vw, 2.6rem);
  }

  .hero__lead {
    font-size: 0.9rem;
  }

  .hero__actions {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
