

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #050505;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.nv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nv-section {
  padding: 100px 0;
  position: relative;
}




.page-loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  color: #e42323;
  margin-bottom: 24px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #e42323, #ff6b6b);
  border-radius: 10px;
  animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
  to { width: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}




.section-header {
  max-width: 640px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(228, 35, 35, 0.15);
  border: 1px solid rgba(228, 35, 35, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ff6b6b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, #b3b3b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 1.7;
}




.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, #e42323, #b91c1c);
  border-color: #e42323;
  color: #fff;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff4b4b, #e42323);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(228, 35, 35, 0.4);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(228, 35, 35, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #f5f5f5;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #e42323;
  border-color: #fff;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}




.nv-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nv-header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}


.nv-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.nv-logo:hover {
  opacity: 0.85;
}

.nv-logo img {
  height: 44px;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: #a0a0a0;
  letter-spacing: 0.05em;
}


.nv-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  color: #c5c5c5;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e42323, #ff6b6b);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #fff;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(228, 35, 35, 0.5);
  color: #fff;
  background: rgba(228, 35, 35, 0.1);
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: #e42323;
  border-color: #e42323;
  box-shadow: 0 5px 20px rgba(228, 35, 35, 0.4);
}




.nv-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nv-burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nv-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nv-burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nv-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .logo-text {
    display: none;
  }

  .nv-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nv-nav.open {
    transform: translateX(0);
  }

  .nv-burger {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
  }
}




.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: #fff;
  overflow: hidden;
}


.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 35, 35, 0.4), transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.3), transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: -5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.2), transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

.shape-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 35, 35, 0.25), transparent 70%);
  top: 20%;
  right: 20%;
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}


.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.1) brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at top left, rgba(228, 35, 35, 0.25), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(139, 0, 0, 0.2), transparent 50%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.85) 50%, rgba(5, 5, 5, 0.98) 100%);
  z-index: 1;
}


.floating-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(228, 35, 35, 0.6);
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translateY(0) translateX(0); 
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { 
    transform: translateY(-100vh) translateX(50px); 
    opacity: 0;
  }
}


.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #d4d4d4;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: #e42323;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.title-line.highlight {
  background: linear-gradient(135deg, #ff6b6b, #e42323);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #b0b0b0;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #909090;
}

.hero-note svg {
  color: #e42323;
  flex-shrink: 0;
}


.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(228, 35, 35, 0.3);
  transform: translateX(-8px);
}

.badge-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 35, 35, 0.15);
  border-radius: 12px;
  color: #ff6b6b;
}

.badge-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b, #e42323);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-label {
  font-size: 0.85rem;
  color: #a0a0a0;
}


.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #707070;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: #e42323;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -30%; }
  100% { top: 100%; }
}




.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.animate-scale-in {
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}




.areas {
  background: 
    radial-gradient(ellipse at top center, rgba(228, 35, 35, 0.08), transparent 50%),
    radial-gradient(circle at bottom left, rgba(20, 20, 20, 1), transparent 60%),
    #080808;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-card {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(228, 35, 35, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.area-card:hover .card-glow {
  opacity: 1;
}

.area-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(228, 35, 35, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(228, 35, 35, 0.2), rgba(228, 35, 35, 0.05));
  border-radius: 16px;
  margin-bottom: 20px;
  color: #ff6b6b;
  transition: all 0.3s ease;
}

.area-card:hover .card-icon {
  background: linear-gradient(135deg, #e42323, #b91c1c);
  color: #fff;
  transform: scale(1.05);
}

.area-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.area-card p {
  font-size: 0.9rem;
  color: #909090;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ff6b6b;
  transition: all 0.3s ease;
}

.card-link svg {
  transition: transform 0.3s ease;
}

.card-link:hover {
  color: #fff;
}

.card-link:hover svg {
  transform: translateX(4px);
}




.vehicles-section {
  position: relative;
  background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
  overflow: hidden;
}

.vehicles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.vehicles-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.vehicles-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(228, 35, 35, 0.3), transparent 70%);
  top: -150px;
  right: -100px;
  animation: float 18s ease-in-out infinite;
}

.vehicles-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.25), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.vehicles-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  backdrop-filter: blur(20px);
}

.vehicles-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(228, 35, 35, 0.15);
  border: 1px solid rgba(228, 35, 35, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ff6b6b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.vehicles-tag svg {
  color: #e42323;
}

.vehicles-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, #c0c0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vehicles-info > p {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 28px;
}

.vehicles-features {
  list-style: none;
  margin-bottom: 32px;
}

.vehicles-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
  color: #d0d0d0;
}

.vehicles-features li:last-child {
  border-bottom: none;
}

.vehicles-features svg {
  color: #e42323;
  flex-shrink: 0;
}

