/* ===========================================================
   Akçay Nakliyat — Kurumsal Web Sitesi
   Tasarım sistemi & global stiller
   =========================================================== */

:root {
  --navy: #0f2c52;
  --navy-2: #13294b;
  --navy-light: #1c3f70;
  --orange: #f47b20;
  --orange-2: #ff6b1a;
  --orange-dark: #d9621a;
  --ink: #1d2533;
  --muted: #64748b;
  --line: #e6ebf2;
  --bg: #f6f8fc;
  --white: #ffffff;
  --whatsapp: #25d366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(15, 44, 82, 0.08);
  --shadow-md: 0 12px 30px rgba(15, 44, 82, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 44, 82, 0.18);
  --container: 1200px;
  --header-h: 84px;
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Tipografi yardımcıları ---------- */
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.section-title {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.section-title span { color: var(--orange); }
.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin-top: 14px;
  font-size: 16px;
}
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-2), var(--orange-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(244, 123, 32, 0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===========================================================
   HEADER
   =========================================================== */
.topbar {
  background: var(--navy);
  color: #cdd8e8;
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
}
.topbar a { color: #e7eef8; font-weight: 600; }
.topbar-left { display: flex; gap: 22px; }
.topbar-left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar-right .soc { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); transition: .2s; }
.topbar-right .soc:hover { background: var(--orange); }

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 50px; width: auto; }
.menu { display: flex; gap: 6px; align-items: center; }
.menu a {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  border-radius: 8px;
  position: relative;
  transition: color .2s;
}
.menu a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.menu a:hover { color: var(--orange); }
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }
.menu a.active { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 11px; }
.nav-phone .ic { width: 44px; height: 44px; border-radius: 50%; background: rgba(244,123,32,.12); color: var(--orange); display: grid; place-items: center; }
.nav-phone small { display: block; color: var(--muted); font-size: 12px; font-weight: 600; }
.nav-phone strong { display: block; color: var(--navy); font-size: 17px; }
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s; }

/* ===========================================================
   HERO SLIDER
   =========================================================== */
.hero { position: relative; }
.slider { position: relative; height: clamp(520px, 78vh, 760px); overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1s ease;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; visibility: visible; }
.slide::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  z-index: -2;
}
.slide.active::before { animation: kenburns 7s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.14); } to { transform: scale(1); } }
.slide::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(10,26,49,.86) 0%, rgba(10,26,49,.62) 45%, rgba(10,26,49,.2) 100%);
}
.slide-1::before { background-image: url("../assets/hero-1.png"); }
.slide-2::before { background-image: url("../assets/hero-2.png"); }
.slide-3::before { background-image: url("../assets/hero-3.png"); }
.slide-2::after { background: linear-gradient(90deg, rgba(10,26,49,.5) 0%, rgba(10,26,49,.78) 70%); }

