/* ── PAGES SHARED STYLES ── */
.page-section { padding: 80px 0; }
.page-section.bg-light { background: var(--slate-100); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col p { color: var(--slate-500); font-size: 16px; line-height: 1.8; }

.about-card { background: #fff; border-radius: 24px; padding: 32px; border: 1px solid #e2e8f0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; box-shadow: 0 8px 32px rgba(0,0,0,.06); }
.about-stat { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.about-stat span:last-child { font-size: 13px; color: var(--slate-500); font-weight: 500; }
.big-num { font-size: 36px; font-weight: 900; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid #e2e8f0; transition: transform .3s, box-shadow .3s; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.value-icon { font-size: 32px; margin-bottom: 12px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.value-card p { color: var(--slate-500); font-size: 14px; line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.team-card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid #e2e8f0; text-align: center; transition: transform .3s, box-shadow .3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; color: #fff; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.team-card h4 { font-size: 17px; font-weight: 700; color: var(--slate-900); margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--emerald); font-weight: 600; display: block; margin-bottom: 10px; }
.team-card p { color: var(--slate-500); font-size: 14px; line-height: 1.6; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 32px; font-weight: 800; color: var(--slate-900); margin-bottom: 16px; }
.contact-info p { color: var(--slate-500); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--emerald-light); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 14px; color: var(--slate-900); margin-bottom: 2px; }
.contact-item-text span { font-size: 14px; color: var(--slate-500); }
.contact-form { background: #fff; border-radius: 24px; padding: 36px; border: 1px solid #e2e8f0; box-shadow: 0 8px 32px rgba(0,0,0,.06); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid #e2e8f0; border-radius: 10px;
  font-size: 14px; color: var(--slate-800); font-family: inherit; outline: none;
  transition: border-color .2s, box-shadow .2s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Safety page */
.safety-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.safety-feature-card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid #e2e8f0; transition: transform .3s, box-shadow .3s; }
.safety-feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.safety-feature-card .feature-icon { font-size: 28px; margin-bottom: 12px; }
.safety-feature-card h3 { font-size: 17px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.safety-feature-card p { color: var(--slate-500); font-size: 14px; line-height: 1.7; }

/* Driver page */
.driver-steps { display: flex; flex-direction: column; gap: 24px; }
.driver-step { display: flex; gap: 24px; align-items: flex-start; background: #fff; border-radius: 16px; padding: 24px; border: 1px solid #e2e8f0; }
.driver-step-num { width: 48px; height: 48px; border-radius: 12px; background: var(--gradient); color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.driver-step h4 { font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; }
.driver-step p { color: var(--slate-500); font-size: 14px; line-height: 1.6; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pricing-card { background: #fff; border-radius: 24px; padding: 36px; border: 2px solid #e2e8f0; transition: transform .3s, box-shadow .3s; position: relative; }
.pricing-card.featured { border-color: var(--emerald); box-shadow: 0 8px 32px rgba(16,185,129,.15); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--emerald); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.pricing-card h3 { font-size: 20px; font-weight: 800; color: var(--slate-900); margin-bottom: 8px; }
.pricing-price { font-size: 42px; font-weight: 900; color: var(--slate-900); margin: 16px 0; }
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--slate-500); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.pricing-features li { font-size: 14px; color: var(--slate-600, #475569); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--emerald); font-weight: 700; }

/* Help / FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 16px; border: 1px solid #e2e8f0; overflow: hidden; }
.faq-question { padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--slate-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-question:hover { color: var(--emerald); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-answer.open { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { color: var(--slate-500); font-size: 14px; line-height: 1.7; }
.faq-icon { font-size: 18px; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Privacy / Terms */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--slate-900); margin: 36px 0 12px; }
.legal-content p, .legal-content li { color: var(--slate-500); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content .last-updated { color: var(--slate-400); font-size: 13px; margin-bottom: 32px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border-radius: 20px; border: 1px solid #e2e8f0; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.blog-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-body { padding: 24px; }
.blog-tag { font-size: 11px; font-weight: 700; color: var(--emerald); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; display: block; }
.blog-card h3 { font-size: 17px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { color: var(--slate-500); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--slate-400); }

/* Careers */
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card { background: #fff; border-radius: 16px; padding: 24px; border: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: transform .3s, box-shadow .3s; }
.job-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.job-info h4 { font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag { background: var(--slate-100); color: var(--slate-600, #475569); padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 500; }
.job-tag.green { background: var(--emerald-light); color: var(--emerald-dark); }

/* Download */
.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.download-text h2 { font-size: 36px; font-weight: 900; color: var(--slate-900); margin-bottom: 16px; }
.download-text p { color: var(--slate-500); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 12px; background: var(--slate-900); color: #fff; padding: 14px 24px; border-radius: 14px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.store-btn-icon { font-size: 28px; }
.store-btn-text span { display: block; font-size: 11px; color: #94a3b8; }
.store-btn-text strong { font-size: 16px; }
.qr-card { background: #fff; border-radius: 24px; padding: 36px; border: 1px solid #e2e8f0; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,.06); }
.qr-placeholder { width: 160px; height: 160px; background: var(--slate-100); border-radius: 16px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 64px; }
.qr-card p { color: var(--slate-500); font-size: 14px; }

/* Press */
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.press-card { background: #fff; border-radius: 16px; padding: 24px; border: 1px solid #e2e8f0; text-align: center; transition: transform .3s; }
.press-card:hover { transform: translateY(-4px); }
.press-logo { font-size: 32px; margin-bottom: 12px; }
.press-card h4 { font-size: 15px; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; }
.press-card p { font-size: 13px; color: var(--slate-500); font-style: italic; }

/* Earnings */
.earnings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.earnings-card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid #e2e8f0; text-align: center; }
.earnings-num { font-size: 40px; font-weight: 900; margin-bottom: 8px; }
.earnings-card h4 { font-size: 15px; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; }
.earnings-card p { font-size: 13px; color: var(--slate-500); }

/* Cookies */
.cookie-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.cookie-table th { background: var(--slate-100); padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 700; color: var(--slate-700); }
.cookie-table td { padding: 12px 16px; font-size: 14px; color: var(--slate-500); border-bottom: 1px solid #e2e8f0; }

@media (max-width: 768px) {
  .two-col, .contact-grid, .download-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
