:root {
  color-scheme: dark;
  --navy-950: #04111c;
  --navy-900: #061724;
  --navy-800: #082236;
  --navy-700: #0d3248;
  --ocean: #0a6f8f;
  --turquoise: #4ee4df;
  --aqua: #9cf8ef;
  --pearl: #f4f0e8;
  --mist: rgba(244, 240, 232, 0.74);
  --muted: rgba(244, 240, 232, 0.64);
  --line: rgba(244, 240, 232, 0.16);
  --glass: rgba(7, 23, 34, 0.58);
  --glass-strong: rgba(5, 18, 28, 0.76);
  --champagne: #d8c390;
  --gold-soft: rgba(216, 195, 144, 0.76);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy-950);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 0%, rgba(78, 228, 223, 0.12), transparent 30%),
    linear-gradient(180deg, #061724 0%, #04111c 46%, #071b27 100%);
  color: var(--pearl);
}

body::selection {
  background: rgba(78, 228, 223, 0.34);
  color: white;
}

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

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

button {
  font: inherit;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-fading {
  opacity: 0.16;
  transform: scale(1.018);
  transition: opacity 0.58s ease, transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-lucide] {
  width: 1em;
  height: 1em;
}

.navbar {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), 1220px);
  min-height: 72px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: 8px;
  background: rgba(4, 17, 28, 0.48);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
  transition: background 0.25s ease, border-color 0.25s ease, top 0.25s ease;
}

.navbar-scrolled {
  top: 10px;
  background: rgba(4, 17, 28, 0.84);
  border-color: rgba(244, 240, 232, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0;
  color: #fffaf0;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(78, 228, 223, 0.18), rgba(216, 195, 144, 0.22));
  border: 1px solid rgba(244, 240, 232, 0.2);
  color: var(--aqua);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  color: rgba(244, 240, 232, 0.76);
  font-size: 0.84rem;
  letter-spacing: 0;
  transition: color 0.22s ease;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--turquoise), var(--champagne));
  content: "";
  transition: width 0.22s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-wrap {
  position: relative;
  z-index: 60;
}

.language-trigger,
.language-menu button,
.mobile-toggle {
  border: 0;
  color: var(--pearl);
  cursor: pointer;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  color: rgba(244, 240, 232, 0.9);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.language-trigger:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(78, 228, 223, 0.36);
}

.language-trigger .rotate {
  transform: rotate(180deg);
}

