﻿:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --surface: #ffffff;
  --surface-alt: #fff4cc;
  --surface-tint: #fef8e3;
  --text: #121212;
  --muted: #5d5d63;
  --muted-soft: #8a8a90;
  --accent: #ffc428;
  --accent-strong: #f5a300;
  --accent-dark: #c88400;
  --border: rgba(18, 18, 18, 0.08);
  --border-strong: rgba(18, 18, 18, 0.12);
  --shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 12px 24px rgba(17, 17, 17, 0.08);
  --shadow-tint: 0 18px 36px rgba(255, 196, 40, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  font-family: "Archivo", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
}

.floating-shapes {
  position: fixed;
  inset: -20% -20% 0 -20%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 196, 40, 0.16), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 235, 173, 0.35), transparent 48%),
    radial-gradient(circle at 30% 90%, rgba(0, 0, 0, 0.06), transparent 55%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
  animation: glowPulse 14s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
}

.page {
  position: relative;
  padding-bottom: 4rem;
}

.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 2.75rem);
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}

.logo-image {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--surface-tint);
  box-shadow: var(--shadow-soft);
}

.tagline {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  background: rgba(0, 0, 0, 0.02);
  border: none;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 15;
  margin-left: auto;
  margin-right: 0.6rem;
}

.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

.menu-toggle.open {
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.15);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.menu-toggle span:nth-child(1) {
  top: 10px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(2) {
  top: 17px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(3) {
  top: 24px;
  transform: translateX(-50%);
}

.menu-toggle.open span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
  top: 50%;
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
  top: 50%;
}

.nav-links button {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.nav-links button:hover {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface-alt);
}

.language-selector {
  display: flex;
  gap: 0.35rem;
}

.language-option {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.language-option:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 12px 24px rgba(255, 196, 40, 0.2);
}

.language-option.active {
  background: var(--accent);
  color: #1b1504;
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(255, 196, 40, 0.25);
}

.language-dock {
  position: fixed;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.45rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.language-dock .language-selector {
  gap: 0.25rem;
}

.language-dock .language-option {
  padding: 0.35rem 0.75rem;
}

.hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.6rem, 5vw, 4.5rem) clamp(1.5rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  background: url("./assets/logo/hero-background.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(32rem, 80vh, 62rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.35));
  z-index: 0;
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd36c;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 3.7rem);
  margin: 1.4rem 0 1rem;
  line-height: 1.05;
  color: #fff;
}

.hero-description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 2.3rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  border: none;
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  border-radius: 16px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #ffe07f);
  color: #201400;
  box-shadow: var(--shadow-tint);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 196, 40, 0.32);
}

.financing-card .btn.primary:focus-visible {
  outline: 2px solid #201400;
  outline-offset: 2px;
}

.btn.secondary {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
}

.hero-media {
  position: relative;
}

.hero-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.2rem;
  display: grid;
  gap: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.stat-label {
  display: block;
  color: var(--muted-soft);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.media-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(200, 136, 0, 0.4);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 196, 40, 0.18), transparent 55%);
  pointer-events: none;
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 3.2rem;
}

.scroll-indicator span {
  width: 2px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0));
  position: relative;
  overflow: hidden;
}

.scroll-indicator span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--accent), rgba(255, 196, 40, 0));
  animation: scrollGlow 2.8s ease-in-out infinite;
}

@keyframes scrollGlow {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section.decorated {
  position: relative;
  overflow: hidden;
}

.section.decorated > * {
  position: relative;
  z-index: 1;
}

#about,
#gallery,
#process,
#testimonials {
  position: relative;
  overflow: hidden;
}

.section.decorated::before,
.section.decorated::after {
  content: "";
  position: absolute;
  z-index: 0;
  opacity: 0.35;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}

.section.decorated::before {
  width: clamp(180px, 24vw, 320px);
  height: clamp(180px, 24vw, 320px);
  background: radial-gradient(circle at 30% 30%, rgba(255, 211, 108, 0.35), rgba(255, 211, 108, 0));
  border: 1px solid rgba(255, 211, 108, 0.7);
  border-radius: 32% 68% 46% 54% / 55% 32% 68% 45%;
  top: -80px;
  right: -60px;
}

.section.decorated::after {
  width: clamp(200px, 28vw, 360px);
  height: clamp(200px, 28vw, 360px);
  background: radial-gradient(circle at 70% 20%, rgba(14, 14, 24, 0.65), rgba(14, 14, 24, 0));
  border: 1px solid rgba(14, 14, 24, 0.6);
  border-radius: 45% 55% 60% 40% / 40% 65% 35% 60%;
  bottom: -110px;
  left: -80px;
  transform: rotate(-8deg);
}

