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

:root {
  --white:    #ffffff;
  --offwhite: #f5f7ff;
  --gray-50:  #f1f4fb;
  --gray-100: #e4e8f5;
  --gray-300: #c8cfe0;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #0d1220;
  --accent:   #2352d6;
  --accent-h: #1a42c0;
  --accent-lt:#eef2ff;
  --accent-2: #f97316;
  --accent-2h:#ea6b08;
  --footer-bg:#0a0e1a;
  --footer-mid:#0f1526;
  --radius:   12px;
  --radius-lg:20px;
  --shadow-sm:0 1px 4px rgba(15,25,60,.08);
  --shadow:   0 4px 20px rgba(15,25,60,.11);
  --shadow-lg:0 16px 52px rgba(15,25,60,.16);
  --transition:.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--offwhite); }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 62px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo-wrap .logo-img {
  height: 80px;
  mix-blend-mode: multiply;
}

.logo-msv     { color: var(--accent); }
.logo-transport { color: var(--gray-900); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  color: var(--white);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-h);
  box-shadow: 0 6px 20px rgba(29,78,216,.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-sm { padding: .55rem 1.25rem; font-size: .88rem; }
.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero-wrap {
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1a3a 55%, #1a1040 100%);
  position: relative;
  overflow: hidden;
}
.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(35,82,214,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(249,115,22,.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 9rem 1.5rem 5rem;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: #93c5fd;
  border: 1px solid rgba(147,197,253,.25);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.section-badge {
  display: inline-block;
  background: var(--accent-lt);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.hero-content h1 .accent {
  background: linear-gradient(90deg, #60a5fa, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Hero-Buttons auf dunklem Hintergrund */
.hero .btn-outline {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.5rem; font-weight: 800; color: #fff; }
.stat span   { font-size: .8rem; color: rgba(255,255,255,.5); font-weight: 500; }
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* Hero visual cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-card:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,.11);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.hero-card strong { display: block; font-weight: 700; font-size: 1rem; color: #fff; }
.hero-card small  { color: rgba(255,255,255,.55); font-size: .82rem; }
.hcard-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  flex-shrink: 0;
}
.hcard-icon svg {
  width: 24px;
  height: 24px;
  stroke: #93c5fd;
}

.card-1 { align-self: flex-start; margin-left: 2rem; }
.card-2 { align-self: center; }
.card-3 { align-self: flex-end; margin-right: 2rem; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--gray-900);
  margin-bottom: .75rem;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1rem;
}

/* ===== VEHICLE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.vehicle-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vehicle-img {
  position: relative;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  height: 150px;
}
.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-img svg {
  width: 58px;
  height: 58px;
  stroke: var(--accent);
  opacity: .8;
}

.vehicle-info { padding: 1.5rem; }

.vehicle-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-2h));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.vehicle-tag--unavail {
  background: var(--gray-300);
  color: var(--gray-700);
}
.vehicle-card--unavailable .vehicle-img { filter: grayscale(1) opacity(.6); }
.vehicle-unavail-badge {
  position: absolute;
  top: .6rem;
  right: .6rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 4px;
}

.vehicle-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--gray-900);
}
.vehicle-info p {
  color: var(--gray-500);
  font-size: .9rem;
  margin-bottom: 1.25rem;
}

.vehicle-specs {
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}
.vehicle-specs li {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  padding: .35rem 0;
  border-bottom: 1px solid var(--gray-50);
}
.vehicle-specs li span { color: var(--gray-500); }
.vehicle-specs li strong { font-weight: 600; color: var(--gray-900); }

/* ===== STEPS ===== */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.step-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-lt);
  -webkit-text-stroke: 2px var(--accent);
  margin-bottom: .75rem;
  line-height: 1;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.step-card p  { color: var(--gray-500); font-size: .9rem; }

.step-connector {
  font-size: 1.5rem;
  color: var(--gray-300);
  flex-shrink: 0;
}

.info-box {
  background: var(--accent-lt);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .92rem;
  color: var(--accent-h);
}
.info-icon {
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--accent-h);
}
.info-icon svg { width: 18px; height: 18px; stroke: var(--accent-h); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .section-badge { margin-bottom: 1rem; }
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.about-text p {
  color: var(--gray-500);
  margin-bottom: 1rem;
  font-size: .97rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1.5rem;
}
.highlight {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  font-weight: 500;
}
.hi-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.about-card { position: relative; }

.contact-quick {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-quick h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

/* ===== CONTACT ITEM (shared) ===== */
.cq-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.25rem;
}
.cq-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.cq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}
.cq-item > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.cq-item strong { font-size: .8rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; }
.cq-item span, .cq-item a { font-size: .95rem; color: var(--gray-900); }
.cq-item a { color: var(--accent); }
.cq-item a:hover { text-decoration: underline; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: flex-start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200, #e5e7eb);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: .75rem;
  text-align: center;
}

.form-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: .95rem;
}

.contact-info-panel {
  position: sticky;
  top: 90px;
}
.contact-info-panel h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.map-placeholder {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.map-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 2rem;
  background: var(--gray-50);
  text-align: center;
  transition: background var(--transition);
}
.map-link:hover { background: var(--accent-lt); }
.map-icon svg { width: 36px; height: 36px; stroke: var(--accent); }
.map-link strong { color: var(--accent); font-size: .95rem; }
.map-link small  { color: var(--gray-500); font-size: .82rem; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  overflow: hidden;
}

/* Split-Layout */
.footer-split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 360px;
}

/* Linke dunkle Seite */
.footer-left {
  background: var(--footer-bg);
  padding: 4rem 3.5rem 4rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-left-inner {
  width: 100%;
  max-width: 480px;
}

.footer-left .logo {
  display: inline-flex;
  margin-bottom: 1rem;
}
.footer-left .logo-msv      { color: #60a5fa; }
.footer-left .logo-transport { color: rgba(255,255,255,.9); }

.footer-left > div > .footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 2.5rem;
}

.footer-nav-group {
  display: flex;
  gap: 4rem;
}

.footer-nav-col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 1rem;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-nav-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-nav-col a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Rechte blaue Seite */
.footer-right {
  background: linear-gradient(145deg, #1a3bad 0%, #2352d6 45%, #2d6af4 100%);
  padding: 4rem 4rem 4rem 3.5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Dekorative Kreise im Hintergrund */
.footer-right::before,
.footer-right::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.footer-right::before {
  width: 300px; height: 300px;
  background: rgba(255,255,255,.05);
  top: -80px; right: -60px;
}
.footer-right::after {
  width: 180px; height: 180px;
  background: rgba(255,255,255,.04);
  bottom: -50px; left: 30px;
}

.footer-right-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.footer-right-inner h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.footer-right-inner .footer-right-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.1rem;
}
.footer-contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .05rem;
}
.footer-contact-icon svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255,255,255,.9);
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.footer-contact-item a {
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: #fff; text-decoration: underline; }

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.75rem;
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.footer-cta-btn:hover {
  background: var(--gray-900);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* Bottom-Bar */
.footer-bottom {
  background: rgba(0,0,0,.55);
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3.5rem;
}
.footer-bottom-inner p {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.32);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ===== LEGAL PAGE ===== */
.legal-hero {
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1a3a 100%);
  padding: 7rem 1.5rem 4rem;
  text-align: center;
}
.legal-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}
.legal-hero p {
  color: rgba(255,255,255,.55);
  font-size: 1rem;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.legal-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.legal-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--accent-lt);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.legal-block h2 .lh-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.legal-block h2 .lh-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

.legal-block p {
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .65rem;
}
.legal-block p:last-child { margin-bottom: 0; }

.legal-block a {
  color: var(--accent);
}
.legal-block a:hover { text-decoration: underline; }

.legal-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.7;
}
.legal-block ul li { margin-bottom: .35rem; }

.legal-back-bar {
  background: var(--offwhite);
  border-bottom: 1px solid var(--gray-100);
}
.legal-back-bar .container {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.legal-back-btn:hover { gap: .6rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 6rem; }
  .hero-visual { flex-direction: row; flex-wrap: wrap; }
  .card-1, .card-2, .card-3 { align-self: auto; margin: 0; flex: 1 1 200px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
  .footer-split { grid-template-columns: 1fr; }
  .footer-left { justify-content: flex-start; padding: 3.5rem 2rem 3rem; }
  .footer-right { padding: 3rem 2rem 3.5rem; }
  .footer-bottom-inner { padding: 0 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 82px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }

  .hero { text-align: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }

  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }

  .form-row { grid-template-columns: 1fr; }
  .footer-nav-group { gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; padding: 0 1.5rem; }
  .footer-bottom-links { justify-content: center; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .contact-form { padding: 1.5rem; }
}