.flag {
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 172px;
  padding: 7px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: 8px;
  background: rgba(4, 17, 28, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.language-menu button {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 6px;
  background: transparent;
  text-align: left;
}

.language-menu button small {
  justify-self: end;
  color: rgba(244, 240, 232, 0.52);
  font-size: 0.72rem;
}

.language-menu button:hover,
.language-menu button.active {
  background: rgba(78, 228, 223, 0.12);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: 8px;
  background: rgba(4, 17, 28, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.mobile-menu a {
  padding: 13px 14px;
  border-radius: 6px;
  color: rgba(244, 240, 232, 0.82);
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 19px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(244, 240, 232, 0.18);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0;
  isolation: isolate;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 1;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.btn-primary::before {
  background: linear-gradient(135deg, #00bfc8 0%, #087aa0 48%, #d8c390 132%);
}

.btn-ghost::before {
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(156, 248, 239, 0.58);
  box-shadow: 0 18px 44px rgba(0, 191, 200, 0.18);
}

.btn:hover::before {
  transform: scale(1.04);
}

.nav-cta {
  min-height: 44px;
  padding: 0 15px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px 24px 54px;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: var(--navy-950);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-slide-image {
  opacity: 0;
  transform: scale(1.018);
  transition:
    opacity 2.45s cubic-bezier(0.33, 0, 0.2, 1),
    transform 8.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 2.45s ease;
  will-change: opacity, transform;
}

.hero-slide-image.active {
  opacity: 1;
  transform: scale(1.055);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(156, 248, 239, 0.07), transparent 36%),
    linear-gradient(110deg, rgba(4, 17, 28, 0.08), transparent 55%, rgba(4, 17, 28, 0.12));
  content: "";
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 17, 28, 0.94) 0%, rgba(4, 17, 28, 0.72) 34%, rgba(4, 17, 28, 0.23) 72%, rgba(4, 17, 28, 0.82) 100%),
    linear-gradient(180deg, rgba(4, 17, 28, 0.56) 0%, rgba(4, 17, 28, 0.14) 43%, #04111c 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: end;
  gap: 56px;
}

.hero-copy {
  max-width: 810px;
  padding-bottom: clamp(16px, 3vw, 52px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.eyebrow::before {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--turquoise), var(--champagne));
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 520;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 7.5vw, 7.7rem);
  line-height: 0.91;
  color: #fffaf0;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 18px;
  color: rgba(244, 240, 232, 0.91);
  font-size: clamp(1.16rem, 2.1vw, 1.62rem);
  line-height: 1.45;
}

.hero-description {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(244, 240, 232, 0.7);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  margin-bottom: clamp(10px, 4vw, 58px);
  padding: 22px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(7, 28, 43, 0.72), rgba(4, 17, 28, 0.48));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(244, 240, 232, 0.12);
  color: rgba(244, 240, 232, 0.9);
}

.hero-card-line svg {
  width: 20px;
  color: var(--champagne);
}

.slide-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.slide-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.2);
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease;
}

.slide-dots button.active {
  width: 58px;
  background: linear-gradient(90deg, var(--turquoise), var(--champagne));
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 128px) 24px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-header {
  max-width: 780px;
  margin-bottom: 44px;
}

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

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

.section-header h2,
.condition-panel h2,
.areas-panel h2,
.final-inner h2 {
  margin-bottom: 18px;
  color: #fffaf0;
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
  line-height: 0.98;
}

.section-header p,
.intro-copy p,
.premium-card p,
.model-card p,
.areas-panel p,
.final-inner p,
.footer p {
  color: var(--muted);
  line-height: 1.82;
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(4, 17, 28, 1), rgba(6, 23, 36, 0.95)),
    radial-gradient(circle at 80% 30%, rgba(78, 228, 223, 0.13), transparent 34%);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.intro-copy {
  padding-top: 12px;
}

.intro-copy p {
  font-size: 1.03rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.badge-row span,
.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(244, 240, 232, 0.76);
  font-size: 0.84rem;
}

.dark-band {
  background:
    linear-gradient(180deg, rgba(5, 19, 29, 0.98), rgba(8, 34, 54, 0.94)),
    radial-gradient(circle at 20% 20%, rgba(216, 195, 144, 0.11), transparent 34%);
  border-top: 1px solid rgba(244, 240, 232, 0.08);
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
}

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

.premium-card {
  position: relative;
  min-height: 292px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(4, 17, 28, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.premium-card::after {
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 228, 223, 0.6), transparent);
  content: "";
  opacity: 0.65;
}

.premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(78, 228, 223, 0.28);
  background:
    linear-gradient(180deg, rgba(78, 228, 223, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(4, 17, 28, 0.52);
}

.icon-pill,
.timeline-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(78, 228, 223, 0.28);
  border-radius: 999px;
  background: rgba(78, 228, 223, 0.1);
  color: var(--aqua);
}

.premium-card h3,
.model-card h3,
.timeline-step h3 {
  margin-bottom: 14px;
  color: #fffaf0;
  font-size: 1.12rem;
  line-height: 1.22;
}

.models-section {
  background:
    radial-gradient(circle at 75% 20%, rgba(78, 228, 223, 0.12), transparent 32%),
    linear-gradient(180deg, #071b27, #04111c);
}

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

.model-card {
  position: relative;
  min-height: 536px;
  display: grid;
  grid-template-rows: 270px 1fr;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(4, 17, 28, 0.72);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.model-card:hover {
  transform: translateY(-6px);
  border-color: rgba(156, 248, 239, 0.36);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.model-index {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  color: rgba(244, 240, 232, 0.26);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
}

.model-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(156, 248, 239, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(11, 62, 82, 0.46), rgba(4, 17, 28, 0.88)),
    #061724;
}

.model-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 30%, rgba(255, 255, 255, 0.08) 30% 31%, transparent 31% 58%, rgba(255, 255, 255, 0.045) 58% 59%, transparent 59%),
    radial-gradient(ellipse at 50% 88%, rgba(78, 228, 223, 0.2), transparent 42%);
  content: "";
  z-index: 1;
}

.model-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 58%, transparent 0 42%, rgba(4, 17, 28, 0.18) 78%),
    linear-gradient(180deg, rgba(4, 17, 28, 0.05), rgba(4, 17, 28, 0.36));
  content: "";
  pointer-events: none;
}

