/* ============================================================
   Yakışıklı Sondaj ve Harita — Ziyaretçi Stili (vanilla CSS)
   "Engineering-Grade": Deep Navy + Engineering Blue + Earth Gray
   ============================================================ */

:root {
  /* Renkler (design tokens) */
  --primary:            #006098;
  --primary-container:  #007abf;
  --on-primary:         #ffffff;
  --deep-navy:          #032E42;
  --earth-gray:         #F6F3EE;
  --cad-grid:           #E2E8F0;
  --safety-red:         #D83030;
  --tertiary-container: #db3232;

  --surface:            #faf9fb;
  --surface-lowest:     #ffffff;
  --surface-low:        #f4f3f5;
  --surface-container:  #efedf0;
  --surface-high:       #e9e8ea;

  --on-surface:         #1a1c1e;
  --on-surface-variant: #404751;
  --outline:            #707882;
  --outline-variant:    #bfc7d2;
  --secondary:          #406278;
  --secondary-fixed-dim:#a8cbe5;
  --primary-fixed-dim:  #98cbff;
  --success:            #2e7d32;

  /* Ölçü */
  --container-max: 1280px;
  --gutter: 24px;
  --radius: 4px;
  --radius-lg: 8px;
  --section-padding: 80px;

  --shadow-ambient: 0 20px 40px -5px rgba(3, 46, 66, 0.08);
  --shadow-sm: 0 1px 3px rgba(3, 46, 66, 0.06);

  /* Tipografi */
  --font-head: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Fira Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;
}

/* ---------- Reset & taban ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-surface);
  background: var(--earth-gray);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--deep-navy); margin: 0 0 .5em; line-height: 1.15; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
main { flex: 1 0 auto; }

/* Yardımcılar */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary);
  display: block; margin-bottom: 10px;
}
.mono { font-family: var(--font-mono); }
.section { padding: var(--section-padding) 0; }
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: 32px; }
.text-center { text-align: center; }

/* Material Symbols ikon boyutu */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal; font-style: normal;
  line-height: 1; letter-spacing: normal; text-transform: none;
  display: inline-block; white-space: nowrap; direction: ltr;
  -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1;
}
.btn .material-symbols-outlined { font-size: 18px; }
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-container); }
.btn-outline { background: transparent; border-color: var(--deep-navy); color: var(--deep-navy); }
.btn-outline:hover { background: var(--deep-navy); color: #fff; }
.btn-ghost-light { background: transparent; border-color: var(--outline-variant); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--deep-navy); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface-lowest);
  border-bottom: 1px solid var(--cad-grid);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container-max); margin: 0 auto;
  padding: 12px var(--gutter);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 46px; width: auto; }
.nav-brand-text { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--deep-navy); line-height: 1.1; }
.nav-brand-text small { display: block; font-size: 11px; font-weight: 500; color: var(--primary); letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--on-surface-variant);
  padding: 8px 12px; border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--surface-low); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; color: var(--primary); padding: 8px; border-radius: var(--radius); }
.nav-phone:hover { background: var(--surface-low); }
.nav-toggle { display: none; background: none; border: 0; color: var(--deep-navy); cursor: pointer; padding: 6px; }
.nav-toggle .material-symbols-outlined { font-size: 30px; }

/* Mobil menü */
.nav-mobile { display: none; border-top: 1px solid var(--cad-grid); background: var(--surface-lowest); }
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 14px var(--gutter);
  font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--on-surface-variant); border-bottom: 1px solid var(--surface-low);
}
.nav-mobile a:hover { background: var(--surface-low); color: var(--primary); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; background: var(--deep-navy); color: #fff;
  overflow: hidden; padding: 72px 0 var(--section-padding);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .28;
}
.hero::after { /* alt degrade — istatistik kartı geçişi */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(3,46,66,.4)); z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center;
  max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter);
}
.hero-logo {
  width: 150px; height: 150px; background: #fff; border-radius: var(--radius-lg);
  padding: 16px; box-shadow: var(--shadow-ambient); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.hero h1 { color: #fff; font-size: 48px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 20px; }
.hero-lead { font-size: 18px; color: var(--secondary-fixed-dim); max-width: 640px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-badge {
  background: var(--surface-lowest); color: var(--deep-navy);
  padding: 24px; border-radius: var(--radius); border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-ambient); width: 100%; max-width: 260px; justify-self: end;
}
.hero-badge .material-symbols-outlined { color: var(--primary); font-size: 38px; margin-bottom: 8px; }
.hero-badge .lbl { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; color: var(--on-surface-variant); letter-spacing: .05em; }
.hero-badge .val { font-family: var(--font-head); font-size: 24px; font-weight: 600; }
.hero-badge .sub { font-family: var(--font-mono); font-size: 13px; color: var(--outline); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--cad-grid); }

/* ============================================================
   İSTATİSTİK KARTI (hero ile örtüşür)
   ============================================================ */
.stats {
  position: relative; z-index: 20; margin: -60px auto 0;
  max-width: var(--container-max);
  background: var(--surface-lowest); border: 1px solid var(--cad-grid);
  border-radius: var(--radius); box-shadow: var(--shadow-ambient);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat { text-align: center; padding: 32px 16px; }
.stat + .stat { border-left: 1px solid var(--cad-grid); }
.stat .num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; display: block; }
.stat .lbl { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--on-surface-variant); }

