:root {
  --primary: #0D7D3A;
  --primary-dark: #084C2A;
  --primary-light: #1FA751;
  --accent: #00C853;
  --accent-light: #4ADE80;
  --success: #10B981;
  --bg-light: #E8F5E9;
  --bg-lighter: #F1F8F5;
  --text-dark: #1B3A2D;
  --text-muted: #5A7F70;
  --border: #B8DCC8;
  --font-main: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-heading: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --sp: 1rem;
  --sp-sm: 0.5rem;
  --sp-lg: 2rem;
  --sp-xl: 3rem;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-dark);
  background: #ffffff;
}

.demo-bar {
  background: #1B3A2D;
  color: white;
  padding: 0.5rem var(--sp);
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 2px solid var(--primary);
}

.demo-bar a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.demo-bar a:hover {
  color: white;
}

/* Header & Navigation */
header {
  background: white;
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(13, 125, 58, 0.08);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
  margin-right: auto;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 8px;
  color: white;
}

.logo-text span {
  color: var(--accent);
}

/* Mobile menu toggle */
#nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

nav {
  display: flex;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.nav-cta a {
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border-bottom: none !important;
}

.nav-cta a:hover {
  background: var(--primary-dark);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }

  #nav-toggle:checked ~ label .nav-burger span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  #nav-toggle:checked ~ label .nav-burger span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked ~ label .nav-burger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  #nav-toggle:checked ~ nav {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  nav a {
    display: block;
    padding: 0.75rem;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta a {
    display: block;
    text-align: center;
  }
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp);
}

/* Hero Section */
.hero {
  padding: 4rem var(--sp) 3rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-accent {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-accent:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 125, 58, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ev-graphic svg,
.workshop-svg-wrap svg,
.vehicle-placeholder svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(13, 125, 58, 0.15));
}

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 2.5rem var(--sp);
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* Features Section */
.features {
  padding: 4rem var(--sp);
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-lighter);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(13, 125, 58, 0.12);
  transform: translateY(-4px);
}

.feature-icon {
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 3.5rem var(--sp);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 3rem var(--sp);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.rating-display {
  margin-top: 1.5rem;
  font-size: 1rem;
}

.stars {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Content Section */
.content-section {
  padding: 3rem var(--sp);
}

.filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-input,
.filter-select {
  flex: 1;
  min-width: 150px;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-dark);
}

.filter-input::placeholder,
.filter-select {
  color: var(--text-muted);
}

.filter-input:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 125, 58, 0.1);
}

/* Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.catalog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.catalog-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(13, 125, 58, 0.15);
  transform: translateY(-4px);
}

.card-image {
  position: relative;
  background: var(--bg-light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vehicle-placeholder {
  width: 100%;
  height: 100%;
}

.tag-new,
.tag-promo,
.tag-bestseller {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-new {
  background: var(--accent);
  color: white;
}

.tag-promo {
  background: #FF6B6B;
  color: white;
}

.tag-bestseller {
  background: var(--primary);
  color: white;
}

.catalog-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.price {
  padding: 0 1rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.specs-quick {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.catalog-card .btn {
  margin: 1rem;
  display: block;
  width: calc(100% - 2rem);
  text-align: center;
}

.catalog-footer {
  text-align: center;
  padding: 2rem;
  background: var(--bg-lighter);
  border-radius: 8px;
  color: var(--text-muted);
}

.catalog-footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* Specs Table */
.specs-table-wrapper {
  overflow-x: auto;
  margin-bottom: 3rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.specs-table th {
  background: var(--primary);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.specs-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}

.specs-table tr.alt-row {
  background: var(--bg-lighter);
}

.specs-table tr:hover {
  background: rgba(13, 125, 58, 0.05);
}

/* Specs Details */
.specs-details {
  margin-bottom: 3rem;
}

.specs-details h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.feature-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Comparison Box */
.comparison-box {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--primary);
  margin-bottom: 2rem;
}

.comparison-box h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.comparison-box > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.cost-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border);
}

.cost-item strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cost-item p {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.small-text {
  font-size: 0.85rem;
  color: var(--text-muted) !important;
  font-weight: normal !important;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(13, 125, 58, 0.12);
}

.stars-rating {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
}

.testimonial-author p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Testimonial CTA */
.testimonial-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 3rem var(--sp);
  text-align: center;
  margin-top: 3rem;
}

.testimonial-cta h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.testimonial-cta p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-form-section h2,
.contact-info-section h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-form {
  background: white;
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 125, 58, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-group.checkbox input {
  width: auto;
  margin: 0;
}

.form-group.checkbox label {
  margin: 0;
  font-weight: normal;
}

/* Contact Info */
.contact-item {
  background: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent);
}

.contact-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.contact-item p {
  color: var(--text-dark);
  margin: 0;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.promo-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
}

.promo-box h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.promo-box p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-lighter);
  padding: 2.5rem;
  border-radius: 12px;
}

.faq-section h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.faq-item h3 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 3rem var(--sp) 1rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

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

  .specs-table {
    font-size: 0.85rem;
  }

  .specs-table th,
  .specs-table td {
    padding: 0.75rem 0.5rem;
  }

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

  .page-header h1 {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .filter-bar {
    flex-direction: column;
  }

  .filter-input,
  .filter-select {
    min-width: unset;
  }
}

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

  .hero-badge {
    font-size: 0.75rem;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

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

  nav ul {
    gap: 1rem;
  }

  .hero-btns {
    gap: 0.5rem;
  }
}
