/* =========================================
   LEXANI MOTORCARS v2 — STYLES
   ========================================= */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --color-gold: #B38629;
  --color-gold-light: #C9A04A;
  --color-gold-dark: #8F6B1E;
  --color-black: #0A0A0A;
  --color-dark: #111111;
  --color-dark-alt: #1A1A1A;
  --color-dark-card: #141414;
  --color-gray-900: #1E1E1E;
  --color-gray-800: #2A2A2A;
  --color-gray-700: #8A8A8A;
  --color-gray-600: #CCCCCC;
  --color-gray-400: #E0E0E0;
  --color-gray-300: #EEEEEE;
  --color-gray-200: #F0F0F0;
  --color-white: #FFFFFF;
  --color-off-white: #F5F5F0;
  --color-red: #E53E3E;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 2rem);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-300);
  background-color: var(--color-black);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section-padding {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.text-center {
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.section-subtitle {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--color-gray-400);
  max-width: 700px;
  margin-bottom: 3rem;
}

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

.required {
  color: var(--color-gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-black);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  box-shadow: 0 4px 20px rgba(179, 134, 41, 0.35);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 1.25rem 3.5rem;
  font-size: 1.1rem;
}

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

.btn--loading .btn__text {
  visibility: hidden;
}

.btn--loading .btn__loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(10, 10, 10, 0.3);
  border-top-color: var(--color-black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  display: none;
  background: #000;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray-800);
  font-size: 0.95rem;
  position: relative;
  z-index: 1001;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.trust-bar__text {
  color: var(--color-gray-400);
}

.trust-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-gold);
  font-weight: 500;
}

.trust-bar__phone:hover {
  color: var(--color-gold-light);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-base);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header--scrolled {
  top: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(179, 134, 41, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.header__logo img {
  height: 34px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.header__logo:hover img {
  opacity: 0.85;
}

.header__logo-text {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 0.6rem;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav a:not(.btn):not(.header__phone) {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-300);
}

.header__nav a:not(.btn):not(.header__phone):hover {
  color: var(--color-gold);
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-gold) !important;
  white-space: nowrap;
}

.header__phone:hover {
  color: var(--color-gold-light) !important;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--color-white);
  transition: all var(--transition-base);
  transform-origin: center;
}

.header__hamburger--active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger--active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.78) 0%,
    rgba(10, 10, 10, 0.6) 40%,
    rgba(10, 10, 10, 0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 2rem 0 2rem;
  margin-top: 3rem;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.3vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--color-gray-200);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero__actions {
  margin-bottom: 1rem;
}

.hero__micro {
  font-size: 1rem;
  color: var(--color-gray-600);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-gray-600);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-6px); }
  60% { transform: translateX(-50%) translateY(-3px); }
}

/* ===== SUPPORTING VALUE PROPOSITION ===== */
.value-prop {
  background: var(--color-dark);
}

.value-prop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.value-prop__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.value-prop__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.value-prop__points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.value-prop__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-prop__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(179, 134, 41, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
}

.value-prop__point h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.value-prop__point p {
  font-size: 1.15rem;
  color: var(--color-gray-400);
  line-height: 1.7;
}

/* ===== PRESS BAR ===== */
.press {
  background: var(--color-black);
  padding: 3rem 0;
  border-top: 1px solid var(--color-gray-800);
  border-bottom: 1px solid var(--color-gray-800);
}

.press__label {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.press__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.press__item img {
  height: 110px;
  max-height: 80px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.9;
  transition: opacity var(--transition-base);
}

.press__item:hover img {
  opacity: 1;
}

.press__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-gray-400);
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-dark-alt) 0%, var(--color-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(179, 134, 41, 0.1);
  border-bottom: 1px solid rgba(179, 134, 41, 0.1);
}

.cta-section--dark {
  background: linear-gradient(135deg, rgba(179, 134, 41, 0.08) 0%, var(--color-dark) 100%);
}

.cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section__text {
  font-size: 1.25rem;
  color: var(--color-gray-400);
  margin-bottom: 2rem;
}

.cta-section__sub {
  font-size: 1rem;
  color: var(--color-gray-600);
  margin-top: 1rem;
}

.cta-section__phone {
  color: var(--color-gold);
}

.cta-section__phone:hover {
  color: var(--color-gold-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--color-black);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-dark-card);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(179, 134, 41, 0.3);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-gray-300);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-card__name {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.15rem;
}