.vehicles-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vehicles-icon-wrapper {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(228, 35, 35, 0.15), rgba(228, 35, 35, 0.05));
  border: 1px solid rgba(228, 35, 35, 0.2);
  border-radius: 50%;
  margin-bottom: 24px;
  color: #ff6b6b;
  animation: pulse 3s ease-in-out infinite;
}

.vehicles-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 1.8rem;
}

.badge-arrow {
  color: #e42323;
  font-weight: 700;
  animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}




.workflow {
  background: #050505;
  position: relative;
}

.workflow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline-line {
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(228, 35, 35, 0.3), rgba(228, 35, 35, 0.3), transparent);
}

.step-card {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.step-content {
  flex: 1;
}

.step-connector {
  margin-bottom: 24px;
}

.step-dot {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #0a0a0a;
  border: 2px solid rgba(228, 35, 35, 0.4);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.step-dot::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: #e42323;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.step-card:hover .step-dot {
  border-color: #e42323;
  box-shadow: 0 0 20px rgba(228, 35, 35, 0.4);
}

.step-card:hover .step-dot::after {
  transform: scale(1);
}

.step-content {
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.step-card:hover .step-content {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(228, 35, 35, 0.2);
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e42323;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.step-content p {
  font-size: 0.9rem;
  color: #909090;
  line-height: 1.7;
}




.cta {
  position: relative;
  background: linear-gradient(135deg, #0f0f0f 0%, #1c0505 60%, #0f0f0f 100%);
  border-top: 1px solid rgba(228, 35, 35, 0.1);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
  animation: float 12s ease-in-out infinite reverse;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: #fff;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}




.nv-footer {
  position: relative;
  background: #000;
  color: #a0a0a0;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(228, 35, 35, 0.15), transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}


.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 50px;
  border-radius: 10px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.footer-logo-subtitle {
  font-size: 0.7rem;
  color: #707070;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}


.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 100%;
  margin: 0 auto;
}

.footer-social .social-link {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #909090;
  transition: all 0.3s ease;
  padding: 0;
  line-height: 1;
  margin-bottom: 0;
}

.footer-social .social-link svg {
  display: block;
  width: 20px;
  height: 20px;
}

.footer-social .social-link:hover {
  background: #e42323;
  border-color: #e42323;
  color: #fff;
  transform: translateY(-3px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand .footer-logo-wrapper {
  justify-content: center;
}


.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  color: #808080;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col p strong {
  color: #c0c0c0;
}


.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #606060;
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #606060;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}




.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.areas-grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.areas-grid .reveal:nth-child(2) { transition-delay: 0.2s; }
.areas-grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.areas-grid .reveal:nth-child(4) { transition-delay: 0.4s; }

.workflow-timeline .reveal:nth-child(2) { transition-delay: 0.1s; }
.workflow-timeline .reveal:nth-child(3) { transition-delay: 0.2s; }
.workflow-timeline .reveal:nth-child(4) { transition-delay: 0.3s; }
.workflow-timeline .reveal:nth-child(5) { transition-delay: 0.4s; }




@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .badge {
    flex: 1;
    min-width: 200px;
  }

  .badge:hover {
    transform: translateY(-5px);
  }

  .areas-grid,
  .workflow-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-line {
    display: none;
  }

  .vehicles-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 30px;
  }

  .vehicles-info {
    order: 2;
  }

  .vehicles-visual {
    order: 1;
    margin-bottom: 20px;
  }

  .vehicles-features li {
    justify-content: center;
  }

  .vehicles-info .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nv-section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .areas-grid,
  .workflow-timeline {
    grid-template-columns: 1fr;
  }

  .vehicles-info h2 {
    font-size: 1.8rem;
  }

  .vehicles-icon-wrapper {
    width: 150px;
    height: 150px;
  }

  .vehicles-icon-wrapper svg {
    width: 80px;
    height: 80px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-wrapper {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .nv-section {
    padding: 50px 0;
  }

  .nv-container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .badge {
    min-width: 100%;
  }

  .vehicles-content {
    padding: 30px 20px;
  }

  .vehicles-info h2 {
    font-size: 1.5rem;
  }

  .vehicles-info p {
    font-size: 0.9rem;
  }

  .vehicles-badge {
    font-size: 1.4rem;
    padding: 12px 20px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .nv-footer {
    padding-top: 40px;
  }
}

@media (max-width: 360px) {
  .nv-container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .hero-note {
    font-size: 0.8rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.85rem;
  }

  .badge-number {
    font-size: 1.6rem;
  }

  .badge-label {
    font-size: 0.75rem;
  }

  .vehicles-content {
    padding: 24px 14px;
  }

  .vehicles-info h2 {
    font-size: 1.3rem;
  }

  .vehicles-badge {
    font-size: 1.1rem;
    padding: 10px 14px;
    gap: 10px;
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }

  .step-content {
    padding: 20px 16px;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .area-card {
    padding: 24px 18px;
  }
}
.footer-created-by {
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #707070;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: -10px;
}

.footer-created-by strong {
  color: #ffffff;
  font-weight: 600;
}
