/* ── Landing page specific styles ─────────────────────────────────────────── */

/* ── Container ─────────────────────────────────────────────────────────────── */
.lp-container {
  max-width: 1168px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.lp-btn {
  display: inline-block;
  border-radius: 20px;
  padding: 18px 40px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
  border: 2px solid transparent;
}

.lp-btn-primary {
  background-color: #222;
  color: #fff;
  border-color: #222;
}
.lp-btn-primary:hover {
  background-color: transparent;
  color: #222;
  border-color: #222;
}

.lp-btn-secondary {
  background-color: #f4bf02;
  color: #222;
  border-color: #f4bf02;
  margin-top: 28px;
}
.lp-btn-secondary:hover {
  background-color: #222;
  color: #f4bf02;
  border-color: #222;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.lp-hero {
  width: 100%;
  background: linear-gradient(180deg, #f2bd00 0%, #ffca10 40%, #fff1c1 100%);
  padding: 80px 0 80px;
}

.lp-hero-content {
  max-width: 700px;
}

.lp-hero-content .logo {
  height: 64px;
  margin-bottom: 24px;
}

.lp-hero-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 24px;
  color: #111;
}

.lp-hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
}

.lp-hero-subtext {
  margin-top: 14px;
  font-size: 13px;
  color: #555;
  font-style: italic;
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
.lp-section {
  padding: 70px 0;
}

.lp-section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f4bf02;
  margin-bottom: 10px;
}

.lp-section-title {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 28px;
  line-height: 1.3;
}

.lp-section p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
}

/* Alternating backgrounds */
.lp-about    { background-color: #fff; }
.lp-why      { background-color: #f5f4f2; }
.lp-drivers  { background-color: #fff; }
.lp-couriers { background-color: #f5f4f2; }
.lp-steps    { background-color: #fff; }
.lp-bonuses  { background-color: #f5f4f2; }
.lp-contact  { background-color: #222; color: #fff; }
.lp-faq      { background-color: #fff; }
.lp-cta      { background: linear-gradient(135deg, #f4bf02 0%, #f9d84a 100%); }

/* ── Why grid ──────────────────────────────────────────────────────────────── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-features-grid li {
  background-color: #fff;
  border-left: 4px solid #f4bf02;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ── Steps ─────────────────────────────────────────────────────────────────── */
.lp-steps-list {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-steps-list li {
  counter-increment: steps;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.lp-steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f4bf02;
  color: #111;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-steps-footer {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* ── Contact ───────────────────────────────────────────────────────────────── */
.lp-contact .lp-section-label { color: #f4bf02; }
.lp-contact .lp-section-title { color: #fff; }

.lp-contact-note {
  color: #ccc !important;
  margin-bottom: 36px !important;
}

.lp-contact-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #333;
  border-radius: 14px;
  padding: 22px 28px;
  min-width: 240px;
}

.lp-contact-icon {
  font-size: 28px;
  line-height: 1;
}

.lp-contact-card-label {
  font-size: 12px;
  color: #aaa !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px !important;
}

.lp-contact-link {
  font-size: 20px;
  font-weight: 700;
  color: #f4bf02 !important;
  text-decoration: none;
  transition: opacity 0.2s;
}

.lp-contact-link:hover { opacity: 0.8; }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}

.lp-faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
}

.lp-faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.2s;
}

.lp-faq-item summary:hover { background-color: #f0f0f0; }

.lp-faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: #f4bf02;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}

.lp-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.lp-faq-item p {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ── CTA ───────────────────────────────────────────────────────────────────── */
.lp-cta-inner {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.lp-cta-title {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.3;
}

.lp-cta p {
  font-size: 15px;
  color: #333;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-hero-title { font-size: 20px; }
  .lp-section-title { font-size: 20px; }
  .lp-cta-title { font-size: 22px; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-contact-cards { flex-direction: column; }
  .lp-contact-card { min-width: unset; }
  .lp-hero { padding: 60px 0 60px; }
  header nav { width: 100%; padding: 0 20px; }
}

@media (max-width: 520px) {
  header nav { padding: 0 16px; }
}

@media (max-width: 480px) {
  .lp-btn { padding: 14px 28px; font-size: 14px; }
  .lp-hero-content .logo { height: 48px; }
}
