/* ============================================
   YILMAZ OTO KURTARMA - Modern Stylesheet v2
   ============================================ */

:root {
  --blue-900: #0a1f4d;
  --blue-800: #0b3f8f;
  --blue-700: #1257c4;
  --blue-600: #0ea5e9;
  --orange-500: #ff5f0f;
  --orange-400: #ff8a3d;
  --amber-500: #ffb020;
  --dark: #060d1f;
  --dark-soft: #0b1730;
  --text: #16213a;
  --text-light: #5a6b8c;
  --bg: #f4f7fb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(10, 31, 77, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 31, 77, 0.14);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

h1, h2, h3 { font-family: 'Sora', 'Manrope', sans-serif; line-height: 1.18; font-weight: 800; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 14px;
  padding: 15px 28px;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
}

.btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  color: var(--white);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::after { opacity: 1; }

.btn-whatsapp {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: var(--white);
}

.btn-call {
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  color: var(--white);
  padding: 11px 22px;
}

.btn-lg { padding: 18px 36px; font-size: 1.06rem; }
.btn-xl { padding: 20px 42px; font-size: 1.15rem; }
.btn-block { width: 100%; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 9px;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.topbar-phone { font-weight: 800; color: var(--amber-500); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 31, 77, 0.06);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo { width: 60px; height: 60px; object-fit: contain; transition: var(--transition); }
.brand:hover .brand-logo { transform: scale(1.05); }

.nav { display: flex; align-items: center; gap: 28px; }

.nav-link {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover { color: var(--blue-800); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 120;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blue-800);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 90% -20%, rgba(14, 165, 233, 0.22), transparent 60%),
    radial-gradient(700px 500px at -10% 100%, rgba(255, 95, 15, 0.16), transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, var(--dark-soft) 55%, var(--blue-900) 100%);
  color: var(--white);
  padding: 110px 0 140px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  right: -140px;
  top: -140px;
  background: radial-gradient(circle, rgba(255, 95, 15, 0.12), transparent 65%);
  border-radius: 50%;
  filter: blur(20px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 176, 32, 0.1);
  border: 1px solid rgba(255, 176, 32, 0.3);
  color: var(--amber-500);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 9px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--orange-400), var(--amber-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stats li { display: flex; flex-direction: column; position: relative; }

.hero-stats li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats strong {
  font-size: 1.7rem;
  font-family: 'Sora', sans-serif;
  color: var(--amber-500);
}

.hero-stats span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-card-head .hero-card-ico { font-size: 2.1rem; filter: drop-shadow(0 4px 10px rgba(255,95,15,0.4)); }

.hero-card-head strong { display: block; font-size: 1.05rem; }
.hero-card-head span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.big-phone {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber-500);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-card-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
}

.hero-card .btn { margin-bottom: 12px; }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(78% 100% at 50% 100%);
  z-index: 1;
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }

.section-dark {
  background: linear-gradient(150deg, var(--blue-900), var(--dark-soft));
  color: var(--white);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.kicker {
  display: inline-block;
  color: var(--orange-500);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--blue-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-dark .section-head h2 { color: var(--white); }

.section-head p { color: var(--text-light); font-size: 1.02rem; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 31, 77, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--amber-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.service-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(11, 63, 143, 0.12));
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-ico { transform: scale(1.1) rotate(-4deg); }

.service-card h3 {
  font-size: 1.12rem;
  color: var(--blue-900);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.service-link {
  color: var(--orange-500);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover { color: var(--blue-800); letter-spacing: 0.5px; }

.cta-band {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  border-radius: 22px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: '🚚';
  position: absolute;
  right: 30px;
  bottom: -20px;
  font-size: 8rem;
  opacity: 0.06;
}

.cta-band strong { font-size: 1.4rem; display: block; margin-bottom: 6px; }
.cta-band span { color: rgba(255,255,255,0.75); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,176,32,0.3), rgba(255,176,32,0.05), rgba(255,176,32,0.3));
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.step:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-8px); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(255, 95, 15, 0.35);
}

.step h3 { color: var(--white); margin-bottom: 10px; font-size: 1.15rem; }
.step p { color: rgba(255,255,255,0.68); font-size: 0.92rem; }

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.why-item {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 31, 77, 0.05);
  transition: var(--transition);
}

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

.why-ico {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 95, 15, 0.1), rgba(255, 176, 32, 0.1));
  border-radius: 14px;
}

