/* tractari.ursu.ro - dark + red, Inter tight */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --c-bg:        #0a0a0a;
  --c-surface:   #141414;
  --c-surface-2: #1a1a1a;
  --c-line:      #232323;
  --c-line-2:    #2c2c2c;
  --c-text:      #ffffff;
  --c-muted:     #9a9a9a;
  --c-muted-2:   #6e6e6e;
  --c-red:       #E31E24;
  --c-red-d:     #c41a1f;
  --c-red-tint:  rgba(227,30,36,.08);
  --c-red-glow:  rgba(227,30,36,.35);
  --c-success:   #16a34a;
  --c-warn:      #f59e0b;
  --shadow-md:   0 12px 40px rgba(0,0,0,.5);
  --shadow-red:  0 8px 24px rgba(227,30,36,.25);
  --radius:      8px;
  --radius-lg:   14px;
  --maxw:        1180px;
  --gap:         20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--c-red); }

h1,h2,h3,h4 { line-height: 1.1; margin: 0 0 .5em; color: var(--c-text); letter-spacing: -0.022em; font-weight: 800; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--c-muted); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-tight { padding: 48px 0; }
.text-center { text-align: center; }
.muted { color: var(--c-muted); }

/* Top bar */
.topbar {
  background: #050505;
  color: var(--c-muted);
  font-size: .82rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-line);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--c-muted); }
.topbar a:hover { color: #fff; }
.topbar .pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-red-tint); color: var(--c-red);
  padding: 2px 10px; border-radius: 999px; font-weight: 600;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c-red); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.6)} }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 52px; width: auto; }
