/*
Theme Name: Vehica Child
Template: vehica
Version: 1.0
Author: Custom Design
*/

/* ============================================================
   AUTOMOBILIAILIZINGU.LT - CUSTOM STYLES
   Modernios automobilių lizingo svetainės dizainas
   Pagrįsta Vehica tema + Custom CSS/JS
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --primary: #E85D04;
  --primary-dark: #D14009;
  --primary-light: #FF7A2F;
  --dark: #0D1B2A;
  --dark-alt: #1B263B;
  --dark-deep: #0A1628;
  --surface: #F8F9FA;
  --white: #FFFFFF;
  --text-primary: #1A1A2E;
  --text-secondary: #6C757D;
  --success: #28A745;
  --accent-yellow: #FFB703;
  --gradient-primary: linear-gradient(135deg, #E85D04 0%, #D14009 100%);
  --gradient-dark: linear-gradient(135deg, #0D1B2A 0%, #1B263B 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-primary: 0 4px 16px rgba(232,93,4,0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,93,4,0.4);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(232,93,4,0.1);
  color: var(--primary);
}

.btn-large {
  padding: 20px 48px;
  font-size: 18px;
  border-radius: 12px;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13,27,42,0.3) 0%,
    rgba(13,27,42,0.7) 50%,
    rgba(13,27,42,0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text h1 span {
  background: linear-gradient(135deg, #E85D04 0%, #FFB703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.hero-form-card h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-form-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 3;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  padding: 0 24px;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  background: linear-gradient(135deg, #E85D04 0%, #FFB703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
}

/* --- Benefits Section --- */
.benefits-section {
  background: var(--surface);
  padding: 120px 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Process Section --- */
.process-section {
  background: var(--dark);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}

.process-line-fill {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 2s ease;
}

.process-step {
  text-align: center;
  max-width: 220px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-primary);
  position: relative;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* --- Calculator Section --- */
.calculator-section {
  background: var(--gradient-dark);
  padding: 120px 24px;
}

.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.calculator-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.calculator-form h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 32px;
}

.calc-field {
  margin-bottom: 24px;
}

.calc-field label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.calc-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}

.calc-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.2);
}

.calc-slider {
  width: 100%;
  margin-top: 8px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--gradient-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232,93,4,0.4);
  border: 3px solid var(--white);
}

/* Calculator Result Card */
.calc-result {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: sticky;
  top: 100px;
}

.result-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.result-label {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.result-value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #E85D04 0%, #FFB703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.result-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.result-row:last-child {
  border-bottom: none;
}

.result-row span:last-child {
  color: var(--white);
  font-weight: 600;
}

.calc-result .btn-primary {
  width: 100%;
  margin-top: 24px;
}

/* --- Vehicle Cards (Vehica Override) --- */
.vehicles-section {
  padding: 100px 24px;
  background: var(--white);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.vehicle-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.08);
}

.vehicle-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.vehicle-info {
  padding: 24px;
}

.vehicle-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.vehicle-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.vehicle-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.vehicle-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.vehicle-monthly {
  background: rgba(232,93,4,0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* --- Contact Form Section --- */
.contact-section {
  background: var(--surface);
  padding: 120px 24px;
}

.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid .form-group-full {
  grid-column: 1 / -1;
}

/* Form Groups */
.form-group {
  margin-bottom: 4px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-primary);
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,93,4,0.1);
}

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

/* Radio & Checkbox Groups */
.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-pill {
  position: relative;
}

.radio-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-pill label {
  display: inline-block;
  padding: 10px 20px;
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0;
}

.radio-pill input[type="radio"]:checked + label {
  background: rgba(232,93,4,0.1);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.radio-pill label:hover {
  border-color: rgba(232,93,4,0.3);
}

/* Toggle Switch */
.toggle-group {
  display: flex;
  gap: 16px;
}

.toggle-option {
  position: relative;
  flex: 1;
}

.toggle-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.toggle-option label {
  display: block;
  padding: 14px 20px;
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0;
}

.toggle-option input[type="radio"]:checked + label {
  background: rgba(232,93,4,0.1);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

/* Submit Button */
.form-submit {
  margin-top: 32px;
}

.form-submit .btn-primary {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  font-weight: 700;
}

/* CF7 Messages */
.wpcf7-form .wpcf7-response-output {
  border-radius: var(--radius-sm) !important;
  padding: 16px 20px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  margin: 20px 0 0 !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  background: rgba(40, 167, 69, 0.1) !important;
  border-color: var(--success) !important;
  color: var(--success) !important;
}

.wpcf7-form.invalid .wpcf7-response-output {
  background: rgba(232, 93, 4, 0.1) !important;
  border-color: var(--primary) !important;
  color: var(--primary-dark) !important;
}

.wpcf7-not-valid-tip {
  color: #DC3545 !important;
  font-size: 13px !important;
  margin-top: 6px !important;
}

.wpcf7-spinner {
  background-color: var(--primary) !important;
}

/* --- Trust / Testimonials Section --- */
.trust-section {
  background: var(--dark);
  padding: 100px 24px;
}

.trust-section .section-title {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.testimonial-name {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.testimonial-role {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* Partner logos */
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 24px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-column h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Floating Chat Button --- */
.chat-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  border: none;
  font-size: 24px;
}

.chat-fab:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 24px rgba(232,93,4,0.4);
}

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

  .hero-text h1 {
    margin: 0 auto 24px;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-form-card {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .calculator-container {
    grid-template-columns: 1fr;
  }

  .calc-result {
    position: static;
  }

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

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

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .process-line {
    display: none;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .hero-form-card {
    padding: 24px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Print --- */
@media print {
  .hero-section,
  .chat-fab,
  #hero-canvas {
    display: none !important;
  }
}