/* ============================================================
   HİZMET KARTLARI
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card {
  background: var(--surface-lowest); border: 1px solid var(--cad-grid);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: var(--primary); box-shadow: var(--shadow-ambient); }
.card-media { height: 190px; overflow: hidden; position: relative; background: var(--surface-high); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-media img { transform: scale(1.05); }
.card-media-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--deep-navy), var(--primary));
}
.card-media-fallback .material-symbols-outlined { color: rgba(255,255,255,.85); font-size: 56px; }
.card-badge {
  position: absolute; top: 14px; right: 14px;
  background: #fff; color: var(--deep-navy); border: 1px solid var(--cad-grid);
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em;
  padding: 4px 10px; border-radius: var(--radius);
}
.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-icon { color: var(--primary); margin-bottom: 14px; }
.card-icon .material-symbols-outlined { font-size: 28px; }
.card-body h3 { font-size: 22px; margin-bottom: 12px; }
.card-body p { color: var(--on-surface-variant); font-size: 15px; flex: 1; }
.card-link {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em;
  color: var(--primary); display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
}
.card-link .material-symbols-outlined { font-size: 16px; }
.card:hover .card-link { color: var(--primary-container); }

/* ============================================================
   MAKİNE PARKURU (navy asimetrik)
   ============================================================ */
.fleet { background: var(--deep-navy); color: #fff; }
.fleet-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.fleet-media { position: relative; }
.fleet-media .frame-tl, .fleet-media .frame-br { position: absolute; width: 90px; height: 90px; z-index: 0; opacity: .5; }
.fleet-media .frame-tl { top: -16px; left: -16px; border-top: 2px solid var(--primary); border-left: 2px solid var(--primary); }
.fleet-media .frame-br { bottom: -16px; right: -16px; border-bottom: 2px solid var(--primary); border-right: 2px solid var(--primary); }
.fleet-media img, .fleet-media .ph {
  position: relative; z-index: 1; width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-ambient);
}
.fleet-media .ph { background: linear-gradient(135deg, #0a3f5a, var(--primary)); display: flex; align-items: center; justify-content: center; }
.fleet-media .ph .material-symbols-outlined { font-size: 90px; color: rgba(255,255,255,.4); }
.fleet h2 { color: #fff; font-size: 40px; font-weight: 800; letter-spacing: -.02em; }
.fleet .eyebrow { color: var(--primary-fixed-dim); }
.fleet-lead { color: var(--secondary-fixed-dim); font-size: 18px; }
.fleet-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }
.fleet-feature { border-left: 2px solid var(--primary); padding-left: 16px; }
.fleet-feature h4 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.fleet-feature p { color: var(--outline-variant); font-size: 15px; margin: 0; }

/* ============================================================
   İŞ AKIŞI (6 adım)
   ============================================================ */
.workflow { background: var(--earth-gray); }
.timeline { position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 32px; left: 8%; right: 8%; height: 2px;
  background: var(--cad-grid); z-index: 0;
}
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; position: relative; z-index: 1; }
.step { text-align: center; }
.step-dot {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-lowest); border: 2px solid var(--primary);
  box-shadow: var(--shadow-ambient);
}
.step-dot .material-symbols-outlined { color: var(--primary); font-size: 26px; }
.step.active .step-dot { background: var(--primary); }
.step.active .step-dot .material-symbols-outlined { color: #fff; }
.step h4 { font-size: 18px; margin-bottom: 6px; }
.step p { font-family: var(--font-mono); font-size: 13px; color: var(--outline); margin: 0; }

/* ============================================================
   REFERANS LOGOLARI (marquee)
   ============================================================ */
.trust { background: #fff; border-top: 1px solid var(--cad-grid); border-bottom: 1px solid var(--cad-grid); padding: 48px 0; overflow: hidden; }
.trust h3 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--outline-variant); text-align: center; margin-bottom: 28px; }
.marquee { display: flex; overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 64px; padding: 0 32px; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.trust-logo { height: 48px; min-width: 130px; border: 1px solid var(--cad-grid); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--outline); opacity: .6; border-radius: var(--radius); padding: 0 12px; }
.trust-logo img { max-height: 40px; width: auto; opacity: .75; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact-box {
  background: #fff; border: 1px solid var(--cad-grid); border-radius: var(--radius);
  box-shadow: var(--shadow-ambient); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.contact-info { background: var(--surface-low); padding: 48px; border-right: 1px solid var(--cad-grid); }
.contact-info h2 { font-size: 30px; margin-bottom: 8px; }
.contact-info > p { color: var(--on-surface-variant); margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-item .material-symbols-outlined { color: var(--primary); margin-top: 2px; }
.contact-item .lbl { display: block; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--outline); margin-bottom: 3px; }
.contact-item .val { font-family: var(--font-head); font-size: 20px; color: var(--deep-navy); }
.contact-item p.val { font-family: var(--font-body); font-size: 16px; font-weight: 400; }
.contact-map { margin-top: 8px; height: 200px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--cad-grid); }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4); }
.contact-form { padding: 48px; }
.contact-form h3 { font-size: 24px; margin-bottom: 24px; }

