:root {
  --bg-dark: #262424;
  --bg-soft: #2d2d2d;
  --bg-white: #FFFFFF;

  --text-main: #FFFFFF;
  --text-muted: #A0A0A0;

  --accent-red: #E53935;
  --accent-green: #4CAF50;

  --shadow-premium: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
  --radius-premium: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a.anchor-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.mobile-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background-color: var(--bg-dark);
}

.hero-mobile {
  padding: 20px 0;
}

.hero-mobile__header {
  text-align: center;
  padding: 0 15px;
}

.car-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-soft);
  color: var(--accent-red);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  animation: pulse 2s infinite;
}

.car-title {
  color: var(--text-main);
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.text-accent {
  color: var(--accent-green);
}

.hero-mobile__visual {
  position: relative;
  margin: 20px 0;
}

.discount-ribbon {
  position: absolute;
  top: 15px;
  right: 0;
  background-color: #ff3344;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(255, 51, 68, 0.3);
  z-index: 10;
}

.hero__img {
  width: 100%;
  display: block;
  border-radius: var(--radius-premium);
}

.timer-wrapper {
  margin: 0 15px 20px;
  text-align: center;
}

.timer-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.timer__box {
  background: var(--bg-soft);
  padding: 10px 15px;
  border-radius: var(--radius-premium);
  min-width: 60px;
  border: 1px solid var(--bg-soft);
  box-shadow: var(--shadow-premium);
}

.timer__num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-main);
}

.timer__label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.timer__sep {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-muted);
}

.hero__form-block {
  padding: 0 15px;
}

.car-offer {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__price {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(229, 57, 53, 0.3);
  border-radius: var(--radius-premium);
  background: rgba(229, 57, 53, 0.1);
  gap: 12px;
  margin: 20px 0;
}

.price-split-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

.price-label {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 8px;
}

.price-label__text {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 600;
}

.accent-text {
  font-size: 18px;
  color: var(--accent-red);
}

.price-split {
  margin-top: 15px;
  display: flex;
  width: 100%;
  height: 60px;
  border-radius: var(--radius-premium);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.price-split__old {
  flex: 1;
  background-color: var(--bg-dark);
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
  text-decoration: line-through;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 5px;
  border-right: 1px solid var(--accent-red);
}

.price-split__new {
  flex: 1.2;
  background-color: var(--accent-red);
  border: 1px solid var(--accent-red);
  color: var(--text-main);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 5px;
  line-height: 1;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--text-muted);
  border-radius: var(--radius-premium);
  box-sizing: border-box;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  transition: 0.3s ease;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-green);
  background-color: var(--bg-soft);
}

.form-input.input-error {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
}

.car-btn {
  width: 100%;
  padding: 18px;
  background: var(--accent-green);
  color: var(--text-main);
  border: none;
  border-radius: var(--radius-premium);
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.car-btn:hover {
  background: #43a047;
}

.car-btn:disabled {
  cursor: wait;
  opacity: 0.75;
}

.trust-badges {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--text-muted);
}

.trust-badge {
  text-align: center;
  flex: 1;
}

.trust-badge__icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.trust-badge__text {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.stock-urgency {
  margin-top: 4px;
}

.stock-urgency__text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
}

.stock-urgency__count {
  color: var(--accent-red);
  background: rgba(229, 57, 53, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
  font-size: 16px;
}

.stock-urgency__bar {
  height: 10px;
  background: var(--bg-dark);
  border-radius: 20px;
  margin-top: 12px;
  width: 100%;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.stock-urgency__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-red) 100%);
  border-radius: 20px;
  position: relative;
  background-size: 20px 20px;
  background-image: linear-gradient(45deg, var(--accent-red) 25%, transparent 25%, transparent 50%, var(--accent-red) 50%, var(--accent-red) 75%, transparent 75%, transparent);
  animation: moveStripes 2s linear infinite;
}

.hero-mobile__content {
  padding: 0 20px;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}

.stock-urgency.center-content .stock-urgency__text {
  justify-content: center;
  display: flex;
  width: 100%;
}

.stock-urgency.center-content .stock-urgency__bar {
  width: 100%;
  max-width: 300px;
  margin: 6px auto 0;
}

.stock-urgency.center-content {
  background-color: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(229, 57, 53, 0.4);
  border-radius: var(--radius-premium);
  padding: 14px 16px;
  margin: 0 auto 25px;
  max-width: 360px;
  box-shadow: var(--shadow-premium);
}

.product-description {
  padding: 30px 15px;
  background-color: var(--bg-dark);
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.advantages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-card {
  background-color: var(--bg-soft);
  border-radius: var(--radius-premium);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.advantage-card__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-bottom: 2px solid var(--accent-red);
  background-color: #ffffff;
}

.advantage-card__text {
  padding: 20px;
}

.advantage-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 10px 0;
}

.advantage-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.why-choose {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--bg-soft);
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.why-choose__visual {
  margin-bottom: 25px;
  border-radius: var(--radius-premium);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 2px solid var(--bg-soft); 
}

.why-choose__img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  background-color: #ffffff;
}

.why-choose__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-choose__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--bg-soft);
  padding: 16px;
  border-radius: var(--radius-premium);
  border-left: 4px solid var(--accent-green);
}

.why-choose__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: rgba(76, 175, 80, 0.15);
  color: var(--accent-green);
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 14px;
}

.why-choose__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.why-choose__text strong {
  color: var(--text-main);
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.why-choose__action {
  margin-top: 30px;
  width: 100%;
}

.product-specs {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-premium);
  margin-bottom: 20px;
  box-shadow: var(--shadow-premium);
  background-color: var(--bg-soft);
}

.specs-box {
  background-color: var(--bg-soft);
  border-radius: var(--radius-premium);
  padding: 10px 20px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(160, 160, 160, 0.2);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-name {
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
  padding-right: 15px;
}

.spec-val {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  flex: 1;
  word-break: break-word;
}

.reviews-section {
  padding: 40px 15px 30px;
  background-color: var(--bg-dark);
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background-color: var(--bg-soft);
  border-radius: var(--radius-premium);
  padding: 20px;
  box-shadow: var(--shadow-premium);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-name {
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.review-rating {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: #FF6B00;
  letter-spacing: 2px;
}

.rating-text {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.review-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.review-photo {
  width: 250px;
  height: 250px;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-order-info {
  padding: 40px 15px;
  background-color: var(--bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.title-line {
  width: 60px;
  height: 4px;
  background: var(--accent-green);
  margin: 0 auto;
  border-radius: 2px;
}

.order-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step-item {
  display: flex;
  align-items: center;
  background-color: var(--bg-soft);
  padding: 16px;
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.step-icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent-green);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  margin-right: 15px;
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.step-info {
  display: flex;
  flex-direction: column;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.step-desc strong {
  color: var(--text-main);
  font-weight: 600;
}

.secondary-header {
  margin-bottom: 25px;
}

.reason-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.guarantee-card {
  background-color: var(--bg-soft);
  padding: 20px 15px;
  border-radius: var(--radius-premium);
  text-align: center;
  box-shadow: var(--shadow-premium);
  border-top: 3px solid var(--accent-green);
}

.guarantee-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.guarantee-card strong {
  display: block;
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.guarantee-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.footer {
  background-color: var(--bg-dark);
  padding: 30px 15px 50px;
  border-top: 1px solid var(--bg-soft);
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__distributor {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.footer__policy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer__policy p {
  margin: 0 0 6px 0;
}

.footer__link {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--text-main);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(229, 57, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

@keyframes moveStripes {
  0% { background-position: 0 0; }
  100% { background-position: 40px 0; }
}