.model-glow {
  position: absolute;
  z-index: 1;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(156, 248, 239, 0.24), rgba(78, 228, 223, 0.08) 54%, transparent 70%);
  filter: blur(12px);
}

.model-visual img {
  position: relative;
  z-index: 4;
  width: min(92%, 360px);
  height: auto;
  max-height: 205px;
  object-fit: contain;
  filter: saturate(1.07) contrast(1.04) drop-shadow(0 30px 34px rgba(0, 0, 0, 0.42));
  transform: translateY(2px) scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.model-card:hover .model-visual img {
  transform: translateY(-4px) scale(1.045);
  filter: saturate(1.12) contrast(1.07) drop-shadow(0 36px 40px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 18px rgba(78, 228, 223, 0.16));
}

.model-content {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.model-content > span {
  margin-bottom: 12px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-content p {
  margin-bottom: 24px;
}

.model-button {
  margin-top: auto;
  width: 100%;
}

.process-section {
  overflow: hidden;
  background: linear-gradient(180deg, #04111c, #061724);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.timeline::before {
  position: absolute;
  top: 47px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 228, 223, 0.42), transparent);
  content: "";
}

.timeline-step {
  position: relative;
  min-height: 224px;
  padding: 22px 18px;
  border: 1px solid rgba(244, 240, 232, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.timeline-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  background: rgba(4, 17, 28, 0.86);
}

.timeline-step span {
  display: block;
  margin-bottom: 12px;
  color: rgba(216, 195, 144, 0.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
}

.timeline-step h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 650;
}

.conditions-section {
  background:
    linear-gradient(135deg, rgba(8, 34, 54, 0.96), rgba(4, 17, 28, 0.98)),
    radial-gradient(circle at 90% 25%, rgba(216, 195, 144, 0.12), transparent 36%);
}

.condition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 22px;
}

.condition-panel,
.areas-panel {
  min-height: 520px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.condition-panel ul {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.condition-panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(244, 240, 232, 0.76);
  line-height: 1.65;
}

.condition-panel li svg {
  margin-top: 4px;
  color: var(--aqua);
}

.areas-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 17, 28, 0.1), rgba(4, 17, 28, 0.66)),
    url("https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?auto=format&fit=crop&w=1300&q=86") center/cover;
}

.areas-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 17, 28, 0.34), rgba(4, 17, 28, 0.92));
  content: "";
}

.areas-panel > * {
  position: relative;
  z-index: 2;
}

.map-orbit {
  position: absolute;
  inset: auto 34px 32px auto;
  width: 188px;
  height: 188px;
  opacity: 0.48;
}

.map-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(156, 248, 239, 0.34);
  border-radius: 999px;
}

.map-orbit span:nth-child(2) {
  inset: 34px;
  border-color: rgba(216, 195, 144, 0.38);
}

.map-orbit span:nth-child(3) {
  inset: 70px;
  background: rgba(78, 228, 223, 0.22);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.gallery-section {
  background: linear-gradient(180deg, #061724, #04111c);
}

.gallery-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 18px;
}

.gallery-feature {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.gallery-feature::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 22%, rgba(156, 248, 239, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(4, 17, 28, 0.02), rgba(4, 17, 28, 0.16));
  content: "";
  pointer-events: none;
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.001);
  transition:
    opacity 0.58s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.58s ease,
    object-position 0.58s ease;
}

.gallery-strip {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 12px;
}

.gallery-strip button {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gallery-strip button::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 17, 28, 0.04), rgba(4, 17, 28, 0.46)),
    rgba(4, 17, 28, 0.18);
  content: "";
  transition: opacity 0.22s ease;
}