/* Formlar */
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: 13px; color: var(--on-surface-variant); margin-bottom: 6px; }
.field .req { color: var(--safety-red); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--cad-grid); border-radius: var(--radius);
  padding: 12px 14px; font-family: var(--font-body); font-size: 16px; color: var(--on-surface);
  background: var(--earth-gray); transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(0,96,152,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Uyarılar */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 15px; border: 1px solid transparent; }
.alert-success { background: #e7f4e8; color: #1b5e20; border-color: #b6dbb8; }
.alert-error { background: #fdecea; color: #93000a; border-color: #f5c6c2; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--deep-navy); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--gutter); padding: var(--section-padding) 0 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 52px; background: #fff; padding: 6px; border-radius: var(--radius); }
.footer-brand span { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: #fff; }
.footer p { color: rgba(255,255,255,.8); font-size: 15px; max-width: 380px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--outline-variant); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--surface-high); font-size: 15px; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { display: inline-flex; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); align-items: center; justify-content: center; color: #fff; }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom span, .footer-bottom a { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 100;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .2s;
}
.fab:hover { transform: scale(1.08); }
.fab .material-symbols-outlined { font-size: 30px; }
.fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: .5; animation: fabpulse 2s ease-out infinite; z-index: -1; }
@keyframes fabpulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.8); opacity: 0; } }

/* ============================================================
   İÇ SAYFALAR (page hero + içerik)
   ============================================================ */
.page-hero { background: var(--deep-navy); color: #fff; padding: 56px 0; position: relative; }
.page-hero h1 { color: #fff; font-size: 40px; margin-bottom: 8px; }
.page-hero p { color: var(--secondary-fixed-dim); max-width: 720px; margin: 0; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; color: var(--primary-fixed-dim); }
.breadcrumb a { color: var(--primary-fixed-dim); }
.breadcrumb a:hover { color: #fff; }

.prose { max-width: 820px; }
.prose h2 { font-size: 26px; margin-top: 1.6em; }
.prose h3 { font-size: 21px; margin-top: 1.4em; }
.prose p, .prose li { color: var(--on-surface-variant); font-size: 17px; line-height: 1.75; }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }
.prose a { text-decoration: underline; }
.prose blockquote { border-left: 4px solid var(--primary); background: var(--surface-low); margin: 1.5em 0; padding: 16px 24px; border-radius: 0 var(--radius) var(--radius) 0; }
.prose table { border-collapse: collapse; width: 100%; margin: 1.5em 0; }
.prose th, .prose td { border: 1px solid var(--cad-grid); padding: 10px 14px; text-align: left; }
.prose th { background: var(--surface-low); }

/* Blog/proje ızgara kartı */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card { background: #fff; border: 1px solid var(--cad-grid); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s, box-shadow .2s; }
.post-card:hover { border-color: var(--primary); box-shadow: var(--shadow-ambient); }
.post-card .card-media { height: 200px; }
.post-card .card-body h3 { font-size: 20px; }
.post-meta { font-family: var(--font-mono); font-size: 12px; color: var(--outline); margin-bottom: 10px; display: flex; gap: 12px; flex-wrap: wrap; }

/* SSS akordeon */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--cad-grid); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--deep-navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .material-symbols-outlined { color: var(--primary); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q .material-symbols-outlined { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq-item.open .faq-a { padding: 0 24px 22px; max-height: 600px; }
.faq-a p { color: var(--on-surface-variant); margin: 0; }

/* CTA bandı */
.cta-band { background: var(--primary); color: #fff; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 48px var(--gutter); }
.cta-band h2 { color: #fff; font-size: 28px; margin: 0; }
.cta-band p { color: rgba(255,255,255,.85); margin: 6px 0 0; }

/* Bilgi kutuları (hizmet/proje yan panel) */
.info-card { background: #fff; border: 1px solid var(--cad-grid); border-left: 4px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; padding: 24px; }
.info-card h4 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--primary); margin-bottom: 14px; }
.info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--cad-grid); font-size: 15px; }
.info-row:last-child { border-bottom: 0; }
.info-row .k { color: var(--outline); font-family: var(--font-mono); font-size: 13px; }
.info-row .v { color: var(--deep-navy); font-weight: 500; }

.layout-2col { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .fleet-inner { gap: 40px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
  .timeline::before { display: none; }
}
@media (max-width: 860px) {
  :root { --section-padding: 56px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-badge { justify-self: start; }
  .hero h1 { font-size: 34px; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--cad-grid); }
  .cards, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .fleet-inner { grid-template-columns: 1fr; }
  .fleet-media { order: 2; }
  .fleet-features { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; }
  .contact-info { border-right: 0; border-bottom: 1px solid var(--cad-grid); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .layout-2col { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 28px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
