* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  color: #07132f;
}

.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 18px;
}

.hero {
  text-align: center;
}

.badge {
  display: inline-block;
  background: #dcfce7;
  color: #067a3f;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1 {
  font-size: 38px;
  line-height: 1.08;
  margin: 0 0 14px;
}

.subheadline {
  font-size: 19px;
  color: #475569;
  margin: 0 0 18px;
  line-height: 1.5;
}

.offer-box {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(7, 19, 47, 0.08);
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.old-price {
  color: #94a3b8;
  font-weight: 800;
  text-decoration: line-through;
}

.free-price {
  color: #068b45;
  font-size: 30px;
  font-weight: 900;
}

.offer-box p {
  margin: 0;
  color: #334155;
  line-height: 1.5;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.benefit {
  background: white;
  padding: 13px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(7, 19, 47, 0.05);
}

.photo-strip {
  overflow: hidden;
  margin: 14px 0 16px;
  border-radius: 18px;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.photo-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scrollPhotos 24s linear infinite;
}

.photo-header {
  margin: 16px 0 10px;
  text-align: center;
}

.photo-header span {
  display: inline-block;
  background: #07132f;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.photo-card {
  width: 185px;
  height: 128px;
}

.photo-card {
  position: relative;
  width: 185px;
  height: 128px;
  overflow: hidden;
  border-radius: 16px;
}

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

.photo-card span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 10;
  background: rgba(7, 19, 47, 0.86);
  color: white;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
}

.floating-apply-button {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 28px);
  max-width: 520px;
  border: none;
  border-radius: 999px;
  padding: 17px 22px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: white;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.38);
}

body {
  padding-bottom: 90px;
}

@media (max-width: 768px) {
  .photo-card {
    width: 165px;
    height: 114px;
  }
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(7, 19, 47, 0.86);
  color: white;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
}

.not-for-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.not-for-box h3 {
  margin: 0 0 8px;
}

.not-for-box p {
  margin: 0;
  color: #334155;
  line-height: 1.45;
}

form {
  display: grid;
  gap: 12px;
}

input {
  padding: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  font-size: 16px;
  background: white;
}

input:focus {
  outline: none;
  border-color: #068b45;
  box-shadow: 0 0 0 4px rgba(6, 139, 69, 0.12);
}

button {
  border: none;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: white;
  padding: 18px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.spots {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 14px;
}

.problem-section {
  background: white;
  margin-top: 28px;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(7, 19, 47, 0.07);
}

.problem-section h2 {
  margin-top: 0;
}

.problem-section p {
  color: #475569;
  line-height: 1.7;
}

@keyframes scrollPhotos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .page {
    padding: 14px;
  }

  h1 {
    font-size: 28px;
  }

  .subheadline {
    font-size: 16px;
  }

  .offer-box {
    padding: 16px;
  }

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

  .benefit {
    padding: 11px;
  }

  .photo-card {
    width: 132px;
    height: 92px;
  }

  .problem-section {
    padding: 20px;
  }
}

.limited-line {
  display: inline-block;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 900;
  margin: 0 0 16px;
}

.privacy-note {
  margin: -4px 0 2px;
  color: #64748b;
  font-size: 13px;
  text-align: left;
}

.photo-header {
  margin: 16px 0 10px;
  text-align: center;
}

.photo-header span {
  display: inline-block;
  background: #07132f;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.photo-card {
  position: relative;
  width: 185px;
  height: 128px;
  overflow: hidden;
  border-radius: 16px;
}

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

.photo-card span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 10;
  background: rgba(7, 19, 47, 0.86);
  color: white;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
}

.floating-apply-button {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 28px);
  max-width: 520px;
  border: none;
  border-radius: 999px;
  padding: 17px 22px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: white;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.38);
}

body {
  padding-bottom: 90px;
}

@media (max-width: 768px) {
  .photo-card {
    width: 165px;
    height: 114px;
  }
}

.legal-consent {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  color: #64748b;
}

.legal-consent a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.legal-consent a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

.site-footer a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

.included-section,
.next-steps,
.why-section,
.not-detail-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  margin: 18px 0;
  box-shadow: 0 12px 30px rgba(7, 19, 47, 0.07);
}

.included-section h2,
.next-steps h2,
.why-section h2,
.not-detail-box h2 {
  margin-top: 0;
  color: #07132f;
}

.included-grid,
.next-step-grid,
.not-detail-grid {
  display: grid;
  gap: 12px;
}

.included-card,
.next-step-grid div,
.not-detail-grid span {
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #e2e8f0;
}

.included-card p,
.next-step-grid p,
.why-section p,
.not-detail-box p {
  color: #475569;
  line-height: 1.6;
}

.vehicle-grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.legal-consent {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: #64748b;
}

.legal-consent a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.legal-consent a:hover {
  text-decoration: underline;
}

@media (min-width: 700px) {
  .included-grid,
  .next-step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .not-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

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