.why-item h3 { font-size: 1.08rem; color: var(--blue-900); margin-bottom: 8px; }
.why-item p { font-size: 0.9rem; color: var(--text-light); }

/* ---------- Areas ---------- */
.section-areas { background: var(--white); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.area-col {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(10, 31, 77, 0.06);
  transition: var(--transition);
}

.area-col:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.area-col h3 {
  color: var(--blue-800);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.area-col li {
  padding: 9px 0;
  border-bottom: 1px dashed rgba(11, 63, 143, 0.14);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}

.area-col li:hover { color: var(--orange-500); padding-left: 6px; }

.area-col li:last-child { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 840px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 31, 77, 0.05);
  transition: var(--transition);
}

.faq-item[open] { border-color: rgba(255, 95, 15, 0.3); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-900);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  color: var(--white);
  font-weight: 800;
  transition: var(--transition);
}

.faq-item[open] .faq-plus { transform: rotate(45deg); }

.faq-item p {
  padding: 0 28px 24px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition);
}

.review-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-6px); }

.stars { color: var(--amber-500); font-size: 1.05rem; display: block; margin-bottom: 16px; letter-spacing: 2px; }

.review-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  font-style: italic;
}

.review-card strong { display: block; color: var(--white); }
.review-src { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(10, 31, 77, 0.05);
  transition: var(--transition);
}

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

.contact-card h3 { font-size: 1.02rem; color: var(--blue-900); margin-bottom: 12px; }

.contact-link {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange-500);
  margin-bottom: 8px;
  transition: var(--transition);
}

.contact-link:hover { color: var(--blue-800); }

.contact-link-text {
  font-weight: 800;
  color: var(--blue-800);
  font-size: 1.02rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-card p { font-size: 0.85rem; color: var(--text-light); }

.contact-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  color: var(--white);
}

.contact-primary h3 { color: var(--white); }
.contact-primary .contact-link { color: var(--white); font-size: 1.4rem; }
.contact-primary .contact-link:hover { color: var(--blue-900); }
.contact-primary p { color: rgba(255,255,255,0.85); }

.contact-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 76px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 56px;
}

.footer-logo { width: 170px; margin-bottom: 20px; }

.footer-brand p { font-size: 0.9rem; line-height: 1.75; }

.footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col li, .footer-contact a, .footer-contact span {
  display: block;
  padding: 7px 0;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--amber-500); padding-left: 4px; }

.footer-contact a { color: var(--amber-500); font-weight: 700; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom strong { color: var(--amber-500); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
  z-index: 90;
  animation: pulse-wa 2s infinite;
  transition: var(--transition);
}

.wa-float:hover { transform: scale(1.12) rotate(6deg); }

@keyframes pulse-wa {
  0% { box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4), 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4), 0 0 0 18px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4), 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ---------- Mobile sticky bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 24px rgba(6, 13, 31, 0.3);
}

.mb-call, .mb-wa {
  padding: 17px;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
}

.mb-call { background: linear-gradient(135deg, var(--orange-500), var(--amber-500)); }
.mb-wa { background: linear-gradient(135deg, #16a34a, #22c55e); }
.mb-call:active, .mb-wa:active { filter: brightness(0.9); }

/* ---------- Reveal animation ---------- */
.service-card, .why-item, .step, .review-card, .area-col, .contact-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .service-card, .why-item, .step, .review-card, .area-col, .contact-card {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-card { max-width: 540px; }
}

@media (max-width: 768px) {
  .topbar-text { display: none; }
  .topbar-inner { justify-content: flex-end; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 24px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.2);
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 110;
  }

  .nav.open { right: 0; }
  .nav-link { font-size: 1.15rem; }

  .nav-toggle { display: block; }
  .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); }

  .section { padding: 72px 0; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 72px 0 100px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .contact-cta { flex-direction: column; align-items: stretch; }
  .contact-cta .btn { width: 100%; }
  .cta-band { padding: 32px; }
  .cta-band .btn { width: 100%; }
  .cta-band { flex-direction: column; text-align: center; }

  body { padding-bottom: 64px; }
  .mobile-bar { display: grid; }
  .wa-float { bottom: 84px; right: 18px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .hero-stats li:not(:last-child)::after { right: -10px; }
  .hero-stats strong { font-size: 1.3rem; }
  .brand-logo { width: 50px; height: 50px; }
  .big-phone { font-size: 1.5rem; }
}
