/* ===== Major-style Axsel Landing ===== */
/* White theme, dark navy blue accents */

:root {
  --navy: #1b457d;
  --navy-dark: #153a6a;
  --navy-light: #447fcf;
  --white: #ffffff;
  --bg: #eaeeef;
  --bg-light: #f2f2f2;
  --text: #000000;
  --text-light: #414141;
  --red: #e8192c;
  --red-dark: #c41422;
  --green: #2a8c4a;
  --gold: #f69639;
  --border: #d8d8d9;
  --shadow: 0 2px 12px rgba(27, 69, 125, 0.06);
  --shadow-lg: 0 8px 32px rgba(27, 69, 125, 0.1);
  --radius: 5px;
  --radius-lg: 10px;
  --container: 1424px;
  --footer-bg: #424648;
  --gray-gradient: linear-gradient(90deg, #5b6672 0%, #8d98a5 50%, #5b6672 100%);
  --navy-gradient: linear-gradient(90deg, #1b457d 0%, #447fcf 50%, #1b457d 100%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
html,
body {
  max-width: 100vw;
}

body {
  font-family:
    'Axsel Uni Type',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button,
input,
select {
  font: inherit;
  border: none;
  outline: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS (Major-style) ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: inherit;
  cursor: pointer;
  transition: 0.5s;
  border: 1px solid var(--navy);
  font-family: inherit;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-primary:active {
  transform: scale(0.97);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: inherit;
  cursor: pointer;
  transition: 0.5s;
  border: 1px solid var(--navy);
  font-family: inherit;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-callback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.btn-callback:hover {
  background: var(--navy-dark);
}

/* ===== HEADER ===== */
.header {
  position: relative;
  z-index: 100;
  background: var(--white);
  height: 72px;
}
.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  max-width: none;
  width: 100%;
}
.header.scrolled {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  align-self: center;
}
.logo-axsel {
  height: 40px;
  width: auto;
  margin-bottom: 3px;
}

/* ===== NAV BAR (separate row) ===== */
.nav-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg);
}
.nav-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  min-height: 40px;
  padding: 6px 0;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--navy);
}

.header-phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  line-height: 1.2;
}
.header-phone:hover {
  color: var(--navy);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  align-self: center;
}

