/* ============================================
   AMTEC MOTORS — LANDING PAGE (SITE IN DEVELOPMENT)
   ============================================ */

:root{
  --red: #E8432C;
  --blue-light: #3F9BDE;
  --blue: #1A56C4;
  --blue-dark: #123E90;
  --black: #16181D;
  --navy: #0B0F1A;
  --gray-50: #F5F7FA;
  --gray-100: #EEF1F5;
  --gray-200: #E2E6EC;
  --gray-400: #9AA3B2;
  --text: #1A1F29;
  --text-muted: #5C6577;
  --amber: #E8A23C;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 20px 50px rgba(16, 24, 40, 0.18);
  --max-width: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }
.container{ max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---------- Dev banner ---------- */
.dev-banner{
  background: linear-gradient(90deg, var(--black), var(--navy));
  color: #fff;
  font-size: 13.5px;
  padding: 9px 16px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 2px solid var(--amber);
}
.dev-banner-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.dev-banner strong{ color: var(--amber); }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 36px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.header-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link{ display: flex; align-items: center; flex-shrink: 0; }
.logo-img{ height: 100px; width: auto; }

.main-nav{
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.nav-link{
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--text);
  padding: 8px 2px;
  position: relative;
  transition: color .2s;
}
.nav-link:hover{ color: var(--blue); }
.nav-link.active{ color: var(--blue); }
.nav-link.active::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -13px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.header-actions{ display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .3px;
  padding: 11px 20px;
  border-radius: 7px;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary{ background: var(--blue); color: #fff; }
.btn-primary:hover{ background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(26,86,196,.3); }
.btn-ghost{ background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.btn-ghost:hover{ background: rgba(255,255,255,.22); }
.btn-dark{ background: var(--black); color: #fff; }
.btn-dark:hover{ background: #000; }
.btn-lg{ padding: 14px 26px; font-size: 14.5px; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span{
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides{ position: absolute; inset: 0; }
.hero-slide{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active{ opacity: 1; }
.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,15,26,.92) 10%, rgba(11,15,26,.72) 45%, rgba(11,15,26,.35) 75%, rgba(11,15,26,.15) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px 90px;
  color: #fff;
}
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,162,60,.15);
  border: 1px solid var(--amber);
  color: var(--amber);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .6px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-content h1{
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: -.5px;
  max-width: 640px;
}
.text-blue{ color: #6CB2F2; }
.hero-content p{
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 0 34px;
}
.hero-cta-row{ display: flex; gap: 16px; flex-wrap: wrap; }

.hero-arrow{
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background .2s;
}
.hero-arrow:hover{ background: rgba(255,255,255,.28); }
.hero-arrow-left{ left: 24px; }
.hero-arrow-right{ right: 24px; }

.hero-dots{
  position: absolute;
  bottom: 26px; left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.hero-dot{
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: all .25s;
}
.hero-dot.active{ background: var(--blue-light); width: 26px; border-radius: 5px; }

/* ---------- Section headers ---------- */
.eyebrow{
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  margin: 0 0 8px;
}
.section-title{
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.3px;
  margin: 0;
}
.section-title.small-title{ text-align: left; font-size: 24px; }
.title-underline{
  width: 60px; height: 4px;
  background: var(--blue);
  border-radius: 3px;
  margin: 18px auto 0;
}
.title-underline.left{ margin: 14px 0 32px; }

/* ---------- Vehicles ---------- */
.vehicles{ padding: 80px 0 70px; background: #fff; }
.brand-filters{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0 42px;
}
.filter-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 7px;
  border: 1.5px solid var(--gray-200);
  background: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  color: var(--text);
  transition: all .2s;
}
.filter-btn:hover{ border-color: var(--blue); color: var(--blue); }
.filter-btn.active{ background: var(--blue); border-color: var(--blue); color: #fff; }
.filter-dot{ width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.nissan-dot{ background: var(--red); }
.mazda-dot{ background: var(--blue); }
.filter-btn.active .filter-dot{ background: #fff; }

.vehicle-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vehicle-card{
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.vehicle-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vehicle-card.hidden-card{ display: none; }
.vehicle-img-wrap{
  height: 190px;
  background: linear-gradient(180deg, #EEF2F7 0%, #E3E9F1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}
.vehicle-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  mix-blend-mode: multiply;
}
.vehicle-info{ padding: 16px 18px 20px; }
.vehicle-brand{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.vehicle-info h3{
  margin: 4px 0 2px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .2px;
}
.vehicle-info p{ margin: 0; color: var(--text-muted); font-size: 14px; }

.vehicle-note{
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin: 38px 0 0;
}

/* ---------- Why + Journey ---------- */
.why-journey{ background: var(--gray-50); padding: 74px 0; }
.two-col{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
}
.feature-list{ display: flex; flex-direction: column; gap: 26px; }
.feature-item{ display: flex; gap: 16px; align-items: flex-start; }
.feature-icon{
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg{ width: 20px; height: 20px; }
.feature-item h4{ margin: 0 0 4px; font-size: 16px; font-weight: 700; }
.feature-item p{ margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.55; }

.journey-col{
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 34px 32px;
}
.journey-steps{
  display: flex;
  align-items: center;
  margin: 6px 0 26px;
}
.journey-step{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.journey-step span{ font-size: 12.5px; font-weight: 700; color: var(--text-muted); white-space: nowrap; }
.journey-step.done span,
.journey-step.active span{ color: var(--text); }
.journey-circle{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  font-size: 15px;
  background: #fff;
}
.journey-step.done .journey-circle{ background: var(--blue); border-color: var(--blue); color: #fff; }
.journey-step.active .journey-circle{ border-color: var(--blue); color: var(--blue); }
.spin-icon{ animation: spin 3.5s linear infinite; display: inline-block; }
@keyframes spin{ to{ transform: rotate(360deg); } }

.journey-line{
  flex: 1;
  height: 3px;
  background: var(--gray-200);
  margin: 0 6px 20px;
  border-radius: 2px;
}
.journey-line.done{ background: var(--blue); }
.journey-line.active{ background: linear-gradient(90deg, var(--blue) 60%, var(--gray-200) 60%); }

.progress-bar-wrap{ display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.progress-bar{ flex: 1; height: 9px; background: var(--gray-200); border-radius: 6px; overflow: hidden; }
.progress-fill{ height: 100%; background: linear-gradient(90deg, var(--blue-light), var(--blue)); border-radius: 6px; transition: width 1.4s cubic-bezier(.2,.8,.2,1); }
.progress-pct{ font-weight: 800; color: var(--blue); font-size: 14px; min-width: 40px; text-align: right; }

.journey-status{ margin: 0 0 8px; font-size: 17px; font-weight: 800; }
.journey-col > p{ margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- Newsletter ---------- */
.newsletter{ background: linear-gradient(90deg, var(--blue-dark), var(--blue)); padding: 46px 0 14px; }
.newsletter-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 26px;
}
.newsletter-text{ display: flex; align-items: center; gap: 18px; color: #fff; }
.newsletter-icon{
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.newsletter-icon svg{ width: 24px; height: 24px; color: #fff; }
.newsletter-text h3{ margin: 0 0 4px; font-size: 19px; letter-spacing: .3px; }
.newsletter-text p{ margin: 0; color: rgba(255,255,255,.85); font-size: 14px; max-width: 420px; }

.newsletter-form{ display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input{
  padding: 13px 16px;
  border-radius: 7px;
  border: none;
  font-size: 14px;
  width: 300px;
  max-width: 100%;
  font-family: inherit;
}
.newsletter-form input:focus{ outline: 3px solid rgba(255,255,255,.5); }

.newsletter-fineprint{
  text-align: center;
  color: rgba(255,255,255,.65);
  font-size: 12.5px;
  margin: 0;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 16px;
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy); color: rgba(255,255,255,.75); padding: 56px 0 0; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-logo{ height: 70px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p{ font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.6); max-width: 260px; }
.social-row{ display: flex; gap: 10px; margin-top: 16px; }
.social-icon{
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.social-icon svg{ width: 15px; height: 15px; color: #fff; }
.social-icon:hover{ background: var(--blue); }

.footer-col h5{
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 1px;
  margin: 4px 0 18px;
}
.footer-col a{
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  margin-bottom: 12px;
  transition: color .2s;
}
.footer-col a:hover{ color: #fff; }
.contact-line{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  margin: 0 0 14px;
  line-height: 1.5;
}
.contact-line svg{ flex-shrink: 0; margin-top: 2px; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.footer-bottom-links{ display: flex; gap: 10px; align-items: center; }
.footer-bottom-links a{ color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover{ color: #fff; }

/* ---------- Toast ---------- */
.toast{
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: #fff;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
  max-width: 90%;
  text-align: center;
}
.toast.show{ opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .two-col{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .vehicle-grid{ grid-template-columns: repeat(2, 1fr); }
  .hero-content h1{ font-size: 42px; }
}

@media (max-width: 760px){
  .main-nav{
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 22px;
    transition: right .3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.15);
    z-index: 55;
  }
  .main-nav.open{ right: 0; }
  .nav-toggle{ display: flex; }
  .header-actions .btn-primary span{ display: none; }
  .btn-primary{ padding: 10px 14px; }

  .hero{ min-height: 560px; }
  .hero-content h1{ font-size: 32px; }
  .hero-content p{ font-size: 14.5px; }
  .hero-arrow{ width: 36px; height: 36px; }

  .vehicle-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .newsletter-inner{ flex-direction: column; align-items: flex-start; }
  .newsletter-form{ width: 100%; }
  .newsletter-form input{ width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .hero-slide, .progress-fill, .spin-icon, .btn, .vehicle-card{ transition: none !important; animation: none !important; }
}