.section.decorated:nth-of-type(odd)::before {
  top: -60px;
  right: 10%;
}

.section.decorated:nth-of-type(odd)::after {
  left: auto;
  right: -70px;
  bottom: -90px;
}

.section.decorated:nth-of-type(3)::before,
.section.decorated:nth-of-type(3)::after {
  transform: rotate(12deg);
}

.section.financing,
.section.contact {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.section-heading {
  max-width: 630px;
  margin-bottom: 2.6rem;
}

.section-heading h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  position: relative;
  padding: 3.2rem 2rem 2.2rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 196, 40, 0.4);
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
  margin-top: 1.3rem;
  color: var(--text);
}

.highlight-card p {
  color: var(--muted);
  line-height: 1.6;
}

.card-index {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 3rem;
  font-family: "Space Grotesk", sans-serif;
  color: rgba(255, 180, 0, 0.78);
}

.gallery-carousel {
  position: relative;
  min-height: 180px;
}

.carousel-window {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--surface);
  padding: 0.2rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  touch-action: pan-y;
  gap: 0;
}

.carousel-slide {
  min-width: 0;
  position: relative;
  display: block;
  background: var(--surface);
  flex: 0 0 calc(100% / var(--slides-per-view, 3));
  padding: 0 0.4rem;
  box-sizing: border-box;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 18 / 9;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.carousel-control:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 20px 36px rgba(17, 17, 17, 0.16);
}

.carousel-control:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.carousel-control.prev {
  left: 1.1rem;
}

.carousel-control.next {
  right: 1.1rem;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 60;
}

.lightbox-media {
  max-width: min(900px, 90vw);
  max-height: calc(100vh - 4rem);
  width: 100%;
  height: auto;
  border-radius: 20px;
  padding: 0;
  box-shadow: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 6rem);
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.lightbox-nav.prev {
  left: 2rem;
}

.lightbox-nav.next {
  right: 2rem;
}

.timeline-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 4vw, 2.2rem);
  position: relative;
  z-index: 1;
}

.timeline-track {
  display: flex;
  justify-content: space-between;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0.2rem;
  position: relative;
}

.timeline-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  padding-top: 1rem
}

.timeline-node {
  border: none;
  background: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.timeline-node:focus-visible {
  outline: 2px solid var(--timeline-color);
  outline-offset: 6px;
}

.node-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--timeline-color), var(--timeline-color-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--timeline-icon-color, #fff);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.node-icon svg {
  width: 32px;
  height: 32px;
  color: inherit;
}

.node-number {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--muted);
}

.node-line {
  width: 3px;
  height: 28px;
  border-radius: 999px;
  background: var(--timeline-color);
}

.node-arc {
  width: 100px;
  height: 48px;
  border: 5px solid var(--timeline-color);
  border-bottom: none;
  border-radius: 150px 150px 0 0;
  position: relative;
  background: transparent;
}

.node-arc::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: var(--timeline-color);
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.timeline-node.active .node-circle {
  transform: translateY(-8px) scale(1.05);
}

.timeline-node.active .node-number {
  color: var(--timeline-color);
}

.timeline-caption {
  text-align: center;
  max-width: 160px;
  margin-top: 0.3rem;
}

.timeline-caption h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.25;
}

.timeline-detail-card {
  margin-top: -0.2rem;
}

.timeline-detail-card {
  border-radius: 26px;
  padding: clamp(1.2rem, 4vw, 2rem);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.timeline-detail-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.timeline-detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.timeline-detail-card::before {
  content: "";
  position: absolute;
  inset: auto 15% 0;
  height: 70px;
  background: radial-gradient(circle, rgba(255, 196, 40, 0.2), transparent 70%);
  pointer-events: none;
  opacity: 0.7;
}

.timeline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--detail-accent, var(--accent-dark));
}

.timeline-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.timeline-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--detail-accent, var(--accent)), var(--accent-dark));
  transition: width 0.4s ease;
}

.timeline-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.timeline-item.next .node-circle::after,
.timeline-item.next .node-circle::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 2px solid var(--timeline-highlight, var(--timeline-color));
  box-shadow: 0 0 18px rgba(255, 196, 40, 0.5);
  opacity: 0;
  animation: nextPulse 1.4s ease-in-out infinite;
}

.timeline-item.next .node-circle::before {
  inset: -4px;
  border-width: 3px;
  animation-delay: 0.35s;
}

.timeline-item.next .node-arc {
  box-shadow: 0 0 18px rgba(255, 196, 40, 0.4);
  animation: arcGlow 1.4s ease-in-out infinite;
}

