/* ── LANDING PAGES (/for/garages, /for/car-rentals etc.) ── */

/* ── HERO ── */
.lp-hero {
    padding: 80px 0 60px;
    overflow: hidden;
  }
  
  .lp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .lp-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
  }
  
  .lp-hero-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
  }
  
  .lp-hero-headline span { color: var(--primary); }
  
  .lp-hero-sub {
    font-size: 1.1rem;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
  }
  
  .lp-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  
  .lp-appstore-badge {
    height: 48px;
    width: auto;
    transition: transform 0.2s;
  }
  
  .lp-appstore-badge:hover { transform: translateY(-2px); }
  
  .lp-hero-note {
    font-size: 0.82rem;
    color: var(--muted);
  }
  
  .lp-hero-image img {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
  
  /* ── PAIN POINTS ── */
  .lp-pain {
    padding: 100px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .lp-pain-header {
    text-align: center;
    margin-bottom: 56px;
  }
  
  .lp-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .pain-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }
  
  .pain-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  
  .pain-card:hover::before { transform: scaleX(1); }
  
  .pain-icon {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .pain-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
  }
  
  .pain-card p {
    font-size: 0.9rem;
    color: var(--body);
    line-height: 1.65;
  }
  
  /* ── SOLUTION ── */
  .lp-solution {
    padding: 100px 0;
  }
  
  .lp-solution-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  
  .lp-solution-text .section-headline {
    margin-bottom: 16px;
  }
  
  .lp-solution-text > p {
    font-size: 1rem;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 24px;
  }
  
  .lp-solution-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .lp-solution-list li {
    font-size: 0.95rem;
    color: var(--body);
    line-height: 1.5;
  }
  
  .lp-solution-image img {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  
  /* ── FORMS ── */
  .lp-forms {
    padding: 100px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .lp-forms-header {
    text-align: center;
    margin-bottom: 56px;
  }
  
  .lp-forms-header .section-sub {
    margin: 0 auto;
  }
  
  .lp-forms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .form-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.25s ease;
  }
  
  .form-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
  }
  
  .form-item-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .form-item-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
  }
  
  .form-item-text p {
    font-size: 0.88rem;
    color: var(--body);
    line-height: 1.65;
  }
  
  /* ── HOW IT WORKS ── */
  .lp-how {
    padding: 100px 0;
  }
  
  .lp-how-header {
    text-align: center;
    margin-bottom: 56px;
  }
  
  .lp-how-header .section-sub {
    margin: 0 auto;
  }
  
  .lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }
  
  .lp-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 0;
  }
  
  .lp-step {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
    transition: all 0.25s ease;
  }
  
  .lp-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  
  .lp-step-number {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
  }
  
  .lp-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
  }
  
  .lp-step p {
    font-size: 0.85rem;
    color: var(--body);
    line-height: 1.6;
  }
  
  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .lp-pain-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-steps { grid-template-columns: repeat(2, 1fr); }
    .lp-steps::before { display: none; }
  }
  
  @media (max-width: 768px) {
    .lp-hero { padding: 48px 0 40px; }
  
    .lp-hero-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .lp-hero-image { order: -1; }
    .lp-hero-image img { max-width: 320px; margin: 0 auto; }
    .lp-hero-actions { justify-content: center; }
    .lp-hero-sub { margin: 0 auto 28px; }
  
    .lp-pain { padding: 64px 0; }
    .lp-pain-grid { grid-template-columns: 1fr; }
  
    .lp-solution { padding: 64px 0; }
    .lp-solution-inner { grid-template-columns: 1fr; gap: 40px; }
  
    .lp-forms { padding: 64px 0; }
    .lp-forms-grid { grid-template-columns: 1fr; }
  
    .lp-how { padding: 64px 0; }
    .lp-steps { grid-template-columns: 1fr; }
  }