.slide-content { max-width: 660px; color: #fff; }
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,123,32,.18);
  border: 1px solid rgba(244,123,32,.5);
  color: #ffd2ad;
  padding: 7px 16px; border-radius: 50px; font-weight: 600; font-size: 13.5px;
  letter-spacing: .5px; margin-bottom: 22px;
}
.slide h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.slide h1 span { color: var(--orange); }
.slide p { font-size: clamp(16px, 1.7vw, 19px); color: #d7e0ee; max-width: 540px; margin-bottom: 30px; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* slide animation in */
.slide.active .slide-tag { animation: fadeUp .7s .2s both; }
.slide.active h1 { animation: fadeUp .7s .35s both; }
.slide.active p { animation: fadeUp .7s .5s both; }
.slide.active .slide-actions { animation: fadeUp .7s .65s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.slider-controls { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 5; display: flex; justify-content: center; gap: 11px; }
.dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; transition: .25s; padding: 0; }
.dot.active { background: var(--orange); border-color: var(--orange); width: 30px; border-radius: 6px; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center;
  backdrop-filter: blur(4px); transition: .2s;
}
.slider-arrow:hover { background: var(--orange); }
.slider-arrow.prev { left: 26px; }
.slider-arrow.next { right: 26px; }

/* ---------- Hero alt: hızlı bilgi şeridi ---------- */
.quickbar { position: relative; margin-top: -56px; z-index: 20; }
.quickbar-inner {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.quick-item { display: flex; gap: 14px; align-items: center; padding: 26px 24px; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.quick-item .qic { width: 48px; height: 48px; border-radius: 12px; background: rgba(244,123,32,.12); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.quick-item h4 { color: var(--navy); font-size: 16px; font-weight: 700; line-height: 1.2; }
.quick-item p { color: var(--muted); font-size: 13.5px; }

/* ===========================================================
   SERVICES
   =========================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .thumb { height: 200px; overflow: hidden; position: relative; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .thumb .badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 52px; height: 52px; border-radius: 14px; background: var(--orange);
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md);
}
.service-card .body { padding: 24px 24px 28px; }
.service-card h3 { color: var(--navy); font-size: 20px; font-weight: 700; margin-bottom: 9px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.service-link { color: var(--orange); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 7px; transition: gap .2s; }
.service-card:hover .service-link { gap: 12px; }

/* icon-only services (no image) */
.feature-card .badge { position: static; margin-bottom: 18px; }

/* ===========================================================
   WHY US
   =========================================================== */
.why { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(244,123,32,.25), transparent 70%);
}
.why .section-title { color: #fff; }
.why-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.why-list { display: grid; gap: 18px; margin-top: 32px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-list .wic { width: 50px; height: 50px; border-radius: 14px; background: rgba(244,123,32,.18); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.why-list h4 { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.why-list p { color: #b9c6db; font-size: 14.5px; }
.why-visual { position: relative; }
.why-visual img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.why-badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--orange); color: #fff; border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow-lg);
}
.why-badge strong { font-size: 34px; font-weight: 800; display: block; line-height: 1; }
.why-badge span { font-size: 13.5px; opacity: .92; }

/* ===========================================================
   STATS COUNTER
   =========================================================== */
.stats { background: linear-gradient(135deg, var(--orange-2), var(--orange-dark)); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { font-size: clamp(34px, 4vw, 52px); font-weight: 800; display: block; line-height: 1; }
.stat span { font-size: 15px; opacity: .95; font-weight: 600; }
.stat .plus { }

/* ===========================================================
   PROCESS STEPS
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 50px; counter-reset: step; }
.step { position: relative; padding: 34px 26px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center; }
.step .num {
  counter-increment: step;
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff;
  display: grid; place-items: center; font-size: 22px; font-weight: 800;
}
.step .num::before { content: counter(step, decimal-leading-zero); }
.step h4 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 60px; right: -18px; width: 36px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 6px, transparent 6px 12px);
}

/* ===========================================================
   CALCULATOR CTA BANNER
   =========================================================== */
.calc-cta { position: relative; overflow: hidden; background: var(--navy); }
.calc-cta::before {
  content: ""; position: absolute; inset: 0; opacity: .14;
  background: url("../assets/hero-1.png") center/cover;
}
.calc-cta .container { position: relative; }
.calc-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.calc-cta h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); font-weight: 800; line-height: 1.2; }
.calc-cta h2 span { color: var(--orange); }
.calc-cta p { color: #c4d0e2; margin-top: 8px; max-width: 540px; }

/* ===========================================================
   COVERAGE / CITIES
   =========================================================== */
.coverage-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.city-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.city-tags span {
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  padding: 9px 16px; border-radius: 50px; font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-sm); transition: .2s;
}
.city-tags span:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }
.coverage-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 36px; border: 1px solid var(--line); }
.coverage-card h3 { color: var(--navy); font-size: 22px; margin-bottom: 8px; }
.mini-routes { margin-top: 22px; display: grid; gap: 12px; }
.route { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--bg); border-radius: var(--radius-sm); border: 1px solid var(--line); }
.route .path { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); font-size: 14.5px; }
.route .path .arr { color: var(--orange); }
.route .km { color: var(--muted); font-size: 13px; font-weight: 600; }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.testi {
  background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); position: relative;
}
.testi .quote { position: absolute; top: 18px; right: 24px; font-size: 64px; color: rgba(244,123,32,.16); font-family: Georgia, serif; line-height: 1; }
.stars { color: #ffb400; margin-bottom: 14px; letter-spacing: 2px; }
.testi p { color: #3a4658; font-size: 15px; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-author .av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 18px; }
.testi-author strong { display: block; color: var(--navy); font-size: 15.5px; }
.testi-author span { color: var(--muted); font-size: 13px; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.contact-item .cic { width: 50px; height: 50px; border-radius: 14px; background: rgba(244,123,32,.12); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.contact-item h4 { color: var(--navy); font-size: 16px; margin-bottom: 2px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: 14.5px; }
.contact-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 36px; border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; color: var(--ink); background: #fbfcfe; transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(244,123,32,.12); }
.field textarea { resize: vertical; min-height: 110px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: #0a1a31; color: #aebccf; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 17px; margin-bottom: 22px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--orange); }
.footer-brand img { height: 48px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { font-size: 14px; margin-bottom: 20px; }
.footer-soc { display: flex; gap: 10px; }
.footer-soc a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; transition: .2s; }
.footer-soc a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14.5px; transition: .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--orange); padding-left: 5px; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 14px; font-size: 14.5px; align-items: flex-start; }
.footer-contact .fic { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 56px; padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13.5px; }

/* ===========================================================
   FLOATING BUTTONS (WhatsApp + Top)
   =========================================================== */
.float-stack { position: fixed; right: 22px; bottom: 24px; z-index: 950; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.fab {
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow-lg); cursor: pointer; border: 0; transition: transform .2s;
  position: relative;
}
.fab:hover { transform: scale(1.08); }
.fab-wa { background: var(--whatsapp); }
.fab-wa::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--whatsapp); animation: ripple 1.8s infinite;
}
@keyframes ripple { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
.fab-wa .wa-tip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: #fff; color: var(--navy); padding: 9px 15px; border-radius: 10px; box-shadow: var(--shadow-md);
  font-size: 14px; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: .25s;
}
.fab-wa .wa-tip::after { content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 12px; height: 12px; background: #fff; }
.fab-wa:hover .wa-tip { opacity: 1; right: 78px; }
.fab-top { background: var(--navy); opacity: 0; visibility: hidden; transform: translateY(10px); }
.fab-top.show { opacity: 1; visibility: visible; transform: none; }

/* ===========================================================
   PAGE HEADER (iç sayfa)
   =========================================================== */
.page-head { background: var(--navy); color: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; opacity: .16; background: url("../assets/hero-3.png") center/cover; }
.page-head::after { content: ""; position: absolute; right: -100px; bottom: -120px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(244,123,32,.3), transparent 70%); }
.page-head .container { position: relative; }
.page-head h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.5px; }
.page-head h1 span { color: var(--orange); }
.breadcrumb { display: flex; gap: 9px; align-items: center; margin-top: 12px; color: #aebccf; font-size: 14px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--orange); }

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .why-wrap, .coverage-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quickbar-inner { grid-template-columns: repeat(2, 1fr); }
  .quick-item:nth-child(2) { border-right: 0; }
}
@media (max-width: 860px) {
  .menu, .nav-phone span, .topbar-left span:nth-child(2) { display: none; }
  .menu.open { display: flex; }
  .menu {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; padding: 14px;
    box-shadow: var(--shadow-md); border-top: 1px solid var(--line); gap: 2px;
  }
  .menu a { padding: 14px 16px; border-radius: 10px; }
  .menu a:hover { background: var(--bg); }
  .burger { display: flex; }
  .burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }
  .services-grid, .testi-grid, .steps, .footer-grid, .quickbar-inner, .form-row { grid-template-columns: 1fr; }
  .quick-item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .quickbar { margin-top: -30px; }
  .slider-arrow { display: none; }
  .why-badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .topbar-left span:first-child { font-size: 12.5px; }
  .float-stack { right: 16px; bottom: 16px; }
}