@keyframes nextPulse {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes arcGlow {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.financing {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("./assets/trailers/2.jpg") center/cover no-repeat;
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 6vw, 4rem);
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: clamp(32rem, 80vh, 62rem);
}

.financing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.financing-card {
  width: min(780px, 100%);
  padding: clamp(2.3rem, 6vw, 3.1rem);
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 1.6rem;
  position: relative;
  z-index: 1;
}

.financing-card h2 {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  margin: 0;
  color: var(--text);
}

.financing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.financing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.financing-card li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text);
  font-weight: 500;
}

.financing-card li::before {
  content: "●";
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--accent-dark);
  margin-top: 0.25rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.author .name {
  font-weight: 700;
  color: var(--text);
}

.author .role {
  color: var(--muted-soft);
  font-size: 0.85rem;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("./assets/trailers/17.jpg") center/cover no-repeat;
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 6vw, 4rem);
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: clamp(32rem, 80vh, 62rem);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.contact-card {
  width: min(720px, 100%);
  padding: clamp(2.5rem, 6vw, 3.2rem);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.7rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  color: var(--text);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: clamp(1.6rem, 5vw, 3rem);
  flex-wrap: wrap;
  text-align: left;
}

.contact-info .label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 0.35rem;
}

.contact-info a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.contact-info a:hover {
  color: var(--accent-dark);
}

.footer {
  width: min(520px, 90vw);
  margin: 2rem auto;
  padding: 1.5rem 0 1.8rem;
  border-top: 1px solid rgba(255, 211, 108, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.footer-social {
  display: inline-flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 211, 108, 0.16);
  border: 1px solid rgba(255, 211, 108, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: #ffd36c;
}

.footer-social a:focus-visible {
  outline: 2px solid #ffd36c;
  outline-offset: 3px;
}

.footer-social.only {
  width: 100%;
  justify-content: center;
}

.fade-up,
.fade-up-delayed {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show,
.fade-up-delayed.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delayed {
  transition-delay: 0.15s;
}

@media (max-width: 900px) {
  .language-dock {
    top: auto;
    bottom: calc(max(0.75rem, env(safe-area-inset-bottom)) + 0.5rem);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: max-content;
    padding: 0.45rem 0.7rem;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.15);
  }

  .timeline-track {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .timeline-track::-webkit-scrollbar {
    height: 6px;
  }

  .timeline-track::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
  }

  .timeline-item {
    min-width: 150px;
  }
}

@media (max-width: 860px) {
  .nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 1rem 1.4rem;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: clamp(0.8rem, 4vw, 2.2rem);
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
    display: none;
    z-index: 12;
    width: min(280px, 90vw);
    overflow: visible;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links button {
    width: 100%;
    text-align: left;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid transparent;
  }

  .nav-links button:hover {
    border-color: var(--border);
  }

  .tagline {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 3rem 1.5rem 2rem;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-content {
    padding-left: 1.4rem;
    padding-right: 0.8rem;
  }

  .node-circle {
    width: 68px;
    height: 68px;
  }

  .node-icon svg {
    width: 28px;
    height: 28px;
  }

  .node-arc {
    width: 105px;
    height: 48px;
    border-width: 5px;
  }

  .timeline-detail-card {
    padding: 1.25rem;
    margin-top: -0.8rem;
  }

  .timeline-wrapper {
    gap: 1.6rem;
    padding-bottom: 1.4rem;
  }

  .timeline-track {
    min-height: 220px;
    margin-bottom: 0;
  }

  .gallery-carousel {
    min-height: 220px;
  }

  .carousel-window {
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }

  .carousel-track {
    gap: 0;
  }

  .carousel-slide {
    flex: 0 0 100%;
    padding: 0;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .carousel-control.prev {
    left: 0.6rem;
  }

  .carousel-control.next {
    right: 0.6rem;
  }

  .gallery-lightbox {
    padding: 1rem;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .lightbox-nav.prev {
    left: 1rem;
  }

  .lightbox-nav.next {
    right: 1rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }

  .language-dock {
    position: fixed;
    top: auto;
    bottom: calc(max(0.85rem, env(safe-area-inset-bottom)) + 0.6rem);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(320px, 92vw);
    justify-content: center;
    padding: 0.45rem 0.6rem;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  }

  .language-dock .language-selector {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
  }

  .language-dock .language-option {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .nav-links {
    gap: 0.4rem;
  }

  .nav-links button {
    padding: 0.5rem 0.6rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .language-dock {
    width: min(260px, 95vw);
    bottom: calc(max(0.85rem, env(safe-area-inset-bottom)) + 0.9rem);
    padding: 0.35rem 0.45rem;
  }

  .language-dock .language-option {
    padding: 0.3rem 0.4rem;
  }
}