.gallery-strip button.active {
  border-color: rgba(78, 228, 223, 0.65);
  box-shadow: 0 16px 34px rgba(0, 191, 200, 0.12);
}

.gallery-strip button:hover {
  transform: translateY(-2px);
}

.gallery-strip button.active::after,
.gallery-strip button:hover::after {
  opacity: 0;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.gallery-strip button:hover img,
.gallery-strip button.active img {
  transform: scale(1.045);
  filter: saturate(1.14) contrast(1.06);
}

.faq-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(78, 228, 223, 0.1), transparent 30%),
    linear-gradient(180deg, #04111c, #061724 58%, #04111c);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(5, 18, 28, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(156, 248, 239, 0.34);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.26);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 22px 26px;
  color: #fff;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(156, 248, 239, 0.28);
  border-radius: 999px;
  background: rgba(78, 228, 223, 0.08);
  color: var(--aqua);
  content: "+";
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: rgba(216, 195, 144, 0.42);
  background: rgba(216, 195, 144, 0.1);
}

.faq-item p {
  margin: -4px 26px 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 240, 232, 0.1);
  color: rgba(244, 240, 232, 0.76);
  line-height: 1.7;
}

.final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 100px 24px;
  text-align: center;
}

.final-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 17, 28, 0.7), rgba(4, 17, 28, 0.88)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2400&q=88") center/cover;
  transform: scale(1.02);
}

.final-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
}

.final-inner .eyebrow {
  justify-content: center;
}

.final-inner p {
  max-width: 650px;
  margin: 0 auto 34px;
  font-size: 1.08rem;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 44px 24px 54px;
  color: rgba(244, 240, 232, 0.72);
}

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

.footer p {
  max-width: 620px;
  margin-bottom: 0;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.footer-contact span,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: var(--aqua);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(244, 240, 232, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #0fb79a, #087aa0);
  box-shadow: 0 20px 55px rgba(5, 186, 163, 0.28);
  color: white;
  font-weight: 750;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 70px rgba(5, 186, 163, 0.34);
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .navbar {
    grid-template-columns: auto auto;
  }

  .mobile-toggle {
    display: grid;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-card {
    width: min(100%, 520px);
    margin-bottom: 0;
  }

  .intro-grid,
  .condition-grid {
    grid-template-columns: 1fr;
  }

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

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

  .timeline::before {
    display: none;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    grid-template-rows: none;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 720px) {
  .navbar {
    top: 10px;
    width: min(calc(100% - 20px), 1220px);
    min-height: 66px;
    padding: 10px;
    gap: 10px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .language-trigger {
    height: 40px;
    padding: 0 10px;
  }

  .language-trigger svg:first-child {
    display: none;
  }

  .mobile-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 18px 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 17, 28, 0.9), rgba(4, 17, 28, 0.58)),
      linear-gradient(180deg, rgba(4, 17, 28, 0.48) 0%, rgba(4, 17, 28, 0.24) 42%, #04111c 100%);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-description {
    font-size: 0.96rem;
  }

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

  .btn {
    min-height: 52px;
    padding: 0 18px;
  }

  .section {
    padding: 76px 18px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2,
  .condition-panel h2,
  .areas-panel h2,
  .final-inner h2 {
    font-size: clamp(2.25rem, 10vw, 3.6rem);
  }

  .experience-grid,
  .models-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .premium-card {
    min-height: auto;
  }

  .model-card {
    min-height: auto;
  }

  .condition-panel,
  .areas-panel {
    min-height: auto;
    padding: 26px;
  }

  .gallery-feature,
  .gallery-feature img {
    min-height: 430px;
  }

  .gallery-strip {
    grid-template-columns: repeat(5, 132px);
  }

  .faq-item summary {
    min-height: 70px;
    padding: 20px;
  }

  .faq-item p {
    margin: -4px 20px 22px;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact {
    justify-items: start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 15px;
  }
}

@media (max-width: 440px) {
  .brand span:last-child {
    display: none;
  }

  .hero-card {
    padding: 18px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .eyebrow::before {
    width: 24px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 54px;
    padding: 0;
    justify-content: center;
  }
}