.nav { display: flex; gap: 28px; }
.nav a { color: var(--c-text); font-weight: 500; font-size: .94rem; transition: color .15s ease; }
.nav a:hover { color: var(--c-red); }
.header-cta { display: flex; align-items: center; gap: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--c-red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--c-red-d); color: #fff; transform: translateY(-1px); }
.btn-dark { background: var(--c-surface); color: #fff; border-color: var(--c-line-2); }
.btn-dark:hover { background: var(--c-surface-2); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: var(--c-line-2); }
.btn-outline:hover { background: var(--c-surface); border-color: var(--c-red); color: var(--c-red); }
.btn-ghost { background: transparent; color: var(--c-muted); }
.btn-ghost:hover { color: #fff; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 80px;
  background:
    radial-gradient(60% 80% at 90% 0%, rgba(227,30,36,.18), transparent 60%),
    radial-gradient(50% 60% at 10% 100%, rgba(227,30,36,.08), transparent 60%),
    var(--c-bg);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  left: -8%; top: 50%;
  width: 70%; height: 130%;
  transform: translateY(-50%);
  background-image: image-set(
    url("/assets/img/hero-truck.webp") type("image/webp"),
    url("/assets/img/hero-truck.png") type("image/png")
  );
  background-image: -webkit-image-set(
    url("/assets/img/hero-truck.webp") type("image/webp"),
    url("/assets/img/hero-truck.png") type("image/png")
  );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: .42;
  filter: brightness(.7) contrast(1.05) saturate(1.1);
  mask-image: linear-gradient(to right, black 0%, black 35%, transparent 75%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 35%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-red-tint); color: var(--c-red);
  padding: 6px 12px; border-radius: 999px;
  font-size: .82rem; font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid rgba(227,30,36,.25);
}
.hero h1 { margin-bottom: 18px; }
.hero h1 strong { color: var(--c-red); font-weight: 900; }
.hero .subline { font-size: 1.05rem; color: var(--c-muted); max-width: 540px; margin-bottom: 26px; }
.hero-checks { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 10px; }
.hero-checks li { display: flex; align-items: center; gap: 12px; color: var(--c-text); font-weight: 500; font-size: .96rem; }
.hero-checks svg { color: var(--c-red); flex-shrink: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Calculator card */
.calc-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.calc-card::after {
  content: ""; position: absolute; inset: -1px;
  border-radius: var(--radius-lg); pointer-events: none;
  background: linear-gradient(135deg, rgba(227,30,36,.4), transparent 40%);
  opacity: .25;
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}
.calc-head { margin-bottom: 18px; }
.calc-head h3 { font-size: 1.25rem; margin: 0 0 4px; }
.calc-head p { margin: 0; font-size: .88rem; color: var(--c-muted); }
.calc-fields { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .78rem; font-weight: 600; color: var(--c-muted); text-transform: uppercase; letter-spacing: .04em; }
.field select, .field input {
  width: 100%;
  padding: 12px 14px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  color: var(--c-text);
  font-family: inherit;
  font-size: .96rem;
  transition: border-color .15s ease, background .15s ease;
}
.field select:focus, .field input:focus {
  outline: none;
  border-color: var(--c-red);
  background: var(--c-surface);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Address autocomplete */
.addr-field { position: relative; }
.addr-input-wrap { position: relative; }
.addr-input-wrap input { padding-right: 46px; }
.addr-locate-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 1px solid transparent; padding: 7px;
  color: var(--c-muted); border-radius: 6px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
}
.addr-locate-btn:hover { color: var(--c-red); background: rgba(227,30,36,.08); border-color: rgba(227,30,36,.3); }
.addr-locate-btn.is-loading svg { animation: spin .9s linear infinite; }
.addr-locate-btn.is-loading { color: var(--c-red); }

.addr-suggest {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #0f0f0f;
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0,0,0,.65);
  max-height: 340px; overflow-y: auto;
  z-index: 30;
  padding: 6px;
}
.addr-suggest-head {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--c-muted-2); padding: 8px 10px 6px; font-weight: 600;
}
.addr-item {
  display: flex; align-items: flex-start; gap: 12px;
  width: 100%; padding: 10px;
  background: transparent; border: 0;
  border-radius: 8px;
  color: var(--c-text); font-family: inherit;
  text-align: left; cursor: pointer; line-height: 1.35;
  appearance: none; -webkit-appearance: none;
  transition: background .12s ease;
}
.addr-item + .addr-item { margin-top: 2px; }
.addr-item:hover { background: var(--c-surface-2); }
.addr-item:active { background: var(--c-red-tint); }
.addr-item .addr-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--c-red-tint);
  border: 1px solid rgba(227,30,36,.25);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--c-red);
}
.addr-item .addr-text { flex: 1; min-width: 0; }
.addr-item .addr-title {
  font-weight: 600; color: #fff; font-size: .94rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.addr-item .addr-sub {
  color: var(--c-muted); font-size: .82rem; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.addr-empty {
  padding: 14px 12px; color: var(--c-muted); text-align: center; font-size: .88rem;
}
.addr-empty .spinner { display: inline-block; vertical-align: -2px; margin-right: 8px; }

.calc-result {
  margin-top: 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(227,30,36,.10), rgba(227,30,36,.02));
  border: 1px solid rgba(227,30,36,.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.calc-result.empty { background: var(--c-surface-2); border-color: var(--c-line); color: var(--c-muted); justify-content: center; text-align: center; }
.calc-price { font-size: 1.7rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.02em; }
.calc-price small { display: block; font-size: .72rem; font-weight: 600; color: var(--c-muted); margin-top: 4px; letter-spacing: .04em; text-transform: uppercase; }
.calc-breakdown { font-size: .82rem; color: var(--c-muted); text-align: right; }
.calc-loading { color: var(--c-muted); font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; }
.spinner { width: 14px; height: 14px; border: 2px solid var(--c-line-2); border-top-color: var(--c-red); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.calc-actions { display: flex; gap: 10px; margin-top: 16px; }
.calc-note { margin-top: 12px; font-size: .78rem; color: var(--c-muted-2); text-align: center; }

/* Trust strip */
.trust { background: var(--c-surface); padding: 28px 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item { display: flex; flex-direction: column; gap: 6px; padding-left: 16px; border-left: 2px solid var(--c-red); }
.trust-num { font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.trust-label { font-size: .85rem; color: var(--c-muted); }

/* Section header */
.section-head { margin-bottom: 40px; }
.section-head .eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem;
  color: var(--c-red); font-weight: 700; margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 8px; }
.section-head p { color: var(--c-muted); max-width: 600px; margin: 0; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.service-card:hover { border-color: var(--c-red); transform: translateY(-3px); background: var(--c-surface-2); }
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--c-red-tint);
  border: 1px solid rgba(227,30,36,.25);
  display: grid; place-items: center; margin-bottom: 18px;
  color: var(--c-red);
}
.service-card h3 { margin-bottom: 8px; color: #fff; }
.service-card p { color: var(--c-muted); font-size: .92rem; margin-bottom: 0; }

/* CTA strip */
.cta-strip {
  background:
    radial-gradient(50% 100% at 50% 0%, rgba(227,30,36,.18), transparent 70%),
    var(--c-surface);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 48px 0;
}
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-strip h3 { color: #fff; margin: 0; font-size: 1.5rem; }
.cta-strip p { color: var(--c-muted); margin: 4px 0 0; }

/* Coverage */
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.coverage-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.coverage-list li { padding-left: 18px; position: relative; color: var(--c-text); font-size: .96rem; }
.coverage-list li:before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-red);
}

.info-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card h3 { margin-top: 0; }

/* Footer */
.site-footer { background: #050505; color: var(--c-muted); padding: 56px 0 24px; border-top: 1px solid var(--c-line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 32px; }
.site-footer h4 { color: #fff; font-size: .98rem; margin-bottom: 16px; font-weight: 700; }
.site-footer a { color: var(--c-muted); }
.site-footer a:hover { color: var(--c-red); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: .92rem; }
.footer-meta { border-top: 1px solid var(--c-line); padding-top: 18px; font-size: .82rem; color: var(--c-muted-2); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Floating WhatsApp button (toate device-urile) */
.fab-wa {
  position: fixed; right: 18px; bottom: 18px;
  width: 58px; height: 58px;
  background: #25d366; color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 4px 8px rgba(0,0,0,.2);
  z-index: 100;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.fab-wa:hover {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(37,211,102,.55), 0 6px 12px rgba(0,0,0,.25);
}
.fab-wa::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: fab-wa-pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes fab-wa-pulse {
  0%   { transform: scale(.95); opacity: .8; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero::after { opacity: .18; width: 95%; left: -10%; }
  .nav { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .topbar { display: none; }
  .section { padding: 56px 0; }
  .hero { padding: 32px 0 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .header-cta .btn-text-mobile-hide { display: none; }
  .brand-logo { height: 40px; }
  .coverage-list { grid-template-columns: 1fr; }
  .calc-card { padding: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .cta-strip .container { flex-direction: column; align-items: flex-start; }
}

/* Phone link visual */
.phone-link { font-weight: 800; color: var(--c-text); display: inline-flex; align-items: center; gap: 8px; font-family: inherit; }
.phone-link .phone-icon { color: var(--c-red); }

/* Flash overlay pentru alerta cerere noua */
@keyframes ursu-flash {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  60%  { opacity: .6; }
  100% { opacity: 0; }
}

/* ---- Navigation buttons (Google Maps / Waze) - pro pill style ---- */
.nav-row {
  margin-top: 8px;
  margin-bottom: 6px;
}
.nav-row-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.nav-row-buttons {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.nav-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 16px 9px 12px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line-2);
  border-radius: 12px;
  text-decoration: none;
  color: #fff !important;
  flex: 1 1 auto;
  min-width: 150px;
  max-width: 240px;
  transition: transform .12s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.nav-btn:hover {
  transform: translateY(-1px);
  background: #1f1f1f;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.nav-btn-ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav-btn-text {
  display: flex; flex-direction: column; line-height: 1.1;
  min-width: 0;
}
.nav-btn-text small {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #b8b8b8;
  font-weight: 500;
}
.nav-btn-text strong {
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 2px;
  white-space: nowrap;
}

.nav-btn-gmaps .nav-btn-ico {
  background: rgba(52,168,83,.18);
  color: #34a853;
  border: 1px solid rgba(52,168,83,.35);
}
.nav-btn-gmaps:hover { border-color: #34a853; }

.nav-btn-waze .nav-btn-ico {
  background: rgba(58,167,233,.18);
  color: #3aa7e9;
  border: 1px solid rgba(58,167,233,.35);
}
.nav-btn-waze:hover { border-color: #3aa7e9; }

@media (max-width: 480px) {
  .nav-btn { min-width: 0; padding: 8px 12px 8px 10px; }
  .nav-btn-ico { width: 32px; height: 32px; }
}

/* ---- Sofer app download section ---- */
.sofer-app { padding: 56px 0; }
.sofer-app-card {
  background: linear-gradient(135deg, var(--c-surface) 0%, #0d0d0d 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sofer-app-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 0% 50%, rgba(227,30,36,.08), transparent 70%);
  pointer-events: none;
}
.sofer-app-icon {
  width: 76px; height: 76px;
  border-radius: 18px;
  background: #0a0a0a;
  border: 1px solid var(--c-line-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(227,30,36,.15);
  position: relative; z-index: 1;
}
.sofer-app-icon img { width: 48px; height: 48px; display: block; }
.sofer-app-text { min-width: 0; position: relative; z-index: 1; }
.sofer-app-text h3 { margin: 4px 0 6px; font-size: 1.3rem; }
.sofer-app-text p { margin: 0; font-size: .94rem; }
.sofer-app-cta {
  display: flex; gap: 10px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* Store-badge style: pill cu icon stanga + small + strong */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 14px;
  background: #000;
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  color: #fff !important;
  text-decoration: none;
  transition: transform .12s ease, border-color .15s ease, background .15s ease;
  font-family: inherit;
  min-width: 170px;
}
.store-badge:hover {
  transform: translateY(-1px);
  border-color: var(--c-red);
  background: #0d0d0d;
}
.store-badge-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--c-red);
  flex-shrink: 0;
}
.store-badge-icon svg { width: 28px; height: 28px; }
.store-badge-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.store-badge-text small {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #b8b8b8;
  font-weight: 500;
}
.store-badge-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.store-badge-secondary { background: var(--c-surface); }
.store-badge-secondary:hover { background: var(--c-surface-2); }
.store-badge-secondary .store-badge-icon { color: var(--c-muted); }
.store-badge-secondary:hover .store-badge-icon { color: var(--c-red); }

@media (max-width: 760px) {
  .sofer-app { padding: 36px 0; }
  .sofer-app-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
    gap: 18px;
  }
  .sofer-app-icon { margin: 0 auto; }
  .sofer-app-text h3 { font-size: 1.15rem; }
  .sofer-app-text p { font-size: .9rem; }
  .sofer-app-cta {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .store-badge {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex: none;
    justify-content: center;
    padding: 12px 16px;
  }
  .store-badge-text { flex: 0 1 auto; }
}

/* ---- Map (Leaflet) ---- */
.leaflet-container { background:#0a0a0a; color: var(--c-muted); font-family: inherit; }
.leaflet-control-attribution {
  background: rgba(0,0,0,.55) !important;
  color: var(--c-muted-2) !important;
  font-size: 10px !important;
  padding: 2px 6px !important;
}
.leaflet-control-attribution a { color: var(--c-muted) !important; }
.leaflet-control-zoom a {
  background: var(--c-surface) !important;
  color: #fff !important;
  border: 1px solid var(--c-line) !important;
}
.leaflet-control-zoom a:hover { background: var(--c-surface-2) !important; color: var(--c-red) !important; }
.leaflet-popup-content-wrapper {
  background: var(--c-surface) !important;
  color: #fff !important;
  border: 1px solid var(--c-line) !important;
  border-radius: 8px !important;
}
.leaflet-popup-tip { background: var(--c-surface) !important; }
.leaflet-popup-content { font-size: .9rem; margin: 10px 14px; }

/* Map pins */
.pin span { display: block; }
.pin-pickup span {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-red);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--c-red), 0 4px 10px rgba(0,0,0,.5);
}
.pin-dropoff span {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  border: 4px solid var(--c-red);
  box-shadow: 0 4px 10px rgba(0,0,0,.5);
}
.pin-driver { width: 28px; height: 28px; position: relative; }
.pin-driver .ping {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(227,30,36,.45);
  animation: map-ping 1.6s ease-out infinite;
}
.pin-driver .dot {
  position: absolute; top: 7px; left: 7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c-red);
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(227,30,36,.9);
  z-index: 2;
}
@keyframes map-ping {
  0%   { transform: scale(.4); opacity: .9; }
  100% { transform: scale(1.7); opacity: 0; }
}