.testimonial-card__role {
  font-size: 1rem;
  color: var(--color-gray-600);
}

/* ===== TRUST PILLARS ===== */
.pillars {
  background: var(--color-dark);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-dark-card);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.pillar-card:hover {
  border-color: rgba(179, 134, 41, 0.3);
  transform: translateY(-2px);
}

.pillar-card__icon {
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.pillar-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.pillar-card__text {
  font-size: 1.05rem;
  color: var(--color-gray-400);
  line-height: 1.7;
}

/* ===== VEHICLE SHOWCASE ===== */
.vehicles {
  background: var(--color-black);
}

.vehicles__video {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-800);
}

.video-wrapper iframe,
.video-wrapper .video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.25s ease;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-wrapper.is-playing .video-thumb,
.video-wrapper.is-playing .video-play {
  display: none;
}

.vehicles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.vehicle-card {
  background: var(--color-dark-card);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.vehicle-card:hover {
  border-color: rgba(179, 134, 41, 0.3);
  transform: translateY(-3px);
}

.vehicle-card__image {
  height: 220px;
  overflow: hidden;
}

.vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.vehicle-card:hover .vehicle-card__image img {
  transform: scale(1.05);
}

.vehicle-card__content {
  padding: 1.5rem;
}

.vehicle-card__name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.vehicle-card__platform {
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.vehicle-card__desc {
  font-size: 1.1rem;
  color: var(--color-gray-400);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.vehicles__note {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-gray-600);
}

/* ===== FEATURES / AMENITIES ===== */
.features {
  background: var(--color-dark);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--color-dark-card);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(179, 134, 41, 0.3);
}

.feature-card__image {
  height: 200px;
  overflow: hidden;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.feature-card:hover .feature-card__image img {
  transform: scale(1.05);
}

.feature-card__content {
  padding: 1.5rem;
}

.feature-card__content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.feature-card__content p {
  font-size: 1.1rem;
  color: var(--color-gray-400);
  line-height: 1.65;
}

/* ===== PROBLEM AGITATION + SOLUTION ===== */
.problem {
  background: var(--color-black);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem__issues {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.problem__issue {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gray-400);
  font-size: 1.2rem;
}

.problem__issue svg {
  flex-shrink: 0;
  color: var(--color-red);
  opacity: 0.7;
}

.problem__solution {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-800);
}

.problem__solution h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.65rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.problem__solution p {
  font-size: 1.2rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.problem__future {
  color: var(--color-gray-300) !important;
  font-family: var(--font-heading);
  font-size: 1.35rem !important;
}

.problem__images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem__img-main {
  border-radius: var(--radius-md);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.problem__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.problem__img-grid img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ===== COMPETITIVE DIFFERENTIATION ===== */
.differentiation {
  background: var(--color-dark);
}

.differentiation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.differentiation__them,
.differentiation__us {
  padding: 2.5rem;
  border-radius: var(--radius-md);
}

.differentiation__them {
  background: var(--color-dark-card);
  border: 1px solid var(--color-gray-800);
}

.differentiation__us {
  background: rgba(179, 134, 41, 0.06);
  border: 1px solid rgba(179, 134, 41, 0.25);
}

.differentiation__them h3,
.differentiation__us h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.differentiation__them h3 {
  color: var(--color-gray-600);
}

.differentiation__us h3 {
  color: var(--color-gold);
}

.differentiation__them ul,
.differentiation__us ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.differentiation__them li,
.differentiation__us li {
  font-size: 1.15rem;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.differentiation__them li {
  color: var(--color-gray-600);
}

.differentiation__them li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--color-gray-700);
}

.differentiation__us li {
  color: var(--color-gray-300);
}

.differentiation__us li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* ===== ARMORING ===== */
.armoring {
  background: var(--color-black);
}

.armoring__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.armoring__images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.armoring__images img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.armoring__content p {
  font-size: 1.2rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.armoring__levels {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.armoring__level {
  flex: 1;
  background: var(--color-dark-card);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}

.armoring__level strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.armoring__level span {
  font-size: 0.95rem;
  color: var(--color-gray-600);
}

/* ===== 3-STEP PROCESS ===== */
.process {
  background: var(--color-dark);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process__step {
  text-align: center;
}

.process__image {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.process__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.process__text {
  font-size: 1.15rem;
  color: var(--color-gray-400);
  line-height: 1.65;
}

.process__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== STATS ===== */
.stats {
  background: var(--color-black);
  border-top: 1px solid var(--color-gray-800);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.stat-card__suffix {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--color-gold);
}

.stat-card__label {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: var(--section-padding) 0;
  text-align: center;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.final-cta__text {
  font-size: 1.3rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.final-cta__alt {
  margin-top: 1.5rem;
}

.final-cta__alt p {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  margin-bottom: 0.25rem;
}

.final-cta__alt a {
  color: var(--color-gold);
}

.final-cta__alt a:hover {
  color: var(--color-gold-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-dark);
  border-top: 1px solid var(--color-gray-800);
  padding-top: 3rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2rem;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.footer__logo img {
  height: 30px;
  width: auto;
}

.footer__tagline {
  font-size: 1rem;
  color: var(--color-gray-600);
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
}

.footer__nav a {
  font-size: 1.05rem;
  color: var(--color-gray-400);
}

.footer__nav a:hover {
  color: var(--color-gold);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: right;
}

.footer__contact a {
  font-size: 1.05rem;
  color: var(--color-gray-400);
}

.footer__contact a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid var(--color-gray-800);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

.footer__legal a:hover {
  color: var(--color-gray-400);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay--active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-dark);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-base);
}

.modal-overlay--active .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.75rem;
  color: var(--color-gray-600);
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal__close:hover {
  color: var(--color-white);
}

.modal__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.85rem;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.modal__subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-gray-900);
  border: 1px solid var(--color-gray-700);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-600);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--color-dark);
  color: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--color-red);
}

.form-error {
  display: block;
  font-size: 0.9rem;
  color: var(--color-red);
  margin-top: 0.35rem;
  min-height: 1rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.testimonials__grid .animate-on-scroll:nth-child(2),
.pillars__grid .animate-on-scroll:nth-child(2),
.vehicles__grid .animate-on-scroll:nth-child(2),
.features__grid .animate-on-scroll:nth-child(2),
.process__grid .animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.testimonials__grid .animate-on-scroll:nth-child(3),
.pillars__grid .animate-on-scroll:nth-child(3),
.vehicles__grid .animate-on-scroll:nth-child(3),
.features__grid .animate-on-scroll:nth-child(3),
.process__grid .animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.vehicles__grid .animate-on-scroll:nth-child(4),
.features__grid .animate-on-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

.vehicles__grid .animate-on-scroll:nth-child(5),
.features__grid .animate-on-scroll:nth-child(5) {
  transition-delay: 0.4s;
}

.vehicles__grid .animate-on-scroll:nth-child(6),
.features__grid .animate-on-scroll:nth-child(6) {
  transition-delay: 0.5s;
}

/* ===== THANK YOU PAGE ===== */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
}

.thankyou__inner {
  text-align: center;
  max-width: 550px;
}

.thankyou__icon {
  width: 64px;
  height: 64px;
  background: rgba(179, 134, 41, 0.1);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-gold);
}

.thankyou__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.thankyou__message {
  font-size: 1rem;
  color: var(--color-gray-400);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.thankyou__next {
  background: var(--color-dark-card);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.thankyou__next h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.thankyou__next ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.thankyou__next li {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .value-prop__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .value-prop__image img {
    height: 350px;
  }

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

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

  .problem__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .problem__images {
    order: -1;
  }

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

  .armoring__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__contact {
    text-align: left;
  }

  /* Header safeguards for tablet / small desktop */
  .header__nav {
    gap: 1.25rem;
  }

  .header__nav a:not(.btn):not(.header__phone) {
    display: none;
  }

  .header__logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
  }

  .header__phone {
    font-size: 0.9rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .trust-bar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 0.6rem 0;
  }

  .trust-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem 0.5rem;
    font-size: 0.85rem;
  }

  .trust-bar__text {
    font-size: 0.75rem;
  }

  .trust-bar__phone {
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .header {
    top: 40px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition-base);
    border-left: 1px solid var(--color-gray-800);
    z-index: 1000;
  }

  .header__nav--open {
    right: 0;
  }

  .header__nav a:not(.btn) {
    font-size: 1rem;
  }

  .header__nav .btn {
    width: 100%;
    margin-top: 1rem;
  }

  .hero__content {
    padding: 2rem 0 3rem;
    margin-top: 4rem;
  }

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

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

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

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

  .process__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .press__logos {
    gap: 2rem;
  }

  .press__item {
    flex: 0 0 auto;
  }

  .armoring__levels {
    flex-direction: column;
    gap: 0.75rem;
  }

  .modal {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.8rem;
  }

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

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