:root {
  --bg: #0b1324;
  --bg-alt: #0f1b33;
  --card: rgba(255, 255, 255, 0.04);
  --glass: rgba(255, 255, 255, 0.07);
  --text: #e8ecf5;
  --muted: #a9b3c7;
  --accent: #d7b46a;
  --accent-2: #4dd0e1;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(77, 208, 225, 0.08), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(215, 180, 106, 0.12), transparent 35%),
              var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #050914;
  display: grid;
  place-items: center;
  z-index: 100;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  width: min(320px, 80vw);
  display: grid;
  gap: 14px;
  text-align: center;
}

.preloader__label {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 18px;
}

.preloader__bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid var(--border);
}

.preloader__progress {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transition: width 0.2s ease;
}

.preloader__percent {
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(11, 19, 36, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b1324;
  font-weight: 700;
  font-size: 20px;
}

.brand__text small {
  color: var(--muted);
}

.nav__links {
  display: flex;
  gap: 20px;
  font-weight: 500;
}

.nav__links a {
  padding: 10px 0;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__cta--mobile {
  display: none;
}

.nav__cta--desktop {
  display: inline-flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b1324;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.nav__toggle i:nth-child(2) {
  display: none;
}

.nav--open .nav__toggle i:nth-child(1) {
  display: none;
}

.nav--open .nav__toggle i:nth-child(2) {
  display: inline-block;
}

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

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.4);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(77, 208, 225, 0.12), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(215, 180, 106, 0.16), transparent 30%),
              linear-gradient(120deg, rgba(11, 19, 36, 0.8), rgba(11, 19, 36, 0.9));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 780px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
}

.hero p {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 640px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.stat__number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--bg-alt);
}

.section--accent {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.1), rgba(215, 180, 106, 0.08));
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 3vw, 36px);
  font-family: "Playfair Display", serif;
}

h3 {
  margin: 0 0 10px;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card--glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
}

.card--hover {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card--hover:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.card--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.list i {
  color: var(--accent);
  margin-right: 10px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  border: 1px solid var(--border);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.quote {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  height: 100%;
}

.quote__author {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}

.link {
  color: var(--accent);
  font-weight: 600;
}

.link--small {
  font-size: 14px;
  margin-top: 8px;
  display: inline-block;
}

.map__info a {
  color: var(--accent-2);
}

.map__info a:hover {
  text-decoration: underline;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(215, 180, 106, 0.12);
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
}

.timeline__point {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-top: 5px;
  box-shadow: 0 0 0 6px rgba(215, 180, 106, 0.12);
}

.timeline__item strong {
  display: block;
  margin-bottom: 6px;
}

.testimonials .quote__text {
  font-style: italic;
  color: #fff;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dot--active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(215, 180, 106, 0.12);
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

label {
  color: #fff;
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(215, 180, 106, 0.15);
}

.form__note {
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.map {
  padding: 0;
  overflow: hidden;
}

.map__info {
  padding: 24px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
}

.map__embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.map__info strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer {
  background: #070c16;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__links {
  display: flex;
  gap: 16px;
  color: var(--muted);
}

.footer__copy {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .card--split {
    grid-template-columns: 1fr;
  }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 18px;
    background: rgba(11, 19, 36, 0.95);
    border-bottom: 1px solid var(--border);
  }
  .nav__links a {
    padding: 12px 0;
  }
  .nav--open .nav__links {
    display: flex;
  }
  .nav__cta--desktop {
    display: none;
  }
  .nav__cta--mobile {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 901px) {
  .nav__cta--mobile {
    display: none;
  }
  .nav__cta--desktop {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .nav__inner { padding: 14px 0; }
  .hero__content { padding: 100px 0 70px; }
  .section { padding: 76px 0; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

