/* ===================================
   LEX – Verbeterde base styles
=================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #152447 0, #050915 45%, #02040a 100%);
  color: #e7ecff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================================
   Header / nav
=================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: linear-gradient(to right, rgba(6, 15, 38, 0.95), rgba(5, 11, 24, 0.95));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 20%, #5ad0ff, #3067ff, #0b1b5a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.7rem;
  opacity: 0.85;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd66b, #ff8f4c);
  transition: width .25s ease;
}

.main-nav a:hover {
  color: #ffd66b;
}

.main-nav a:hover::after {
  width: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(2, 11, 34, 0.85);
  border: 1px solid rgba(93, 164, 255, 0.4);
  transition: all 0.2s ease;
}

.header-phone:hover {
  background: rgba(93, 164, 255, 0.15);
  border-color: rgba(93, 164, 255, 0.6);
}

.header-phone i {
  font-size: 0.85rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 159, 76, 0.45);

}

/* Hamburger menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: none;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.12);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===================================
   Buttons
=================================== */
.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd76c, #ff9f4c);
  color: #131521;
  box-shadow: 0 8px 24px rgba(255, 159, 76, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 159, 76, 0.45);
}

.btn-ghost {
  background: rgba(4, 12, 36, 0.85);
  color: #e8edff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
}

.btn-full {
  width: 100%;
}

