/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #1d4ed8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.4rem;
  color: #1a1a2e;
  text-decoration: none;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  flex-shrink: 0;
}

.logo-icon .material-icons-outlined {
  font-size: 1.4rem;
}

.logo span {
  color: #2563eb;
}

.logo span.material-icons-outlined  {
  color: #FFFFFF !important;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: #4a4a68;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: #2563eb;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  /* REPLACE: Change the background-image URL below to your actual hero image of Split */
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../img/split.webp');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 950px;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 28px;
  opacity: 0.95;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== BOOKING WIDGET SECTION ===== */
.booking-section {
  padding: 40px 0 50px;
  background: #fff;
}

.booking-section .container {
  max-width: 1200px;
}

/* ===== SECTION STYLES ===== */
section {
  padding: 60px 0;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a2e;
  text-align: center;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #5a5a7a;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ===== HOW TO RENT ===== */
.how-to-rent {
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.step-card p {
  color: #5a5a7a;
  font-size: 0.92rem;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 50px;
  right: -18px;
  color: #c5d0e6;
  font-size: 1.4rem;
}

/* ===== OFFERS SECTION ===== */
.offers-section {
  background: #f0f5ff;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.offer-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.offer-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.offer-card p {
  color: #5a5a7a;
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ===== WHY RENT SECTION ===== */
.why-rent {
  background: #fff;
}

.why-rent-content {
  max-width: 900px;
  margin: 0 auto;
}

.why-rent-content p {
  color: #3d3d5c;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: #f0f5ff;
  border-radius: 12px;
}

.advantage-item .material-icons-outlined {
  color: #2563eb;
  font-size: 1.4rem;
  margin-top: 2px;
}

.advantage-item span {
  color: #2d2d4e;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== PRICES SECTION ===== */
.prices-section {
  background: #f8fafc;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  border-color: #2563eb;
  transform: translateY(-3px);
}

.price-card .card-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.price-card .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 6px;
}

.price-card .price-note {
  font-size: 0.82rem;
  color: #8a8aaa;
}

.price-tips {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.price-tips h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1a1a2e;
}

.price-tips ul {
  list-style: none;
  padding: 0;
}

.price-tips ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #3d3d5c;
  font-size: 0.95rem;
}

.price-tips ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.price-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.price-table-wrapper h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a2e;
  text-align: center;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.price-table thead {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}

.price-table th {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: left;
  white-space: nowrap;
}

.price-table td {
  padding: 13px 16px;
  font-size: 0.9rem;
  color: #3d3d5c;
  border-bottom: 1px solid #f0f0f5;
}

.price-table tbody tr:hover {
  background: #f8faff;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: #fff;
}

.overall-rating {
  text-align: center;
  margin-bottom: 44px;
}

.rating-big {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1.6rem;
  margin: 8px 0 4px;
  letter-spacing: 2px;
}

.rating-count {
  color: #8a8aaa;
  font-size: 0.92rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 28px 24px;
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-info h4 {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1a1a2e;
}

.review-info .review-city {
  font-size: 0.82rem;
  color: #8a8aaa;
}

.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.review-card p {
  color: #4a4a68;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== TRAFFIC RULES SECTION ===== */
.traffic-section {
  background: #f8fafc;
}

.traffic-main {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.traffic-main h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a1a2e;
}

.traffic-main p {
  color: #3d3d5c;
  margin-bottom: 14px;
}

.traffic-main ul {
  list-style: none;
  padding: 0;
}

.traffic-main ul li {
  padding: 7px 0 7px 28px;
  position: relative;
  color: #3d3d5c;
  font-size: 0.93rem;
}

.traffic-main ul li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
}

.traffic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.traffic-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.traffic-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.traffic-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.traffic-card p {
  color: #5a5a7a;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== TOP CARS SECTION ===== */
.top-cars-section {
  background: #fff;
}

.top-cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.car-card {
  background: #f8fafc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.car-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #FFFFFF;
}

.car-image img {
  max-height: 140px;
  object-fit: contain;
}

.car-image .car-placeholder {
  font-size: 4.5rem;
}

.car-details {
  padding: 24px;
}

.car-details h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a1a2e;
}

.car-category {
  font-size: 0.82rem;
  color: #2563eb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.car-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.car-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #4a4a68;
}

.car-feature .material-icons-outlined {
  font-size: 1.1rem;
  color: #2563eb;
}

.car-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e8e8f0;
  padding-top: 18px;
}

.car-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a2e;
}

.car-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: #8a8aaa;
}

.btn-view-deal {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-view-deal:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #f8fafc;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8faff;
}

.faq-question .arrow {
  transition: transform 0.3s;
  font-size: 1.4rem;
  color: #2563eb;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: #4a4a68;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-bottom: 32px;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.footer-logo span {
  color: #2563eb;
}

.footer-seo {
  max-width: 700px;
  font-size: 0.84rem;
  line-height: 1.7;
  color: #64748b;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  padding: 20px 0;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}

.footer-links a {
  color: #64748b;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #475569;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.breadcrumb a {
  color: #fff;
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  background: #fff;
  color: #2563eb;
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #1d4ed8;
}

/* ===== ABOUT US PAGE ===== */
.about-content {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

.about-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.about-text p {
  color: #3d3d5c;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f5;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .material-icons-outlined {
  color: #2563eb;
  font-size: 1.4rem;
  margin-top: 2px;
}

.feature-list .feat-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.feature-list .feat-content p {
  font-size: 0.9rem;
  color: #5a5a7a;
  margin: 0;
}

.how-section {
  background: #f8fafc;
  padding: 60px 0;
}

.how-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.how-step {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.how-step .step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.how-step .step-icon .material-icons-outlined {
  font-size: 1.6rem;
}

.how-step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.how-step p {
  font-size: 0.88rem;
  color: #5a5a7a;
  line-height: 1.6;
}

/* ===== CONTACTS PAGE ===== */
.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-item-icon .material-icons-outlined {
  font-size: 1.5rem;
}

.contact-item-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a1a2e;
}

.contact-item-text p {
  font-size: 0.92rem;
  color: #5a5a7a;
  line-height: 1.6;
}

.contact-item-text a {
  color: #2563eb;
  font-weight: 500;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 20px;
  transition: opacity 0.2s;
}

.directions-link:hover {
  opacity: 0.9;
  color: #fff;
}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-content {
  padding: 60px 0;
  max-width: 850px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: #1a1a2e;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f5;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: #2d2d4e;
}

.privacy-content p {
  color: #3d3d5c;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.privacy-content ul,
.privacy-content ol {
  color: #3d3d5c;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
  padding-left: 24px;
}

.privacy-content li {
  margin-bottom: 6px;
}

.privacy-content .effective-date {
  background: #f0f5ff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 500;
  display: inline-block;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-connector {
    display: none;
  }

  .offers-grid,
  .reviews-grid,
  .traffic-grid,
  .top-cars-grid,
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-list {
    grid-template-columns: 1fr;
  }

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

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .header .container {
    position: relative;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.82rem;
    padding: 6px 14px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .steps-grid,
  .offers-grid,
  .reviews-grid,
  .traffic-grid,
  .top-cars-grid,
  .price-cards {
    grid-template-columns: 1fr;
  }

  .car-features {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

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

  .how-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 380px;
  }

  section {
    padding: 40px 0;
  }
}