.burger {
  display: none;
  background: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  align-self: center;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: 0.3s;
}
.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2) {
  top: 9px;
}
.burger span:nth-child(3) {
  top: 18px;
}
.burger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 24px 20px;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.active {
  display: flex;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 16px 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--light-gray);
  padding: 100px 0 120px;
  min-height: 75vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-promo {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 24px;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.hero-title {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.hero-title .highlight {
  color: var(--white);
  font-weight: 800;
}
.hero-badges {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}
.btn-hero {
  font-size: 16px;
  padding: 16px 40px;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 5px;
}

/* ===== TIMER STRIP (megatimer flipchart) ===== */
.timer-strip {
  background: #1b457d;
  padding: 20px 0;
}
.timer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.timer-heading {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.timer-countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.timer-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.flip-digits {
  display: flex;
  gap: 4px;
  align-items: center;
}

/* --- Flipchart card (4-face architecture) --- */
.fc-card {
  display: block;
  position: relative;
  width: 40px;
  height: 54px;
}
.fc-bounding {
  display: block;
  visibility: hidden;
  width: 40px;
  height: 54px;
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 54px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.fc-face {
  color: #000;
  background-color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  line-height: 54px;
  font-variant-numeric: tabular-nums;
}

/* front = top half, shows OLD value, flips down */
.fc-front {
  transform: perspective(300px) rotateX(0);
  top: 0;
  height: 27px;
  transform-origin: center bottom;
  z-index: 5;
}
/* back = bottom half, shows NEW value, starts flipped up */
.fc-back {
  transform: perspective(300px) rotateX(180deg);
  top: 27px;
  height: 27px;
  transform-origin: center top;
  z-index: 4;
  line-height: 0;
}
/* top = top half, shows NEW value, static behind front */
.fc-top {
  top: 0;
  height: 27px;
  overflow: hidden;
}
/* bottom = bottom half, shows OLD value, static behind back */
.fc-bottom {
  top: 27px;
  height: 27px;
  overflow: hidden;
  line-height: 0;
}

/* Rounded corners per half */
.fc-top,
.fc-front {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-bottom,
.fc-back {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* Split line (::before) */
.fc-face::before {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  content: '';
}
.fc-top::before,
.fc-front::before {
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.fc-bottom::before,
.fc-back::before {
  top: 0;
  background-color: rgba(0, 0, 0, 0.06);
}

/* Shadow overlays (::after) */
.fc-front::after,
.fc-bottom::after,
.fc-top::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: '';
}
.fc-top::after {
  background: linear-gradient(to top, #000 0, transparent 100%);
}
.fc-bottom::after {
  opacity: 0;
  background: linear-gradient(to bottom, #000 25%, rgba(0, 0, 0, 0.4) 100%);
}
.fc-front::after {
  opacity: 0;
  background: linear-gradient(to top, #000 25%, rgba(0, 0, 0, 0.4) 100%);
}

/* --- Keyframes --- */
@keyframes fc-front-flip {
  0% {
    transform: perspective(300px) rotateX(0);
  }
  100% {
    transform: perspective(300px) rotateX(-180deg);
  }
}
@keyframes fc-back-flip {
  0% {
    transform: perspective(300px) rotateX(180deg);
  }
  100% {
    transform: perspective(300px) rotateX(0);
  }
}
@keyframes fc-shadow-in {
  20% {
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fc-shadow-in-direct {
  10% {
    opacity: 0;
  }
  50% {
    opacity: 0.25;
  }
  50.1% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fc-shadow-out {
  15% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Animate class triggers */
.fc-animate .fc-front {
  animation-name: fc-front-flip;
}
.fc-animate .fc-back {
  animation-name: fc-back-flip;
}
.fc-animate .fc-top::after {
  animation-name: fc-shadow-out;
}
.fc-animate .fc-bottom::after {
  animation-name: fc-shadow-in;
}
.fc-animate .fc-front::after {
  animation-name: fc-shadow-in-direct;
}

/* Animation timing for all animated elements */
.fc-front,
.fc-back,
.fc-front::after,
.fc-bottom::after,
.fc-top::after {
  animation-iteration-count: 1;
  animation-duration: 750ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.flip-sep {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 4px;
  line-height: 54px;
  padding-bottom: 18px;
}
.timer-group small {
  font-size: 12px;
  color: #fff;
  margin-top: 4px;
  font-family: 'Roboto', sans-serif;
}
.btn-timer-white {
  background: #fff;
  color: #000;
  border: none;
  padding: 14px 36px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}
.btn-timer-white:hover {
  opacity: 0.85;
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--bg);
  overflow: hidden;
  padding: 10px 0;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll-marquee 25s linear infinite;
}
.marquee-track span {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  padding: 0 12px;
}
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== SECTION COMMON ===== */
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 40px;
}

/* ===== MODEL TABS ===== */
.models {
  padding: 60px 0;
}
.model-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 8px;
  margin: 40px 0 32px;
  padding: 0 20px 24px;
}
.model-tabs::-webkit-scrollbar {
  display: none;
}
.model-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all 0.2s;
  min-width: 100px;
  flex-shrink: 0;
}
.model-tab img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.model-tab span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}
.model-tab:hover {
  border-color: var(--navy);
}
.model-tab.active {
  border-color: var(--navy);
  background: var(--bg-light);
}
.model-tab.active span {
  color: var(--navy);
}

/* ===== MODEL CARDS ===== */
.model-card {
  display: none;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.model-card.active {
  display: flex;
}
.model-card-slider {
  flex: 1;
  min-width: 0;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}
.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.slider-slide.active {
  opacity: 1;
  z-index: 1;
}
.slider-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition:
    background 0.2s,
    transform 0.2s;
  color: var(--text);
}
.slider-arrow:hover {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.slider-prev {
  left: 10px;
}
.slider-next {
  right: 10px;
}
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.slider-dot.active {
  background: var(--white);
  transform: scale(1.25);
}
.model-card-info {
  flex: 1;
  min-width: 0;
  padding: 40px;
}
.model-card-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.model-card-name span {
  color: var(--navy);
}
.model-card-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tag {
  display: inline-block;
  padding: 11px 24px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.tag-date {
  background: var(--gray-gradient);
}
.tag-benefit {
  background: var(--navy-gradient);
}

.model-benefits {
  margin-bottom: 24px;
}
.model-benefits li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--bg);
  position: relative;
  padding-left: 20px;
}
.model-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.model-benefits li strong {
  color: var(--navy);
}

.model-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== STEPS (HOW TO ORDER) ===== */
.steps {
  padding: 60px 0;
  background: var(--white);
}
.steps-timeline {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 32px;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--border));
}
.step-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 24px;
}
.step-item:last-child {
  padding-bottom: 0;
}
.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.step-content {
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  transition:
    background 0.2s,
    transform 0.2s;
}
.step-item:hover .step-content {
  background: #eef3fb;
  transform: translateX(8px);
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.step-image {
  margin-top: 10px;
  text-align: center;
}
.step-image img {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.steps-cta {
  text-align: center;
  margin-top: 32px;
}
@media (min-width: 480px) {
  .steps-timeline::before {
    left: 24px;
  }
  .step-item {
    padding-left: 70px;
    padding-bottom: 32px;
  }
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .step-content {
    padding: 20px 24px;
  }
  .step-title {
    font-size: 17px;
  }
  .step-desc {
    font-size: 14px;
  }
  .step-image img {
    max-width: 280px;
  }
}
@media (min-width: 768px) {
  .steps-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .step-item {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 0;
    align-items: center;
    padding-left: 0;
    padding-bottom: 40px;
  }
  .step-item .step-number {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    z-index: 2;
  }
  .step-item .step-content {
    grid-column: 1;
    grid-row: 1;
    margin-right: 20px;
    text-align: right;
  }
  .step-item .step-image {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
    margin-left: 20px;
    text-align: left;
  }
  .step-item .step-image img {
    max-height: 180px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
  }
  .step-item:nth-child(even) .step-content {
    grid-column: 3;
    text-align: left;
    margin-right: 0;
    margin-left: 20px;
  }
  .step-item:nth-child(even) .step-image {
    grid-column: 1;
    margin-left: 0;
    margin-right: 20px;
    display: flex;
    justify-content: flex-end;
  }
  .step-item:hover .step-content {
    transform: translateX(-8px);
  }
  .step-item:nth-child(even):hover .step-content {
    transform: translateX(8px);
  }
}

/* ===== 5 REASONS ===== */
.reasons {
  padding: 60px 0;
  background: var(--bg);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.reason-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.reason-card.featured {
}
.reason-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.reason-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--navy);
}
.reason-icon svg {
  width: 100%;
  height: 100%;
}
.reason-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.reason-card p {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== STOCK ===== */
.stock {
  padding: 60px 0 20px;
}
.stock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.stock-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.stock-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.stock-img {
  position: relative;
  background: var(--bg-light);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}
.stock-img img {
  max-height: 140px;
  object-fit: contain;
}
.stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}
.stock-card h3 {
  font-size: 16px;
  font-weight: 700;
  padding: 16px 16px 4px;
}
.stock-spec {
  font-size: 13px;
  color: var(--text-light);
  padding: 0 16px;
}
.stock-vin {
  font-size: 12px;
  color: var(--text-light);
  padding: 4px 16px;
  opacity: 0.7;
}
.stock-price {
  padding: 12px 16px 0;
  font-size: 14px;
  color: var(--text-light);
}
.stock-price strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  display: block;
}
.stock-cta {
  width: calc(100% - 32px);
  margin: 12px 16px 16px;
  padding: 12px;
  font-size: 14px;
}

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

/* ===== TEST DRIVE ===== */
.testdrive {
  padding: 20px 0 52px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.testdrive .container {
  text-align: center;
}
.testdrive .section-title {
  margin-bottom: 14px;
}
.testdrive-text {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
}
.testdrive-cta {
  margin-left: auto;
  margin-right: auto;
}

/* ===== CREDIT ===== */
.credit {
  background: var(--navy);
  position: relative;
  overflow: visible;
  padding: 40px 0 0;
}
.credit-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  min-height: 300px;
}
.credit-content {
  max-width: 420px;
  position: relative;
  z-index: 2;
  padding: 20px 0;
}
.credit-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.credit-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  line-height: 1.5;
}
.credit-subtitle strong {
  color: var(--white);
  font-weight: 700;
}
.credit-form input[type='tel'] {
  width: 100%;
  max-width: 360px;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
  margin-bottom: 10px;
}
.credit-form input[type='tel']::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.credit-form input[type='tel']:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}
.credit-submit {
  display: block;
  width: 100%;
  max-width: 360px;
  padding: 14px 18px;
  background: var(--text);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.5px;
  transition: background 0.3s;
  margin-bottom: 12px;
}
.credit-submit:hover {
  background: #333;
}
.credit-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  max-width: 360px;
}
.credit-consent input[type='checkbox'] {
  margin-top: 2px;
  accent-color: var(--white);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.credit-consent span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.credit-consent a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.credit-image {
  position: absolute;
  right: 24px;
  bottom: -20px;
  width: 55%;
  max-width: 560px;
  z-index: 1;
  pointer-events: none;
}
.credit-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== TRADE-IN ===== */
.tradein {
  background: var(--white);
  position: relative;
  padding: 60px 0 64px;
  overflow: visible;
}
.tradein-inner {
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  min-height: 440px;
}
.tradein-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.tradein-image img {
  display: block;
  height: 320px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.tradein-card {
  flex: 0 0 340px;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  margin: 40px 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.tradein-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.tradein-subtitle {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.5;
}
.tradein-subtitle strong {
  font-weight: 700;
}
.tradein-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tradein-form select,
.tradein-form input[type='text'],
.tradein-form input[type='tel'] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background: var(--white);
  cursor: pointer;
  appearance: auto;
  font-family: inherit;
  color: var(--text);
}
.tradein-form select:focus,
.tradein-form input:focus {
  border-color: var(--navy);
  outline: none;
}
.tradein-submit {
  width: 100%;
  padding: 16px 20px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s;
}
.tradein-submit:hover {
  background: #163a6b;
}
.tradein-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.tradein-consent input[type='checkbox'] {
  margin-top: 2px;
  accent-color: var(--navy);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.tradein-consent span {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}
.tradein-consent a {
  color: var(--navy);
  text-decoration: underline;
}
.tradein-image-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.tradein-image-right img {
  display: block;
  height: 320px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ===== CTA (removed) ===== */

/* ===== CONTACTS ===== */
.contacts {
  position: relative;
  background: var(--white);
  min-height: 500px;
  padding-top: 0;
}
.contacts #map {
  width: 100%;
  height: 500px;
  background: var(--bg);
}
.contacts-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc((100% - 1200px) / 2 + 24px);
  z-index: 10;
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  width: 100%;
}
.contacts-card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}
.contacts-card-row {
  margin-bottom: 14px;
}
.contacts-card-row strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.contacts-card-row p {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 2px;
}
.contact-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.contacts-vk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.contacts-vk-icon {
  flex-shrink: 0;
  display: block;
}
.contacts-vk-label {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contacts-vk:hover {
  color: var(--navy-dark);
}
.route-btn {
  margin-top: 16px;
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 1;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-logo-axsel {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 3px;
}
.footer-brand p {
  font-size: 14px;
  opacity: 0.7;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-contact a {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.footer-contact p {
  font-size: 14px;
  opacity: 0.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.footer-bottom p {
  font-size: 13px;
  opacity: 0.5;
}
.disclaimer {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.45;
}
.footer-bottom p.disclaimer {
  opacity: 0.85;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 90%;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}
.modal-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.modal-box p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.modal-box input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  margin-bottom: 12px;
}
.modal-box .btn-primary {
  width: 100%;
}
.modal-success {
  text-align: center;
}
.success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 16px;
}

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

/* --- Tablet landscape --- */
@media (max-width: 1280px) {
  .contacts-card {
    left: 40px;
  }
}

/* --- Tablet --- */
@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }
  .nav-bar {
    display: none;
  }
  .mobile-menu {
    top: 72px;
  }
  .burger {
    display: block;
  }
  .header-phone {
    display: none;
  }
  .header-right {
    display: none;
  }
  .header-inner {
    gap: 12px;
  }

  .hero {
    padding: 60px 0 80px;
    min-height: 460px;
  }
  .hero-content {
    max-width: 420px;
  }
  .hero-promo {
    font-size: clamp(17px, 2.4vw, 22px);
    padding: 10px 22px;
  }

  .model-card {
    flex-direction: column;
    padding: 0;
  }
  .model-card-slider {
    min-height: 240px;
  }
  .slider-track {
    aspect-ratio: 16/10;
  }
  .model-card-info {
    padding: 32px 24px;
  }

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

  .credit-inner {
    min-height: 280px;
  }
  .credit-image {
    width: 50%;
    right: 16px;
  }
  .credit-form input[type='tel'],
  .credit-submit,
  .credit-consent {
    max-width: 100%;
  }

  .tradein {
    padding: 60px 0;
  }
  .tradein-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    border-radius: 0;
  }
  .tradein-image {
    justify-content: flex-start;
    padding-left: 0;
  }
  .tradein-image img {
    height: 240px;
  }
  .tradein-card {
    margin: 0;
    border-radius: 0;
    flex: unset;
    align-self: stretch;
  }
  .tradein-image-right {
    display: none;
  }

  .contacts-card {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 280px;
    padding: 24px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
}

/* --- Mobile landscape / large phone --- */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .header {
    height: 60px;
  }
  .header-inner {
    min-height: 60px;
    max-width: 100%;
    padding: 0 16px;
  }
  .logo-axsel {
    height: 26px;
  }
  .mobile-menu {
    top: 60px;
  }

  .hero {
    padding: 40px 0 80px;
    min-height: 380px;
  }
  .hero-content {
    max-width: 340px;
  }
  .hero-title {
    font-size: 22px;
  }
  .hero-promo {
    font-size: clamp(16px, 4.2vw, 20px);
    padding: 10px 20px;
  }
  .hero-badges {
    gap: 8px;
  }
  .btn-hero {
    font-size: 14px;
    padding: 14px 28px;
  }

  .marquee-track span {
    font-size: 13px;
  }

  .timer-heading {
    font-size: 16px;
  }
  .timer-countdown {
    transform: scale(0.8);
    transform-origin: center;
  }
  .btn-timer-white {
    font-size: 14px;
    padding: 12px 28px;
  }

  .section-title {
    margin-bottom: 8px;
  }
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .reasons {
    padding: 40px 0;
  }
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
  .reason-card {
    padding: 20px 16px;
  }
  .reason-icon {
    width: 40px;
    height: 40px;
  }
  .reason-card h3 {
    font-size: 14px;
  }
  .reason-card p {
    font-size: 12px;
  }

  .stock {
    padding: 40px 0 16px;
  }
  .stock-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stock-img {
    height: 150px;
    padding: 16px;
  }
  .stock-img img {
    max-height: 110px;
  }
  .stock-card h3 {
    font-size: 15px;
    padding: 12px 12px 4px;
  }
  .stock-price {
    padding: 8px 12px 0;
    font-size: 13px;
  }
  .stock-price strong {
    font-size: 18px;
  }
  .stock-cta {
    margin: 8px 12px 12px;
    padding: 10px;
    font-size: 13px;
  }

  .testdrive {
    padding: 16px 0 36px;
  }
  .testdrive-text {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .credit {
    padding: 32px 0 0;
  }
  .credit-title {
    font-size: 26px;
  }
  .credit-subtitle {
    font-size: 14px;
  }
  .credit-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    pointer-events: auto;
  }
  .credit-image img {
    max-width: 70%;
    margin: 0 auto;
  }

  .models {
    padding: 40px 0;
  }
  .model-tabs {
    gap: 4px;
    margin: 24px 0 20px;
    padding-bottom: 16px;
  }
  .model-tab {
    min-width: 70px;
    padding: 8px;
  }
  .model-tab img {
    height: 32px;
  }
  .model-tab span {
    font-size: 10px;
  }
  .model-card-info {
    padding: 24px 20px;
  }
  .model-card-name {
    font-size: 24px;
  }
  .slider-arrow {
    width: 32px;
    height: 32px;
  }
  .slider-arrow svg {
    width: 16px;
    height: 16px;
  }

  .tradein {
    padding: 40px 0;
  }
  .tradein-image img {
    height: 200px;
  }
  .tradein-card {
    padding: 28px 20px;
  }
  .tradein-title {
    font-size: 24px;
  }
  .tradein-subtitle {
    font-size: 15px;
  }

  .contacts {
    padding-top: 0;
    min-height: 440px;
  }
  .contacts #map {
    height: 440px;
  }
  .contacts-card {
    max-width: 260px;
    padding: 20px 16px;
  }
  .contacts-card-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .footer {
    padding: 32px 0 20px;
  }
}

/* --- Phone --- */
@media (max-width: 480px) {
  .hero {
    padding: 32px 0 60px;
    min-height: 320px;
  }
  .hero-content {
    max-width: 280px;
  }
  .hero-title {
    font-size: 20px;
  }
  .hero-promo {
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 20px;
  }

  .timer-countdown {
    transform: scale(0.7);
  }
  .timer-heading {
    font-size: 14px;
  }

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

  .stock-grid {
    grid-template-columns: 1fr;
  }
  .stock-img {
    height: 180px;
  }
  .stock-img img {
    max-height: 140px;
  }

  .credit-title {
    font-size: 22px;
  }
  .credit-subtitle {
    font-size: 13px;
  }
  .credit-image img {
    max-width: 85%;
  }

  .model-card-name {
    font-size: 22px;
  }
  .model-card-actions {
    flex-direction: column;
  }
  .model-card-actions .btn-primary,
  .model-card-actions .btn-outline {
    width: 100%;
  }
  .model-card-info {
    padding: 20px 16px;
  }
  .tag {
    padding: 8px 16px;
    font-size: 13px;
  }

  .tradein-image img {
    height: 180px;
  }
  .tradein-card {
    padding: 24px 16px;
  }
  .tradein-title {
    font-size: 22px;
  }
  .tradein-form select,
  .tradein-form input[type='text'],
  .tradein-form input[type='tel'] {
    padding: 12px 14px;
    font-size: 14px;
  }
  .tradein-submit {
    padding: 14px;
    font-size: 15px;
  }

  .contacts {
    padding-top: 0;
    min-height: auto;
  }
  .contacts #map {
    height: 350px;
  }
  .contacts-card {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--border);
  }

  .footer-top {
    gap: 20px;
  }
  .footer-brand {
    flex: unset;
  }
  .footer-contact a {
    font-size: 15px;
  }
  .footer-bottom p {
    font-size: 12px;
  }
  .disclaimer {
    font-size: 10px;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 14px;
  }
  .btn-callback {
    padding: 10px 16px;
    font-size: 13px;
  }
  .modal-box {
    padding: 28px 20px;
  }
  .modal-box h3 {
    font-size: 20px;
  }
}