/* ===================================
   Hero
=================================== */
.hero {
  position: relative;
  padding-top: 96px;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.15) brightness(1.15);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(57,111,255,0.2), transparent 60%),
    linear-gradient(to bottom, rgba(3,8,22,0.6), rgba(5,8,16,0.7) 70%, #050816 100%);
  mix-blend-mode: normal;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 1.5rem 4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.badge {
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(4, 12, 36, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #26ff74;
  box-shadow: 0 0 0 4px rgba(38,255,116,0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.badge-soft-green {
  border-color: rgba(50, 211, 132, 0.6);
  background: radial-gradient(circle at top left, rgba(65, 238, 167, 0.2), rgba(3,12,36,0.95));
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem);
  line-height: 1.15;
  margin: 0 0 1.2rem;
  font-weight: 800;
}

.hero h1 .accent {
  color: #ffd66b;
  background: linear-gradient(135deg, #ffd66b, #ff9f4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.96;
  margin-bottom: 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.95;
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stats .stat-label {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffd66b;
}

.hero-stats .stat-value {
  opacity: 0.85;
  font-size: 0.8rem;
}

/* ===================================
   Scenario kaart rechts
=================================== */
.hero-scenarios {
  background: radial-gradient(circle at top left, rgba(70,116,255,0.18), rgba(3,8,23,0.98));
  border-radius: 24px;
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 420px;
  margin-left: auto;
  backdrop-filter: blur(10px);
}

.hero-scenarios h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd96b;
  margin: 0 0 0.6rem;
  font-weight: 700;
}

.scenario-intro {
  font-size: 0.82rem;
  opacity: 0.9;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

/* --- visual met voertuigen --- */
.scenario-visual {
  position: relative;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  background: 
    radial-gradient(circle at center, rgba(24,37,80,0.8), rgba(5,11,32,0.95) 70%),
    linear-gradient(45deg, rgba(57,111,255,0.1) 0%, transparent 50%, rgba(255,159,76,0.1) 100%);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.vehicle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: all 0.3s ease;
}

.vehicle-left {
  left: 15%;
}

.vehicle-right {
  right: 15%;
}

.impact-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 0 solid rgba(255,215,107,0.8);
  opacity: 0;
  transform: translate(-50%, -50%);
}

/* Impact animatie */
.scenario-visual.impact .vehicle-left {
  animation: smoothDriveLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-visual.impact .vehicle-right {
  animation: smoothDriveRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.scenario-visual.impact .impact-ring {
  animation: impactRing 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes smoothDriveLeft {
  0%   { left: 15%; opacity: 1; }
  40%  { left: 48%; opacity: 1; }
  50%  { left: 50%; opacity: 1; }
  60%  { left: 48%; opacity: 1; }
  100% { left: 48%; opacity: 1; }
}

@keyframes smoothDriveRight {
  0%   { right: 15%; opacity: 1; }
  40%  { right: 48%; opacity: 1; }
  50%  { right: 50%; opacity: 1; }
  60%  { right: 48%; opacity: 1; }
  100% { right: 48%; opacity: 1; }
}

@keyframes impactRing {
  0%   { 
    width: 0; 
    height: 0; 
    border-width: 0; 
    opacity: 0; 
  }
  45%  { 
    width: 80px; 
    height: 80px; 
    border-width: 8px; 
    opacity: 0.9;
    border-color: rgba(255,215,107,0.9);
  }
  70%  { 
    width: 120px; 
    height: 120px; 
    border-width: 4px; 
    opacity: 0.5;
    border-color: rgba(255,159,76,0.6);
  }
  100% { 
    width: 160px; 
    height: 160px; 
    border-width: 1px; 
    opacity: 0;
    border-color: rgba(255,159,76,0.2);
  }
}

.hero-scenarios h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.scenario-text {
  font-size: 0.88rem;
  opacity: 0.94;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.scenario-tag {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(4, 12, 36, 0.9);
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  cursor: pointer;
  color: #e2e8ff;
  transition: all 0.2s ease;
  font-weight: 500;
}

.scenario-tag:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
}

.scenario-tag.active {
  background: linear-gradient(120deg, #ffd76c, #ff9850);
  color: #16182a;
  border-color: transparent;
  font-weight: 600;
}

.scenario-footer {
  margin-top: 1rem;
  font-size: 0.76rem;
  opacity: 0.8;
  font-style: italic;
}
.footer-powered {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.2rem 1.5rem;
  text-align: center;
}

.footer-powered p {
  margin: 0;
  font-size: 0.8rem;
  color: #fff;
  opacity: 0.9;
}

.powered-brand {
  background: linear-gradient(135deg, #ffd76c, #ff9f4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* ===================================
   Sections
=================================== */
.section {
  padding: 5rem 0;
  background: transparent;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(44,74,150,0.35), rgba(5,10,22,0.95));
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.section-header p {
  margin: 0;
  opacity: 0.88;
  font-size: 1.05rem;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(49,88,214,0.35), rgba(6,14,35,0.98));
  border-radius: 24px;
  padding: 2rem 1.8rem 2.2rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.15);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 20%, #ffe589, #ff974b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #151625;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(255,149,75,0.3);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.92;
  line-height: 1.65;
}

/* Werkwijze */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd76c, #ff9b52);
  color: #101222;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255,155,82,0.4);
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.steps p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.92;
  line-height: 1.65;
}

.info-panel {
  background: radial-gradient(circle at top left, rgba(55,201,139,0.3), rgba(4,10,24,0.98));
  padding: 2rem 1.8rem;
  border-radius: 24px;
  border: 1px solid rgba(188, 255, 211, 0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.info-panel h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.info-panel p {
  line-height: 1.65;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  font-size: 0.92rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.checklist i {
  color: #6fffb2;
  font-size: 1.1rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.team-card {
  background: radial-gradient(circle at top left, rgba(75,111,223,0.4), rgba(5,10,24,0.98));
  border-radius: 24px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.15);
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 20%, #ffe589, #ff974b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #151625;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(255,149,75,0.3);
}

.team-card h3 {
  margin: 0 0 0.3rem;
  font-weight: 700;
}

.team-card .role {
  font-size: 0.82rem;
  opacity: 0.8;
  margin: 0 0 0.8rem;
  color: #ffd66b;
  font-weight: 600;
}

.team-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.testimonial {
  background: radial-gradient(circle at top left, rgba(73,116,232,0.38), rgba(4,10,23,0.98));
  border-radius: 24px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.15);
}

.quote {
  margin: 0 0 1rem;
  line-height: 1.7;
  font-style: italic;
}

.author {
  margin: 0;
  opacity: 0.85;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffd66b;
}

/* Contact */
.section-contact {
  background: radial-gradient(circle at top left, rgba(80,122,255,0.42), rgba(4,10,23,0.98));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.contact-list i {
  color: #ffd66b;
  font-size: 1.1rem;
}

/* Form */
.contact-form-wrapper {
  background: rgba(7, 15, 40, 0.95);
  border-radius: 24px;
  padding: 2rem 2rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

.alert {
  border-radius: 14px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74,222,128,0.6);
  color: #a7f3d0;
}

.alert-error {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248,113,113,0.65);
  color: #fca5a5;
}

.alert i {
  font-size: 1.2rem;
}

.contact-form {
  margin-top: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  opacity: 0.95;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(3, 10, 30, 0.95);
  color: #e6ecff;
  font: inherit;
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(137, 180, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(137, 180, 255, 0.15);
  background: rgba(3, 10, 30, 1);
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: rgba(248,113,113,0.9);
  background: rgba(248,113,113,0.05);
}

.checkbox-group {
  margin: 0.5rem 0 1.5rem;
  font-size: 0.85rem;
}

.checkbox-group.has-error label {
  color: #fca5a5;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-group a {
  color: #ffd66b;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 0;
  background: #050814;
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: #ffd66b;
}

/* ===================================
   Responsive Design
=================================== */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
  
  .hero-scenarios {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
  }
  
  .two-column {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 68px;
  }
  
  .brand-title {
    font-size: 0.95rem;
  }
  
  .brand-subtitle {
    font-size: 0.65rem;
  }
  
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(16,41,90,0.98), rgba(4,9,20,0.99));
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  
  .main-nav.open {
    display: flex;
  }
  
  .main-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    font-size: 1rem;
  }
  
  .main-nav a:last-child {
    border-bottom: none;
  }
  
  .main-nav a::after {
    display: none;
  }
  
  .header-phone .phone-text {
    display: none;
  }
  
  .header-phone {
    padding: 0.45rem 0.65rem;
  }
  
  .header-cta {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding-top: 88px;
  }
  
  .hero-inner {
    padding: 3rem 1.5rem;
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-lead {
    font-size: 0.95rem;
  }
  
  .hero-cta-row {
    gap: 0.8rem;
  }
  
  .btn {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.2rem;
  }
  
  .scenario-visual {
    height: 130px;
  }
  
  .vehicle {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .section-header p {
    font-size: 0.95rem;
  }
  
  .cards-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .header-inner {
    height: 64px;
    padding: 0 1rem;
  }
  
  .brand-logo {
    width: 38px;
    height: 38px;
  }
  
  .hero {
    padding-top: 84px;
  }
  
  .hero-inner {
    padding: 2.5rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-lead {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-row .btn {
    width: 100%;
  }
  
  .hero-badges {
    gap: 0.5rem;
  }
  
  .badge {
    font-size: 0.68rem;
    padding: 0.25rem 0.6rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-stats > div {
    text-align: center;
    padding: 0.8rem;
    background: rgba(4, 12, 36, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  
  .hero-scenarios {
    padding: 1.2rem;
  }
  
  .scenario-visual {
    height: 110px;
  }
  
  .vehicle {
    font-size: 1.8rem;
  }
  
  .scenario-tags {
    gap: 0.4rem;
  }
  
  .scenario-tag {
    font-size: 0.68rem;
    padding: 0.25rem 0.6rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.4rem;
  }
  
  .section-header p {
    font-size: 0.88rem;
  }
  
  .card,
  .team-card,
  .testimonial,
  .info-panel {
    padding: 1.5rem 1.2rem;
  }
  
  .steps li {
    padding-left: 2.5rem;
  }
  
  .steps li::before {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  
  .contact-form-wrapper {
    padding: 1.2rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.65rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .scenario-visual {
    height: 100px;
  }
  
  .vehicle {
    font-size: 1.5rem;
  }
}