@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fb;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.gold-text {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.logo-name {
  font-size: 22px;
  color: #1a1a2e;
  font-weight: 400;
}

.logo-strong {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

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

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  transition: transform 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #475569;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  border-left: 1px solid #e5e7eb;
  z-index: 1002;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: #94a3b8;
}

.mobile-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: #475569;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s;
}

.mobile-nav a:hover {
  background: #eff6ff;
  color: #2563eb;
}

.mobile-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 12px 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a5f 0%, #1a2744 50%, #0f172a 100%);
  color: #fff;
}

.hero-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: #93c5fd;
  margin-bottom: 24px;
}

.badge svg {
  fill: #60a5fa !important;
  stroke: #60a5fa !important;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero .gold-text {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.7;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 30px;
  width: 100%;
  max-width: 380px;
}

.plate-wrapper {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.plate-label {
  font-size: 11px;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.plate-input {
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.plate-input:focus {
  border-color: rgba(96, 165, 250, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

.plate-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.buttons-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.35);
  transition: all 0.3s;
  flex: 1;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.45);
}

.camera-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #93c5fd;
  cursor: pointer;
  transition: all 0.3s;
}

.camera-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.camera-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(147, 197, 253, 0.8);
  margin-top: 6px;
  cursor: pointer;
}

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.trust-item svg {
  stroke: #60a5fa !important;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.car-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.car-card img {
  width: 450px;
  height: 320px;
  object-fit: cover;
}

/* Stats */
.stats {
  padding: 60px 0;
  background: #fff;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-text {
  color: #64748b;
  font-size: 14px;
}

/* Features */
.features {
  padding: 80px 0;
  background: #f8f9fb;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 50px;
}

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

.feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #bfdbfe;
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.testimonial-card {
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: #bfdbfe;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.06);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  justify-content: center;
}

.testimonial-stars svg {
  fill: #f59e0b !important;
  stroke: #f59e0b !important;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #bfdbfe;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-name {
  color: #2563eb;
  font-size: 15px;
  font-weight: 600;
  display: block;
}

.testimonial-city {
  color: #94a3b8;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: #f8f9fb;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.faq-list {
  margin-top: 40px;
  text-align: left;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: #bfdbfe;
}

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

.faq-question svg {
  color: #2563eb;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

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

/* CTA */
.cta {
  padding: 80px 20px;
  background: #fff;
}

.cta-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  color: #fff;
}

.cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
  width: 100%;
  max-width: 300px;
  transition: all 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.5);
}

/* Footer */
.footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  padding: 60px 0 30px;
  color: #fff;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-name {
  color: #fff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
  text-align: center;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
  background: rgba(37, 99, 235, 0.1);
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  line-height: 1.5;
}

.footer-company {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-align: center;
  line-height: 1.7;
}

.footer-company strong {
  color: rgba(255, 255, 255, 0.7);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-column-title {
  color: #60a5fa;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-bottom p {
  margin-bottom: 4px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  color: #fff;
  width: 28px;
  height: 28px;
}

/* Page Styles */
.page {
  min-height: calc(100vh - 160px);
  padding: 30px 16px;
  position: relative;
  background: #f8f9fb;
}

.page-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header {
  text-align: center;
  margin-bottom: 24px;
}

.page-icon {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #2563eb;
}

.page-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.page-subtitle {
  font-size: 12px;
  color: #94a3b8;
}

.content-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
}

.content-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.content-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 14px;
}

.content-card strong {
  color: #2563eb;
}

.content-card ul {
  margin: 14px 0;
  padding-left: 20px;
}

.content-card li {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* Contact Page */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.contact-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.contact-text {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.contact-action {
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
}

.info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #64748b;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-row svg {
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-row strong {
  display: block;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
}

.form-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #1a1a2e;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
  transition: all 0.3s;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.3);
}

/* Verify Page */
.verify-box {
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.verify-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.verify-input {
  padding: 12px 16px;
  font-size: 16px;
  background: #f8f9fb;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  color: #1a1a2e;
  outline: none;
  width: 200px;
  transition: border-color 0.3s;
}

.verify-input:focus {
  border-color: #93c5fd;
}

.verify-btn {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.verify-btn:hover {
  transform: translateY(-1px);
}

.info-box {
  margin-top: 40px;
  padding: 20px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
}

.info-box h4 {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .search-form {
    max-width: 100%;
  }

  .hero-image {
    display: none;
  }

  .trust-row {
    justify-content: center;
  }

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

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

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

@media (max-width: 768px) {
  .nav,
  .whatsapp-btn {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-column {
    align-items: center;
  }

  .plate-input {
    font-size: 20px;
  }

  .page-title {
    font-size: 28px;
  }

  .content-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 28px;
  }

  .cta-card {
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .trust-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* Spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(37, 99, 235, 0.2);
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
