/* ============================================================
   PackBuddy – Hauptstylesheet
   ============================================================ */

:root {
  --orange:      #FF6B35;
  --orange-dark: #E05520;
  --navy:        #0D1B2A;
  --navy-mid:    #1B2D42;
  --blue:        #1976D2;
  --green:       #27AE60;
  --light:       #F7F8FA;
  --border:      #E2E8F0;
  --text:        #2D3748;
  --muted:       #718096;
  --white:       #FFFFFF;
  --navy-card:   #142236;
  --border-d:    rgba(255,255,255,.09);
  --muted-d:     rgba(255,255,255,.42);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.18);
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  .25s ease;
}

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

html {
  scroll-behavior: smooth; font-size: 16px;
  overscroll-behavior-y: none; /* disable pull-to-refresh on mobile */
}

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

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

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: .95rem;
  font-weight: 600; cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 15px rgba(255,107,53,.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,.45); }
.btn-secondary {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-green { background: var(--green); color: var(--white); box-shadow: 0 4px 15px rgba(39,174,96,.3); }
.btn-green:hover { background: #219a52; transform: translateY(-2px); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 700; color: var(--navy);
}
.nav-logo .logo-icon {
  width: 36px; height: 36px; background: var(--orange);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login { font-size: .9rem; font-weight: 600; color: var(--text); transition: color var(--transition); }
.nav-login:hover { color: var(--orange); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px 0; border-radius: 2px; transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh; padding-top: 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a5c 100%);
  display: flex; align-items: center; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,53,.15) 0%, transparent 70%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,.15); border: 1px solid rgba(255,107,53,.3);
  color: #FF9A7B; border-radius: 50px; padding: 6px 16px;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.7);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 32px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
}
.stat strong {
  display: block; font-size: 1.6rem; font-weight: 800; color: var(--white);
}
.stat span { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ── Radar animation ── */
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.radar-wrap {
  position: relative; width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.radar-center {
  position: absolute; width: 52px; height: 52px; z-index: 10;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 0 0 rgba(255,107,53,.4);
  animation: pulse-center 2s infinite;
}
@keyframes pulse-center {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,53,.5); }
  70%  { box-shadow: 0 0 0 20px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}
.radar-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(255,107,53,.25);
  animation: ring-expand 3s ease-out infinite;
}
.radar-ring:nth-child(2) { width: 120px; height: 120px; animation-delay: 0s; }
.radar-ring:nth-child(3) { width: 220px; height: 220px; animation-delay: .7s; }
.radar-ring:nth-child(4) { width: 320px; height: 320px; animation-delay: 1.4s; }
.radar-ring:nth-child(5) { width: 400px; height: 400px; animation-delay: 2.1s; border-color: rgba(255,107,53,.1); }
@keyframes ring-expand {
  0%   { opacity: .8; transform: scale(.97); }
  50%  { opacity: .4; }
  100% { opacity: .8; transform: scale(1.03); }
}

.packer-pin {
  position: absolute; z-index: 5;
  background: var(--white); border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; color: var(--navy);
  white-space: nowrap; animation: float 4s ease-in-out infinite;
}
.packer-pin .pin-emoji { font-size: 1.2rem; }
.packer-pin .pin-dist { font-size: .7rem; color: var(--muted); font-weight: 400; }
.packer-pin:nth-child(6)  { top: 15%; left: 58%; animation-delay: 0s; }
.packer-pin:nth-child(7)  { top: 55%; right: 5%; animation-delay: 1s; }
.packer-pin:nth-child(8)  { bottom: 18%; left: 12%; animation-delay: 2s; }
.packer-pin:nth-child(9)  { top: 30%; left: 8%; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.radius-label {
  position: absolute; bottom: 12%; right: 18%;
  background: rgba(255,107,53,.9); color: var(--white);
  border-radius: 50px; padding: 6px 14px;
  font-size: .75rem; font-weight: 700;
  animation: float 3s ease-in-out infinite;
}

/* ── Section commons ── */
.section { padding: 100px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--navy); color: var(--white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; background: rgba(255,107,53,.1);
  color: var(--orange); border-radius: 50px; padding: 5px 16px;
  font-size: .75rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-tag.green { background: rgba(39,174,96,.1); color: var(--green); }
.section-tag.blue  { background: rgba(25,118,210,.1); color: var(--blue); }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.section-dark .section-sub { color: rgba(255,255,255,.6); }

/* ── Role cards (how it works) ── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.how-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.how-card-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 32px;
}
.how-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.how-icon.orange { background: rgba(255,107,53,.1); }
.how-icon.blue   { background: rgba(25,118,210,.1); }
.how-card-title { font-size: 1.2rem; font-weight: 700; }
.how-card-role  { font-size: .8rem; color: var(--muted); margin-top: 2px; }

.step-list { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
}
.step-num {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}
.how-card.blue-card .step-num { background: var(--blue); }
.step-body strong { display: block; font-size: .9rem; font-weight: 600; color: var(--navy); }
.step-body p { font-size: .85rem; color: var(--muted); margin-top: 3px; line-height: 1.5; }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.fi-orange { background: rgba(255,107,53,.1); }
.fi-blue   { background: rgba(25,118,210,.1); }
.fi-green  { background: rgba(39,174,96,.1); }
.fi-purple { background: rgba(142,68,173,.1); }
.fi-yellow { background: rgba(243,156,18,.1); }
.fi-teal   { background: rgba(26,188,156,.1); }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── Packer sample profiles ── */
.profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.profile-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition);
}
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.profile-top {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 28px; display: flex; align-items: center; gap: 16px;
}
.profile-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; flex-shrink: 0;
  border: 3px solid rgba(255,255,255,.2);
}
.profile-name { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.profile-loc  { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.profile-dist {
  margin-left: auto; background: rgba(255,107,53,.2);
  color: #FF9A7B; border-radius: 50px; padding: 4px 10px;
  font-size: .7rem; font-weight: 700; white-space: nowrap;
}
.profile-body { padding: 22px; }
.skills-wrap { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.skill-chip {
  background: var(--light); border: 1px solid var(--border);
  border-radius: 50px; padding: 4px 12px;
  font-size: .75rem; font-weight: 500; color: var(--text);
}
.skill-chip.highlight { background: rgba(255,107,53,.08); border-color: rgba(255,107,53,.3); color: var(--orange); }
.vehicles-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px; padding-top: 14px; border-top: 1px solid var(--border);
}
.vehicles-row-label {
  font-size: .68rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em; margin-right: 2px; white-space: nowrap;
}
.vehicle-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(25,118,210,.07); border: 1px solid rgba(25,118,210,.2);
  border-radius: 50px; padding: 4px 11px;
  font-size: .74rem; font-weight: 600; color: #4a90d9;
}
.locked-btn {
  width: 100%; background: var(--light); border: 1.5px dashed var(--border);
  border-radius: 50px; padding: 12px;
  font-size: .85rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: var(--transition); display: flex;
  align-items: center; justify-content: center; gap: 8px;
}
.locked-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,53,.05); }

/* ── Profile card enhancements ── */
.profile-card--match {
  border-color: rgba(149,193,31,.45);
  box-shadow: 0 0 0 2px rgba(149,193,31,.12), var(--shadow-sm);
}
.profile-card--match .profile-top {
  background: linear-gradient(135deg, #1c2e1c, #1a3020);
}
.profile-rating {
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px; flex-wrap: wrap;
}
.profile-rating-stars { color: #f5a623; font-size: .85rem; letter-spacing: 1px; }
.profile-rating-val   { font-size: .78rem; font-weight: 700; color: var(--text); }
.profile-rating-count { font-size: .72rem; color: var(--muted); }
.profile-area-badge {
  margin-left: auto; display: inline-flex; align-items: center; gap: 3px;
  background: rgba(149,193,31,.12); border: 1px solid rgba(149,193,31,.4);
  color: #4a6e00; border-radius: 50px; padding: 3px 9px;
  font-size: .67rem; font-weight: 700; white-space: nowrap;
}
.profile-bio {
  font-size: .78rem; color: var(--muted); line-height: 1.55; margin-bottom: 14px;
}

/* ── Packer profile feature grid ── */
.pf-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.pf-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 22px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.pf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pf-card--highlight {
  border-color: rgba(149,193,31,.45);
  background: linear-gradient(135deg, rgba(149,193,31,.05) 0%, var(--white) 100%);
  box-shadow: 0 0 0 2px rgba(149,193,31,.12);
}
.pf-icon { font-size: 1.85rem; margin-bottom: 12px; display: block; }
.pf-card h3 { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pf-card p  { font-size: .8rem; color: var(--muted); line-height: 1.6; margin: 0; }
.pf-note {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 10px;
  font-size: .69rem; color: var(--muted);
  background: var(--light); padding: 3px 9px; border-radius: 50px;
}
.pf-badge {
  position: absolute; top: 14px; right: 14px;
  background: #95c11f; color: white;
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
  padding: 3px 8px; border-radius: 50px;
}
@media (max-width: 900px) { .pf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pf-grid { grid-template-columns: 1fr; } }

/* ── Pricing / How payment works ── */
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.payment-steps { display: flex; flex-direction: column; gap: 0; }
.pay-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 32px; position: relative;
}
.pay-step:not(:last-child)::after {
  content: ''; position: absolute; left: 19px; top: 42px;
  width: 2px; height: calc(100% - 12px);
  background: linear-gradient(to bottom, var(--orange), var(--border));
}
.pay-num {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: var(--white);
}
.pay-body { padding-top: 8px; }
.pay-body strong { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pay-body p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

.pricing-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.pricing-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--orange), #FF8E53);
}
.pricing-box-label {
  background: rgba(255,107,53,.1); color: var(--orange);
  border-radius: 50px; padding: 6px 16px; font-size: .75rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; display: inline-block; margin-bottom: 16px;
}
.pricing-amount {
  font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1;
  margin-bottom: 4px;
}
.pricing-amount small { font-size: 1.2rem; font-weight: 500; color: var(--muted); }
.pricing-note { font-size: .85rem; color: var(--muted); margin-bottom: 28px; }
.pricing-perks { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; padding: 8px 0; border-bottom: 1px solid var(--border);
  color: var(--text);
}
.pricing-perks li:last-child { border: none; }
.perk-check { color: var(--green); font-size: 1rem; }
.pricing-sub { font-size: .78rem; color: var(--muted); margin-top: 12px; }

/* ── How-it-works policy boxes ── */
.how-policy-box {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 28px; padding: 16px 18px; border-radius: var(--radius);
  background: rgba(39,174,96,.07); border: 1px solid rgba(39,174,96,.2);
}
.how-policy-box.how-policy-warning {
  background: rgba(255,107,53,.07); border-color: rgba(255,107,53,.25);
}
.how-policy-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.how-policy-box strong { display: block; font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.how-policy-box p { font-size: .82rem; color: var(--muted); line-height: 1.55; margin: 0; }
.how-policy-box p strong { display: inline; font-size: inherit; color: inherit; margin: 0; }

/* ── Token packages ── */
.token-packages {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 48px;
}
.token-pkg {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; border: 2px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
  transition: var(--transition);
}
.token-pkg:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.token-pkg--popular { border-color: var(--orange); box-shadow: var(--shadow-md); }
.token-pkg--best    { border-color: var(--blue); }
.token-pkg--best:hover { border-color: var(--blue); }
.token-pkg-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 0 8px 8px;
}
.token-pkg-badge--best { background: var(--blue); }
.token-pkg-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--muted); margin-top: 18px; margin-bottom: 10px;
}
.token-pkg--popular .token-pkg-label,
.token-pkg--best    .token-pkg-label { margin-top: 26px; }
.token-pkg-amount {
  font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1;
  margin-bottom: 6px;
}
.token-pkg-amount small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.token-pkg-per { font-size: .78rem; color: var(--muted); margin-bottom: 8px; }
.token-pkg-count {
  font-size: .85rem; font-weight: 600; color: var(--text);
  margin-bottom: 22px;
}
.token-savings { color: var(--green); font-weight: 700; }
.token-pkg-btn { font-size: .85rem; }

/* ── Pricing info row (perks + guarantee) ── */
.pricing-info-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.pricing-perks-box, .pricing-guarantee-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.pricing-perks-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.pricing-guarantee-box { text-align: center; }
.guarantee-icon { font-size: 2.2rem; margin-bottom: 10px; }
.pricing-guarantee-box h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pricing-guarantee-box p { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.guarantee-divider { border-top: 1px solid var(--border); margin: 22px 0; }

/* ── CTA Banner ── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8E53 100%);
  padding: 80px 0; text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--white); margin-bottom: 14px;
}
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: var(--navy); color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: .85rem; font-weight: 700; color: var(--white); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a {
  display: block; font-size: .85rem; margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   CHAT MODAL
══════════════════════════════════════════ */
.chat-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(6,12,20,.75); backdrop-filter: blur(8px);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.chat-overlay.open { opacity: 1; pointer-events: all; }
.chat-modal {
  width: 100%; max-width: 420px; max-height: 80vh;
  background: #0e1e30; border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transform: translateY(20px); transition: transform .25s ease;
}
.chat-overlay.open .chat-modal { transform: translateY(0); }
.chat-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.chat-modal-title {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; color: white; font-size: .95rem; min-width: 0;
}
.chat-modal-avatar {
  width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); font-size: 1.1rem;
}
.chat-modal-title-text { display: flex; flex-direction: column; min-width: 0; }
.chat-modal-city { font-size: .72rem; font-weight: 400; color: rgba(255,255,255,.42); margin-top: 1px; }
.chat-header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.chat-options-btn { font-size: 1.2rem; padding: 5px 9px; }
.chat-close-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: none; cursor: pointer;
  color: rgba(255,255,255,.55); font-size: .9rem; transition: .2s ease;
  display: flex; align-items: center; justify-content: center;
}
.chat-close-btn:hover { background: rgba(255,255,255,.15); color: white; }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 10px; min-height: 200px;
}
.chat-loading {
  color: rgba(255,255,255,.35); font-size: .82rem; text-align: center; padding: 20px 0;
}
.chat-msg { display: flex; flex-direction: column; max-width: 78%; }
.chat-msg--mine  { align-self: flex-end; align-items: flex-end; }
.chat-msg--theirs { align-self: flex-start; align-items: flex-start; }
.chat-bubble {
  padding: 10px 14px; border-radius: 16px;
  font-size: .88rem; line-height: 1.5; word-break: break-word;
}
.chat-msg--mine  .chat-bubble { background: var(--orange); color: white; border-bottom-right-radius: 4px; }
.chat-msg--theirs .chat-bubble { background: rgba(255,255,255,.09); color: rgba(255,255,255,.88); border-bottom-left-radius: 4px; }
.chat-meta { font-size: .7rem; color: rgba(255,255,255,.28); margin-top: 4px; padding: 0 4px; }
.chat-input-row {
  display: flex; gap: 8px; padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.chat-input {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px; padding: 10px 16px; color: white; font-family: inherit;
  font-size: .88rem; outline: none;
}
.chat-input:focus { border-color: var(--orange); }
.chat-input::placeholder { color: rgba(255,255,255,.25); }
.chat-send-btn {
  background: var(--orange); color: white; border: none; border-radius: 50px;
  padding: 10px 18px; font-size: .85rem; font-weight: 700; cursor: pointer;
  font-family: inherit; white-space: nowrap; transition: .2s ease;
}
.chat-send-btn:hover { background: var(--orange-dark); }
.chat-notice-bar {
  padding: 6px 14px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.chat-notice-line {
  font-size: .68rem; color: rgba(255,255,255,.28);
  margin: 0; line-height: 1.5;
}
.chat-notice-line--monitor {
  color: rgba(255,193,31,.22);
}
@media (max-width: 480px) {
  .chat-overlay { padding: 0; align-items: flex-end; }
  .chat-modal { max-width: 100%; border-radius: 20px 20px 0 0; max-height: 90vh; }
}

/* Chat-Panel mobile backdrop */
.chat-panel-backdrop {
  display: none; position: fixed; inset: 0; z-index: 2999;
  background: rgba(6,12,20,.55); backdrop-filter: blur(2px);
}
.chat-panel-backdrop.open { display: block; }

/* ── Portal context menu (position: fixed, appended to body) ── */
.cc-ctx-menu {
  position: fixed; z-index: 9999;
  background: #1e2e40; border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px; padding: 5px; min-width: 200px;
  box-shadow: 0 10px 32px rgba(0,0,0,.55);
  animation: ctxFadeIn .12s ease;
}
@keyframes ctxFadeIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}
.cc-ctx-menu .cc-dropdown-item  { border-radius: 7px; }
.cc-ctx-menu .cc-dropdown-divider { margin: 4px 5px; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,27,42,.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 560px; max-height: 90vh;
  overflow-y: auto; transform: translateY(20px) scale(.97);
  transition: transform .3s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 28px 32px 0; display: flex; justify-content: space-between; align-items: center;
}
.modal-header h2 { font-size: 1.4rem; font-weight: 800; }
.modal-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--light); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--muted); transition: var(--transition);
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-body { padding: 24px 32px 32px; }

/* Role picker */
.role-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.role-card {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 24px 16px; text-align: center; cursor: pointer;
  transition: var(--transition); position: relative;
}
.role-card:hover { border-color: var(--orange); }
.role-card.active { border-color: var(--orange); background: rgba(255,107,53,.05); }
.role-card .role-icon { font-size: 2.2rem; margin-bottom: 10px; }
.role-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.role-card p  { font-size: .78rem; color: var(--muted); line-height: 1.4; }
.role-check {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .7rem;
  opacity: 0; transition: opacity var(--transition);
}
.role-card.active .role-check { opacity: 1; }

/* Form */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; font-family: inherit; color: var(--text);
  transition: border-color var(--transition); outline: none;
  background: var(--white);
}
.form-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,.1); }
.form-pw-wrap { position: relative; }
.form-pw-wrap .form-input { padding-right: 44px; }
.form-pw-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 1rem; color: var(--muted); padding: 4px; line-height: 1;
  transition: color .15s;
}
.form-pw-toggle:hover { color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-section-title {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin: 22px 0 12px;
}
.skills-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-check { display: none; }
.skill-label {
  display: flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); border-radius: 50px;
  padding: 7px 14px; font-size: .82rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  user-select: none;
}
.skill-label:hover { border-color: var(--orange); color: var(--orange); }
.skill-check:checked + .skill-label {
  background: rgba(255,107,53,.08); border-color: var(--orange); color: var(--orange);
}
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vehicle-check { display: none; }
.vehicle-label {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 14px 8px; font-size: .78rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); text-align: center;
}
.vehicle-label .v-icon { font-size: 1.6rem; }
.vehicle-label:hover { border-color: var(--blue); color: var(--blue); }
.vehicle-check:checked + .vehicle-label {
  background: rgba(25,118,210,.07); border-color: var(--blue); color: var(--blue);
}
.form-note {
  background: var(--light); border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0; padding: 12px 16px;
  font-size: .82rem; color: var(--text); margin: 20px 0; line-height: 1.5;
}
.form-note strong { color: var(--orange); }
.form-step { display: none; }
.form-step.active { display: block; }
.modal-tabs {
  display: flex; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 4px; margin-bottom: 24px;
}
.modal-tab {
  flex: 1; padding: 9px; border: none; background: none; border-radius: 8px;
  font-size: .85rem; font-weight: 600; color: var(--muted); cursor: pointer;
  transition: var(--transition);
}
.modal-tab.active { background: var(--orange); color: var(--white); }

/* ── Notification toast ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 3000;
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 14px 20px; font-size: .88rem; font-weight: 500;
  box-shadow: var(--shadow-lg); transform: translateY(80px); opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1); max-width: 320px;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.1rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .token-packages { grid-template-columns: repeat(2, 1fr); }
  .pricing-info-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .how-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  /* Mobile: Marke + Konto-Spalte ausblenden, Plattform + Rechtliches zeigen */
  .footer-brand { display: none !important; }
  .footer-col { display: none !important; }
  .footer-col-platform { display: block !important; }
  .footer-col-legal { display: block !important; }
  .footer-col-platform h4,
  .footer-col-legal h4 { font-size: .72rem; margin-bottom: 8px; color: rgba(255,255,255,.5); }
  .footer-col-platform a,
  .footer-col-legal a { font-size: .78rem; display: block !important; margin-bottom: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .role-picker { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .token-packages { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .modal-body, .modal-header { padding-left: 20px; padding-right: 20px; }
  .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
}

body.hero-active { overflow: hidden; }

/* ══════════════════════════════════════════
   HERO SEARCH OVERLAY
══════════════════════════════════════════ */
#hero-search {
  position: fixed; inset: 0; z-index: 1500;
  background: linear-gradient(160deg, #060c14 0%, #0b1828 55%, #0D1B2A 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
#hero-search.exiting {
  animation: hs-exit .85s cubic-bezier(.4,0,.2,1) forwards;
  pointer-events: none;
}
@keyframes hs-exit {
  0%   { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-105%) scale(.98); opacity: 0; }
}
/* dot grid */
#hero-search::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 30px 30px;
}
/* vignette: edges dark, bottom darker to frame search form */
#hero-search::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(6,12,20,.15) 0%, transparent 30%, transparent 55%, rgba(6,12,20,.7) 100%),
    radial-gradient(ellipse 75% 60% at 50% 32%, transparent 35%, rgba(0,0,0,.45) 100%);
}

/* ── Hero nav ── */
.hs-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; gap: 12px;
  padding: 22px 36px;
}
.hs-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 800; color: white;
  text-decoration: none; letter-spacing: -.01em;
  margin-right: auto;
}
.hs-logo-box {
  width: 38px; height: 38px; background: var(--orange);
  border-radius: 11px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
  box-shadow: 0 0 25px rgba(255,107,53,.45);
  animation: plPulse 2s ease infinite;
}
.hs-account-btn {
  padding: 9px 22px; background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15); border-radius: 50px;
  color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: .25s ease;
}
.hs-account-btn:hover {
  background: rgba(255,107,53,.15); border-color: var(--orange); color: #FF9A7B;
}

/* ── Radar background (shifted up, behind the headline) ── */
.hs-radar {
  position: absolute; top: 32%; left: 50%;
  transform: translate(-50%, -50%);
  width: 580px; height: 580px; z-index: 1;
  opacity: 0.38;
}
.hs-radar-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  z-index: 10; box-shadow: 0 0 0 0 rgba(255,107,53,.4);
  animation: pulse-center 2s infinite;
}
.hs-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(255,107,53,.18);
  animation: hs-ring-pulse 3s ease-in-out infinite;
}
.hs-ring:nth-child(2) { width: 140px; height: 140px; animation-delay: 0s; }
.hs-ring:nth-child(3) { width: 260px; height: 260px; animation-delay: .9s; }
.hs-ring:nth-child(4) { width: 400px; height: 400px; animation-delay: 1.8s; }
.hs-ring:nth-child(5) { width: 550px; height: 550px; animation-delay: 2.7s; border-color: rgba(255,107,53,.05); }
@keyframes hs-ring-pulse {
  0%, 100% { opacity: .7; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: .2; transform: translate(-50%, -50%) scale(1.03); }
}
.hs-radius-lbl {
  position: absolute; bottom: 22%; right: 10%;
  background: rgba(255,107,53,.12); color: rgba(255,154,123,.6);
  border: 1px solid rgba(255,107,53,.2); border-radius: 50px;
  padding: 5px 14px; font-size: .76rem; font-weight: 700;
  animation: hs-float 4.5s ease-in-out infinite; animation-delay: .5s;
}

/* ── Floating packer cards (subdued in background) ── */
.hs-packer {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.03); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.06); border-radius: 50px;
  padding: 9px 16px 9px 11px; white-space: nowrap;
  cursor: default; user-select: none;
  opacity: 0.35;
}
.hs-pk-emoji { font-size: 1.4rem; flex-shrink: 0; }
.hs-pk-info  { display: flex; flex-direction: column; }
.hs-pk-info b    { font-size: .83rem; font-weight: 700; color: rgba(255,255,255,.65); }
.hs-pk-info span { font-size: .7rem; color: rgba(255,255,255,.3); }

.hs-packer-1 { top: 7%;    left: 64%;  animation: hs-float 5.0s ease-in-out infinite, hs-blink 5.5s ease-in-out infinite; animation-delay: 0s,   0.5s; }
.hs-packer-2 { top: 46%;   left: 92%;  animation: hs-float 4.5s ease-in-out infinite, hs-blink 4.8s ease-in-out infinite; animation-delay: 1.2s, 2.0s; }
.hs-packer-3 { bottom: 12%; left: 65%;  animation: hs-float 5.5s ease-in-out infinite, hs-blink 6.0s ease-in-out infinite; animation-delay: 2.5s, 1.0s; }
.hs-packer-4 { top: 10%;   right: 66%; animation: hs-float 4.8s ease-in-out infinite, hs-blink 5.2s ease-in-out infinite; animation-delay: 0.8s, 3.0s; }
.hs-packer-5 { top: 47%;   right: 93%; animation: hs-float 5.2s ease-in-out infinite, hs-blink 4.3s ease-in-out infinite; animation-delay: 1.8s, 0.0s; }
.hs-packer-6 { bottom: 15%; right: 67%; animation: hs-float 4.6s ease-in-out infinite, hs-blink 5.8s ease-in-out infinite; animation-delay: 3.2s, 1.5s; }

@keyframes hs-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes hs-blink {
  0%, 68%, 100% {
    border-color: rgba(255,255,255,.08);
    box-shadow: none; background: rgba(255,255,255,.04);
  }
  72%, 94% {
    border-color: rgba(255,107,53,.5);
    box-shadow: 0 0 18px rgba(255,107,53,.25), 0 4px 20px rgba(0,0,0,.2);
    background: rgba(255,107,53,.08);
  }
}

/* ── Center content ── */
.hs-content {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 24px; margin-top: 64px;
}
.hs-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,.12); border: 1px solid rgba(255,107,53,.28);
  border-radius: 50px; padding: 6px 18px;
  font-size: .76rem; font-weight: 700; color: #FF9A7B; letter-spacing: .04em;
  margin-bottom: 18px;
  animation: hs-fade-up .6s ease both;
}
.hs-headline {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -.025em; margin-bottom: 14px;
  animation: hs-fade-up .6s .1s ease both;
}
.hs-headline em { color: var(--orange); font-style: normal; }
.hs-subline {
  font-size: 1rem; color: rgba(255,255,255,.42);
  max-width: 420px; line-height: 1.75; margin-bottom: 36px;
  animation: hs-fade-up .6s .2s ease both;
}

/* ── Hero Wizard ── */
.hs-wizard {
  width: 100%; max-width: 520px;
  background: rgba(10,20,36,.78);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13), 0 16px 48px rgba(0,0,0,.48), 0 48px 80px rgba(0,0,0,.32);
  overflow: hidden;
  margin-top: 10px;
  animation: hs-fade-up .6s .3s ease both;
  transition: box-shadow .4s ease, transform .35s ease;
}
.hs-wizard:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 24px 64px rgba(0,0,0,.56), 0 56px 96px rgba(0,0,0,.38);
  transform: translateY(-3px);
}
.hs-wiz-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px 0;
}
.hs-wiz-pills { display: flex; align-items: center; margin-left: auto; }
.hs-wiz-pill {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.45); transition: all .35s ease;
}
.hs-wiz-pill--on {
  background: var(--orange); border-color: var(--orange); color: white;
  box-shadow: 0 0 16px rgba(255,107,53,.45);
}
.hs-wiz-line {
  width: 48px; height: 2px; background: rgba(255,255,255,.1);
  border-radius: 1px; overflow: hidden; margin: 0 4px;
}
.hs-wiz-line-fill {
  height: 100%; width: 0%;
  background: var(--orange);
  transition: width .45s cubic-bezier(.4,0,.2,1);
}
.hs-wizard.step-2 .hs-wiz-line-fill { width: 100%; }
.hs-wiz-back {
  background: none; border: none; color: rgba(255,255,255,.4);
  font-size: .8rem; cursor: pointer; font-family: inherit; padding: 4px 0;
  transition: color .2s; display: flex; align-items: center; gap: 5px;
}
.hs-wiz-back:hover { color: rgba(255,255,255,.75); }
.hs-wiz-track { overflow: hidden; transition: height .42s cubic-bezier(.4,0,.2,1); }
.hs-wiz-track-inner {
  display: flex; width: 200%;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
}
.hs-wizard.step-2 .hs-wiz-track-inner { transform: translateX(-50%); }
.hs-wiz-slide {
  width: 50%; flex-shrink: 0;
  box-sizing: border-box; overflow: hidden;
  padding: 18px 24px 26px;
}
.hs-wiz-q {
  font-size: 1.3rem; font-weight: 800; color: white;
  margin-bottom: 5px; line-height: 1.2; letter-spacing: -.02em;
}
.hs-wiz-sub {
  font-size: .8rem; color: rgba(255,255,255,.4);
  margin-bottom: 18px; line-height: 1.5;
}
.hs-wizard .hs-form {
  border: 1.5px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07); border-radius: 14px;
  padding: 8px 8px 8px 16px; box-shadow: none; margin-bottom: 10px;
}
.hs-wizard .hs-form:focus-within {
  border-color: var(--orange); background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(255,107,53,.18);
}
.hs-input-error { border-color: #e74c3c !important; animation: wiz-shake .4s ease; }
@keyframes wiz-shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.hs-wiz-actions { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.hs-wiz-actions--row { flex-direction: row; gap: 10px; }
.hs-wiz-next {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: none; border-radius: 16px; cursor: pointer; font-family: inherit;
  color: white; gap: 12px;
  box-shadow: 0 6px 24px rgba(255,107,53,.4), inset 0 1px 0 rgba(255,255,255,.15);
  transition: box-shadow .2s, transform .15s;
}
.hs-wiz-next:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,107,53,.55), inset 0 1px 0 rgba(255,255,255,.15); }
.hs-wiz-next-main { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.hs-wiz-next-main > span:first-child { font-size: .95rem; font-weight: 700; }
.hs-wiz-next-sub { font-size: .72rem; opacity: .72; font-weight: 400; }
.hs-wiz-arrow { font-size: 1.2rem; flex-shrink: 0; }
.hs-wiz-direct {
  width: 100%; padding: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; color: rgba(255,255,255,.5);
  font-family: inherit; font-size: .84rem; cursor: pointer;
  transition: background .2s, color .2s;
}
.hs-wiz-direct:hover { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.hs-wiz-skip {
  flex: 1; padding: 13px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; color: rgba(255,255,255,.5);
  font-family: inherit; font-size: .84rem; cursor: pointer;
  transition: background .2s, color .2s;
}
.hs-wiz-skip:hover { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.hs-wiz-search {
  flex: 2; padding: 13px 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: none; border-radius: 12px; color: white;
  font-family: inherit; font-size: .9rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,107,53,.4), inset 0 1px 0 rgba(255,255,255,.15);
  transition: box-shadow .2s, transform .15s;
}
.hs-wiz-search:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(255,107,53,.55), inset 0 1px 0 rgba(255,255,255,.15); }
.hs-wizard .hs-filter-group { margin-bottom: 14px; }
.hs-wizard .hs-fgroup-label {
  display: block; margin-bottom: 8px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.35);
}
.hs-wizard .hs-fchips { gap: 7px; display: flex; flex-wrap: wrap; }

/* ── Search form (legacy, hidden in wizard) ── */
.hs-form-wrap { width: 100%; max-width: 590px; animation: hs-fade-up .6s .3s ease both; }
.hs-form {
  position: relative; display: flex; align-items: center;
  background: rgba(255,255,255,.1); backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,.18); border-radius: 16px;
  padding: 8px 8px 8px 22px; margin-bottom: 12px;
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
  transition: border-color .25s, box-shadow .25s;
}
.hs-form:focus-within {
  border-color: var(--orange);
  box-shadow: 0 24px 70px rgba(0,0,0,.5), 0 0 0 4px rgba(255,107,53,.18);
}
.hs-icon { font-size: 1.1rem; color: var(--orange); flex-shrink: 0; margin-right: 12px; }
.hs-icon.spin { animation: hs-spin .7s linear infinite; }
@keyframes hs-spin { to { transform: rotate(360deg); } }
.hs-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 1.05rem; color: white; font-family: inherit; min-width: 0; padding: 10px 0;
}
.hs-input::placeholder { color: rgba(255,255,255,.22); }
.hs-submit {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8E53 100%);
  color: white; border: none; border-radius: 12px;
  padding: 14px 26px; font-size: .95rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 22px rgba(255,107,53,.45);
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.hs-submit:hover { transform: scale(1.04); box-shadow: 0 6px 30px rgba(255,107,53,.6); }
.hs-ac-drop {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 999;
  background: #0a1628; border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 14px; box-shadow: 0 24px 70px rgba(0,0,0,.7);
  overflow: hidden; display: none;
}
.hs-ac-drop.open { display: block; }
.hs-geo {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,107,53,.07); border: 1.5px solid rgba(255,107,53,.2);
  border-radius: 50px; padding: 12px;
  color: rgba(255,165,120,.85); font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: .25s ease; font-family: inherit;
}
.hs-geo:hover  { background: rgba(255,107,53,.14); border-color: var(--orange); color: var(--orange); }
.hs-geo:disabled { opacity: .5; cursor: not-allowed; }

/* ── Hero filter section ── */
.hs-filter-section {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  animation: hs-fade-up .6s .45s ease both;
  display: flex; flex-direction: column; align-items: center;
}
.hs-filter-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); border-radius: 99px;
  padding: 7px 20px; font-size: .82rem; cursor: pointer; font-family: inherit;
  transition: background .2s, border-color .2s, color .2s;
}
.hs-filter-toggle:hover,
.hs-filter-toggle.open { background: rgba(255,255,255,.11); border-color: rgba(149,193,31,.5); color: #fff; }
.hs-ftoggle-icon { font-size: .8rem; }
.hs-filter-badge {
  background: #95c11f; color: #fff; font-size: .68rem; font-weight: 700;
  border-radius: 99px; padding: 1px 7px; min-width: 18px; text-align: center; line-height: 1.4;
}
.hs-filter-arrow { font-size: .65rem; opacity: .55; transition: transform .2s; margin-left: 2px; }
.hs-filter-toggle.open .hs-filter-arrow { transform: rotate(180deg); }

.hs-filter-panel {
  margin-top: 14px; display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 16px 20px; width: 100%; max-width: 520px;
  box-sizing: border-box;
}
.hs-filter-group { display: flex; flex-direction: column; gap: 7px; }
.hs-fgroup-label {
  font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.35);
  text-transform: uppercase; letter-spacing: .08em;
}
.hs-fchips { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.hs-fchip {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6); border-radius: 99px;
  padding: 4px 11px; font-size: .76rem; cursor: pointer; white-space: nowrap; font-family: inherit;
  transition: all .15s;
}
.hs-fchip:hover  { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); }
.hs-fchip.active { background: rgba(149,193,31,.2); border-color: #95c11f; color: #cce877; font-weight: 600; }

/* Active filter summary bar (hero) */
.hs-filter-active-bar {
  margin-top: 10px; font-size: .76rem; color: rgba(255,255,255,.45);
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}

/* ── Login Link (nav) ── */
.hs-login-link, .sh-login-link {
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.55);
  background: none; border: none; cursor: pointer; font-family: inherit;
  text-decoration: none; transition: color .2s; white-space: nowrap; padding: 6px 4px;
}
.hs-login-link:hover, .sh-login-link:hover { color: var(--orange); }

/* ── Mobile user menu (person icon + dropdown) ── */
.hs-mob-user { display: none; position: relative; }
.hs-mob-user-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; cursor: pointer; color: white; font-family: inherit;
  transition: background .15s;
}
.hs-mob-user-btn:hover { background: rgba(255,255,255,.15); }
.hs-mob-user-drop {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #1B2D42; border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; overflow: hidden; min-width: 170px;
  box-shadow: 0 4px 24px rgba(0,0,0,.45); z-index: 10001;
}
.hs-mob-user.mob-open .hs-mob-user-drop { display: block; }
.hs-mob-user-opt {
  display: flex; width: 100%; padding: 12px 16px;
  background: none; border: none; color: rgba(255,255,255,.85);
  font-size: .84rem; font-weight: 500; cursor: pointer;
  font-family: inherit; text-align: left; transition: background .15s;
}
.hs-mob-user-opt:hover { background: rgba(255,255,255,.08); color: #fff; }
.hs-mob-user-opt + .hs-mob-user-opt { border-top: 1px solid rgba(255,255,255,.06); }

/* ── Hero info link (nav center, matches sh-back style) ── */
.hs-info-link {
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.38);
  text-decoration: none; transition: color .2s; white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
}
.hs-info-link:hover { color: var(--orange); }

/* ── Floating packer-count / price badge (hero only, hidden on map view) ── */
body:not(.hero-active) .pb-float-stats { display: none !important; }
.pb-float-stats {
  position: fixed; bottom: 72px; left: 20px; z-index: 9990;
  display: none; align-items: center;
}
.pb-float-stats.visible {
  display: flex; align-items: center;
  background: rgba(22,30,35,.94); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  overflow: hidden;
}
.pb-fstat {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 18px; font-size: .72rem; color: rgba(255,255,255,.38);
}
.pb-fstat strong { display: block; font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.pb-fstat-sep { width: 1px; height: 34px; background: rgba(255,255,255,.08); flex-shrink: 0; }
.pb-fstat--btn {
  border: none; cursor: pointer; background: transparent; font-family: inherit;
  transition: background .15s;
}
.pb-fstat--btn:hover { background: rgba(149,193,31,.12); }
.pb-fstat--btn strong { color: #c8e877; }

/* ── sh-ext filter panel (map/search page) ── */
.sh-ext-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-d);
  color: var(--muted-d); border-radius: 50px; padding: 5px 14px;
  font-size: .76rem; cursor: pointer; font-family: inherit; flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.sh-ext-toggle:hover,
.sh-ext-toggle.open { background: rgba(255,255,255,.1); border-color: #95c11f; color: #fff; }
.sh-ext-badge {
  background: #95c11f; color: #fff; font-size: .66rem; font-weight: 700;
  border-radius: 99px; padding: 0 6px; line-height: 1.5;
}
.sh-ext-arrow { font-size: .6rem; opacity: .5; transition: transform .2s; }
.sh-ext-toggle.open .sh-ext-arrow { transform: rotate(180deg); }

/* ── Map filter reset button ── */
.sh-reset-btn {
  display: inline-flex; align-items: center; gap: 4px; flex-shrink: 0;
  background: rgba(255,107,53,.1); border: 1px solid rgba(255,107,53,.3);
  color: var(--orange); border-radius: 50px; padding: 5px 12px;
  font-size: .74rem; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: background .15s, border-color .15s;
}
.sh-reset-btn:hover { background: rgba(255,107,53,.22); border-color: var(--orange); }

/* ── Hero filter reset button ── */
.hs-reset-btn {
  display: block; margin: 10px auto 0;
  background: transparent; border: 1px solid rgba(255,107,53,.3);
  color: rgba(255,107,53,.8); border-radius: 50px; padding: 5px 16px;
  font-size: .74rem; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: background .15s, color .15s;
}
.hs-reset-btn:hover { background: rgba(255,107,53,.15); color: var(--orange); }

.sh-ext-panel {
  padding: 10px 20px 12px; display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border-d); background: transparent;
}
.sh-ext-group { display: flex; flex-direction: column; gap: 6px; }
.sh-ext-label {
  font-size: .68rem; font-weight: 700; color: var(--muted-d);
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
}
.sh-fchips { display: flex; flex-wrap: wrap; gap: 5px; justify-content: flex-start; }
.sh-fchip {
  background: rgba(255,255,255,.05); border: 1px solid var(--border-d);
  color: var(--muted-d); border-radius: 50px;
  padding: 4px 12px; font-size: .75rem; cursor: pointer; font-family: inherit; white-space: nowrap;
  transition: all .15s;
}
.sh-fchip:hover  { background: rgba(255,255,255,.1); color: #fff; }
.sh-fchip.active { background: rgba(149,193,31,.18); border-color: #95c11f; color: #c8e877; font-weight: 600; }

/* ── Services grid in steckbrief ── */
.pm-services-grid .pm-check-item span { font-size: .82rem; }
.pm-check-service span { white-space: nowrap; }

@keyframes hs-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .hs-nav { padding: 14px 16px; gap: 8px; }
  .hs-radar { display: none; }
  .hs-packer-1, .hs-packer-2, .hs-packer-3,
  .hs-packer-4, .hs-packer-5, .hs-packer-6 { display: none; }
  .hs-form { border-radius: 14px; padding: 6px 6px 6px 16px; }
  .hs-input { font-size: 16px !important; }
  .hs-submit { padding: 12px 16px; font-size: .85rem; border-radius: 10px; }
  .hs-stats { display: none; }
  .hs-headline { font-size: clamp(1.9rem, 8vw, 2.6rem); margin-bottom: 10px; }
  .hs-subline { font-size: .88rem; margin-bottom: 20px; color: rgba(255,255,255,.35); }
}

@media (max-width: 480px) {
  /* Nav: Logo | [spacer] | 🪙 | 💬 | 👤 | 🌐 */
  /* position: fixed removes the nav from #hero-search's overflow context so the
     lang-picker dropdown is no longer clipped by overflow-y: auto */
  .hs-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1550; padding: 10px 14px; gap: 4px; }
  .hs-login-link, .hs-account-btn { display: none; }
  .hs-mob-user { display: flex; }
  .nav-auth-wrap { gap: 4px; }
  .lang-picker {
    width: 34px; height: 34px;
    padding: 0;
    justify-content: center;
  }
  .lp-current, .lp-arrow { display: none; }
  .lp-globe { display: flex; align-items: center; justify-content: center; }
  .lp-globe svg { width: 17px; height: 17px; }
  /* Popup is now inside a fixed parent – ensure it stays above all hero content */
  .lp-popup { z-index: 2000; }

  /* Hero: Content unterhalb der Nav starten, scrollbar wenn nötig */
  #hero-search { justify-content: flex-start; padding-top: 62px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .hs-content { padding: 16px 18px 32px; margin-top: 0; width: 100%; box-sizing: border-box; }
  .hs-headline { font-size: clamp(1.75rem, 9vw, 2.2rem); margin-bottom: 8px; }
  .hs-subline { display: none; }
  /* Show filter toggle as compact pill below search form */
  .hs-filter-section {
    margin-top: 10px; padding-top: 0; border-top: none; animation: none;
  }
  .hs-filter-toggle {
    background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 50px; padding: 8px 18px; font-size: .82rem;
  }
  /* Panel → fixed bottom sheet */
  .hs-filter-panel {
    position: fixed !important;
    bottom: 0; left: 0; right: 0; top: auto;
    max-width: 100% !important; margin-top: 0;
    max-height: 78vh; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px 20px 0 0;
    border: none; border-top: 1px solid rgba(255,255,255,.1);
    background: #1B2D42;
    box-shadow: 0 -8px 40px rgba(0,0,0,.65);
    padding: 0 18px 32px;
    z-index: 5000;
  }
  /* Drag handle */
  .hs-fp-drag {
    display: block;
    width: 40px; height: 4px;
    background: rgba(255,255,255,.18); border-radius: 2px;
    margin: 10px auto 0;
  }
  /* Sheet title bar */
  .hs-fp-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 2px 8px;
    font-size: .88rem; font-weight: 700; color: white;
    border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 16px;
  }
  .hs-fp-close {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; color: rgba(255,255,255,.6); flex-shrink: 0;
  }
  /* Backdrop – no backdrop-filter: WebKit blurs content at higher z-index too */
  body.hs-panel-open::before {
    content: '';
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    pointer-events: none;
    z-index: 4999;
  }
  /* Keep chips wrapping nicely inside sheet */
  .hs-filter-panel .hs-fchips { justify-content: flex-start; }
  .hs-filter-panel .hs-filter-group { margin-bottom: 8px; }

  /* Suchfeld: gestapelt, volle Breite, kein Glasmorphismus-Overkill */
  .hs-form-wrap { max-width: 100%; margin-top: 4px; }
  .hs-form {
    flex-direction: column; border-radius: 18px;
    padding: 12px; gap: 10px;
    background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12);
    box-shadow: none;
  }
  .hs-icon { display: none; }
  .hs-input {
    width: 100%; padding: 12px 4px; font-size: 16px !important;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .hs-submit {
    width: 100%; border-radius: 12px; padding: 14px;
    font-size: .92rem; min-height: 50px; box-shadow: none;
  }
  .hs-geo {
    width: 100%; min-height: 46px; font-size: .82rem; border-radius: 12px;
    background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1);
    color: rgba(255,255,255,.45);
  }

  /* Wizard – Mobile */
  .hs-wizard { margin-top: 0; border-radius: 20px; }
  .hs-wizard:hover { transform: none; box-shadow: inset 0 1px 0 rgba(255,255,255,.13), 0 16px 48px rgba(0,0,0,.48), 0 48px 80px rgba(0,0,0,.32); }
  .hs-wiz-slide { padding: 14px 16px 20px; }
  .hs-wiz-head { padding: 14px 16px 0; }
  .hs-wiz-q { font-size: 1.1rem; }
  .hs-wiz-next { padding: 13px 14px; border-radius: 14px; }
  .hs-wiz-next-main > span:first-child { font-size: .88rem; }

  /* Search-Header (Map-View) */
  .sh-nav { padding: 0 12px; }
  .sh-back { display: none; }
  .sh-login-link { font-size: .74rem; }
  .sh-account-btn { padding: 6px 12px; font-size: .74rem; }

  /* Hide info-link on mobile – makes room for token + user icons */
  .hs-info-link { display: none; }

  /* Token chip: icon only on mobile, no number, no + button */
  #hs-token-balance { padding: 5px 10px; font-size: .75rem; gap: 4px; }
  #hs-token-balance .sh-token-plus { display: none; }
  #hs-token-balance strong { display: none; }

  /* Logged-in state: compact user group */
  #hs-uname, #hs-role-badge { display: none; }
  .hs-nav .nav-user-group { gap: 3px; }
  .hs-nav .nav-profile-btn { padding: 5px 9px 5px 7px; gap: 4px; }
  .hs-nav .nav-chat-btn { padding: 3px 5px; font-size: 1rem; }
  .hs-nav .nav-bell-btn, .hs-nav .nav-avail-btn { width: 34px; height: 34px; font-size: .88rem; }
}

/* ── Scroll reveal utility ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   HERO SEARCH FORM
══════════════════════════════════════════ */
.hero-search-wrap { margin-bottom: 32px; }
.hero-sf {
  position: relative; display: flex; align-items: center;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,.14); border-radius: 50px;
  padding: 8px 8px 8px 22px; margin-bottom: 12px;
  transition: border-color .25s, box-shadow .25s;
}
.hero-sf:focus-within {
  border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,53,.15);
}
.hero-sf-icon { font-size: 1rem; color: var(--orange); flex-shrink: 0; margin-right: 10px; }
.hero-sf-icon.spin { animation: hero-spin .7s linear infinite; }
@keyframes hero-spin { to { transform: rotate(360deg); } }
.hero-sf-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 1rem; color: white; font-family: inherit; min-width: 0; padding: 6px 0;
}
.hero-sf-input::placeholder { color: rgba(255,255,255,.25); }
.hero-sf-drop {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 999;
  background: #0D1B2A; border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.7);
  overflow: hidden; display: none;
}
.hero-sf-drop.open { display: block; }
.hero-sf-btn {
  flex-shrink: 0; background: var(--orange); color: white;
  border: none; border-radius: 50px; padding: 12px 24px;
  font-size: .9rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: var(--transition); white-space: nowrap;
}
.hero-sf-btn:hover { background: var(--orange-dark); transform: scale(1.03); }
.hero-geo {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50px; padding: 10px 20px;
  color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); font-family: inherit;
}
.hero-geo:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); color: white; }
.hero-geo:disabled { opacity: .5; cursor: not-allowed; }

/* ══════════════════════════════════════════
   PACKER RADAR SECTION
══════════════════════════════════════════ */
.packer-radar-section {
  background: linear-gradient(160deg, #060f1b 0%, var(--navy) 50%, #0a1e38 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.packer-radar-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,107,53,.12) 0%, transparent 65%);
}
.packer-radar-section .section-header { position: relative; }

.prs-radar-area {
  display: flex; flex-direction: column; align-items: center; margin-bottom: 52px;
}
.prs-radar {
  position: relative; width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.prs-center {
  position: absolute; width: 58px; height: 58px; z-index: 10;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  animation: pulse-center 2s infinite;
}
.prs-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(255,107,53,.2);
  animation: ring-expand 3s ease-out infinite;
}
.prs-ring:nth-child(2) { width: 110px; height: 110px; animation-delay: 0s; }
.prs-ring:nth-child(3) { width: 190px; height: 190px; animation-delay: .75s; }
.prs-ring:nth-child(4) { width: 270px; height: 270px; animation-delay: 1.5s; }
.prs-ring:nth-child(5) { width: 370px; height: 370px; animation-delay: 2.25s; border-color: rgba(255,107,53,.07); }

.prs-pin {
  position: absolute; z-index: 5;
  background: rgba(255,255,255,.07); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 50px;
  padding: 8px 14px 8px 10px;
  display: flex; align-items: center; gap: 9px;
  white-space: nowrap; animation: float 4s ease-in-out infinite;
}
.prs-pin > span:first-child { font-size: 1.3rem; flex-shrink: 0; }
.prs-pin div { display: flex; flex-direction: column; }
.prs-pin b { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.9); }
.prs-pin div > span { font-size: .7rem; color: rgba(255,255,255,.45); font-weight: 400; }
.prs-pin-1 { top: 2%;   left: 60%;  animation-delay: 0s; }
.prs-pin-2 { top: 52%;  right: -4%; animation-delay: 1s; }
.prs-pin-3 { bottom: 8%;  left: 0%;   animation-delay: 2s; }
.prs-pin-4 { top: 22%;  left: -8%;  animation-delay: 1.5s; }
.prs-pin-5 { bottom: 28%; right: 0%;  animation-delay: .5s; }

.prs-radius-label {
  margin-top: 20px;
  background: rgba(255,107,53,.15); color: #FF9A7B;
  border: 1px solid rgba(255,107,53,.3); border-radius: 50px;
  padding: 7px 18px; font-size: .82rem; font-weight: 700;
}

/* ═══════════════════════════════════════════
   SHARED AVATAR CLASSES
═══════════════════════════════════════════ */
.avatar-photo {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%; display: block;
}
.avatar-initials {
  width: 100%; height: 100%; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; letter-spacing: .02em; font-size: inherit;
}

/* ═══════════════════════════════════════════
   NAV AUTH – Bell + Profile Button
═══════════════════════════════════════════ */
.nav-auth-wrap { display: flex; align-items: center; gap: 8px; }
.nav-auth-wrap .lang-picker { margin-left: 4px; }

.nav-user-group {
  display: flex; align-items: center; gap: 8px;
}

.nav-bell-btn {
  position: relative;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; border-radius: 50%; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: background .2s;
}
.nav-bell-btn:hover { background: rgba(255,255,255,.22); }

.nav-avail-btn {
  background: rgba(149,193,31,.18); border: 1px solid rgba(149,193,31,.45);
  color: #fff; border-radius: 50%; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: background .2s, border-color .2s;
}
.nav-avail-btn:hover { background: rgba(149,193,31,.35); border-color: rgba(149,193,31,.8); }

/* Search-header light variant (dark background) */
.search-header .nav-avail-btn { /* inherits same colors — green tint works on dark bg */ }

.bell-badge {
  position: absolute; top: -4px; right: -4px;
  background: #e74c3c; color: #fff;
  font-size: .65rem; font-weight: 700; line-height: 1;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--navy);
}

.nav-profile-btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; border-radius: 50px; padding: 6px 14px 6px 8px;
  font-size: .88rem; font-weight: 600; cursor: pointer; transition: background .2s;
  white-space: nowrap;
}
.nav-profile-btn:hover { background: rgba(255,255,255,.22); }

.nav-profile-avatar {
  font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; background: var(--orange); border-radius: 50%;
  overflow: visible; flex-shrink: 0; color: #fff; position: relative;
}

.nav-notif-badge {
  position: absolute; top: -4px; right: -4px;
  background: #e74c3c; color: #fff;
  font-size: .55rem; font-weight: 800; line-height: 1;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px; border: 2px solid var(--navy);
  pointer-events: none;
}

/* Profile dropdown */
.profile-dropdown {
  position: absolute; z-index: 3500;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 210px; padding: 6px 0; overflow: hidden;
}
.pd-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 18px; border: none; background: none;
  font-family: inherit; font-size: .9rem; font-weight: 500;
  color: var(--text); cursor: pointer; text-align: left;
  transition: background .15s;
}
.pd-item:hover { background: var(--light); }
.pd-divider { height: 1px; background: var(--border); margin: 5px 0; }
.pd-logout { color: #e74c3c; }
.pd-logout:hover { background: #fef0ee; }

/* Bell panel */
.bell-panel {
  position: absolute; z-index: 3000;
  width: 320px; max-height: 400px; overflow-y: auto;
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  font-size: .88rem; color: #e0e6ef;
}
.bell-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px 10px; font-weight: 700; font-size: .92rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.bell-panel-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  cursor: pointer; font-size: 1rem; padding: 2px 6px;
}
.bell-panel-close:hover { color: #fff; }
.bell-item {
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: flex-start; gap: 8px; flex-direction: column;
}
.bell-item:last-child { border-bottom: none; }
.bell-item-chat { color: #7fb3ff; }
.bell-time { font-size: .76rem; color: rgba(255,255,255,.4); }
.bell-empty, .bell-loading {
  padding: 24px 16px; text-align: center; color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════
   PROFIL MODAL
═══════════════════════════════════════════ */
.pm-overlay {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
  padding: 20px;
}
.pm-overlay.open { opacity: 1; pointer-events: all; }

.pm-modal {
  background: #fff; border-radius: var(--radius-lg);
  width: 100%; max-width: 720px; max-height: 90vh;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px); transition: transform .25s;
}
.pm-body {
  display: flex; flex: 1; overflow: hidden;
}
.pm-overlay.open .pm-modal { transform: translateY(0); }

.pm-header {
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
}
.pm-header-user { display: flex; align-items: center; gap: 14px; }
.pm-avatar-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0;
  overflow: hidden; position: relative;
}
#pm-avatar-inner {
  position: absolute; inset: 0;
  display: flex; align-items: stretch;
  line-height: 0; font-size: 1.5rem;
}
.pm-avatar-circle .avatar-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 0;
}
.pm-avatar-upload { cursor: pointer; }
.pm-avatar-cam {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(0,0,0,.45); display: none;
  align-items: center; justify-content: center; font-size: .9rem;
}
.pm-avatar-upload:hover .pm-avatar-cam { display: flex; }
.pm-display-name { font-size: 1.1rem; font-weight: 700; }
.pm-display-role { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.pm-close-btn {
  background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.pm-close-btn:hover { background: rgba(255,255,255,.25); }

.pm-tabs {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border); border-bottom: none;
  background: var(--light); padding: 12px 0;
  width: 170px; min-width: 170px; overflow-y: auto;
}
.pm-tab {
  background: none; border: none; border-left: 3px solid transparent;
  padding: 13px 20px; font-size: .88rem; font-weight: 600; cursor: pointer;
  color: var(--muted); text-align: left; white-space: nowrap;
  transition: color .18s, background .18s, border-color .18s;
}
.pm-tab.active {
  color: var(--orange); border-left-color: var(--orange);
  background: rgba(0,0,0,.04);
}
.pm-tab:hover:not(.active) { color: var(--text); background: rgba(0,0,0,.03); }

.pm-panel { padding: 24px; overflow-y: auto; flex: 1; }
.pm-hidden { display: none !important; }

.pm-form { display: flex; flex-direction: column; gap: 18px; }
.pm-form-group { display: flex; flex-direction: column; gap: 6px; }
.pm-label { font-size: .85rem; font-weight: 600; color: var(--text); }
.pm-input, .pm-textarea {
  border: 2px solid var(--border); border-radius: 10px;
  padding: 10px 14px; font-size: .92rem; font-family: inherit;
  color: var(--text); background: #fff; transition: border-color .2s;
  width: 100%;
}
.pm-input:focus, .pm-textarea:focus { outline: none; border-color: var(--orange); }
.pm-input-disabled { background: var(--light); color: var(--muted); cursor: not-allowed; }
.pm-support-id { display: flex; align-items: center; font-weight: 600; letter-spacing: .04em; }
.pm-textarea { resize: vertical; min-height: 100px; }
.pm-hint { font-size: .78rem; color: var(--muted); }
.pm-hint--warn {
  margin-top: 6px;
  padding: 8px 10px;
  background: rgba(255,152,0,.08);
  border-left: 2px solid rgba(255,152,0,.5);
  border-radius: 4px;
  color: rgba(255,193,31,.75);
  line-height: 1.5;
}

.pm-optional { font-size: .75rem; color: var(--muted); font-weight: 400; }
.pm-city-row { display: flex; gap: 12px; }

.pm-check-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pm-check-item {
  display: flex; align-items: center; gap: 6px;
  background: var(--light); border: 2px solid var(--border);
  border-radius: 50px; padding: 6px 12px; cursor: pointer;
  font-size: .82rem; font-weight: 500; transition: all .2s;
  user-select: none;
}
.pm-check-item:has(input:checked) {
  background: rgba(255,107,53,.1); border-color: var(--orange); color: var(--orange);
}
.pm-check-item input { display: none; }

.pm-views-card {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #0D1B2A, #1B2D42);
  color: #fff; border-radius: var(--radius); padding: 16px 20px;
}
.pm-views-icon { font-size: 1.5rem; }
.pm-views-card strong { font-size: 1.6rem; font-weight: 800; }
.pm-views-sub { font-size: .78rem; color: rgba(255,255,255,.55); }

.pm-section-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }

.pm-mfa-card {
  margin-top: 28px; padding: 20px;
  background: var(--light); border-radius: var(--radius);
  border: 2px dashed var(--border);
}
.pm-mfa-row { display: flex; align-items: flex-start; gap: 10px; margin: 10px 0 14px; }
.pm-mfa-badge {
  font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}
.pm-mfa-off { background: #fef3cd; color: #856404; border: 1px solid #ffc107; }
.pm-mfa-on  { background: rgba(149,193,31,.15); color: #6a9900; border: 1px solid rgba(149,193,31,.5); }
.pm-mfa-info { font-size: .82rem; color: var(--muted); flex: 1; }
.pm-btn-outline {
  background: none; border: 2px solid var(--border); border-radius: 50px;
  padding: 8px 18px; font-size: .85rem; font-weight: 600; cursor: pointer;
  color: var(--text); transition: border-color .18s;
}
.pm-btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.pm-btn-danger {
  background: none; border: 2px solid #e53935; border-radius: 50px;
  color: #e53935; font-size: .85rem; font-weight: 600;
  padding: 8px 18px; cursor: pointer; transition: all .18s;
}
.pm-btn-danger:hover { background: rgba(229,57,53,.08); }

.pm-danger-zone {
  margin-top: 28px; padding: 20px;
  background: rgba(229,57,53,.04); border-radius: var(--radius);
  border: 2px dashed rgba(229,57,53,.35);
}
.pm-danger-desc { font-size: .84rem; color: var(--muted); margin: 8px 0 16px; line-height: 1.55; }

.pm-save-btn {
  background: var(--orange); color: #fff; border: none;
  border-radius: 50px; padding: 12px 28px; font-size: .95rem;
  font-weight: 700; cursor: pointer; transition: background .2s, transform .15s;
  align-self: flex-start;
}
.pm-save-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.pm-save-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Einsatzgebiet (Packer service-area management) ── */
.pm-einsatz-section {
  padding: 18px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.pm-einsatz-list { display: flex; flex-direction: column; gap: 8px; margin: 10px 0 14px; }
.pm-einsatz-empty { margin: 4px 0 0; }
.pm-einsatz-item {
  background: rgba(149,193,31,.06); border: 1.5px solid rgba(149,193,31,.2);
  border-radius: 10px; padding: 10px 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.pm-einsatz-item-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pm-einsatz-item-label  { font-size: .84rem; font-weight: 600; color: var(--text); }
.pm-einsatz-item-radius { font-size: .75rem; color: #95c11f; font-weight: 600; white-space: nowrap; }
.pm-einsatz-item-slider-row { display: flex; align-items: center; gap: 10px; }
.pm-einsatz-delete-btn {
  background: none; border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  color: rgba(255,255,255,.5); font-size: .7rem; width: 22px; height: 22px;
  cursor: pointer; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, color .15s;
}
.pm-einsatz-delete-btn:hover { border-color: #e74c3c; color: #e74c3c; }
.pm-einsatz-add { display: flex; flex-direction: column; gap: 10px; }
.pm-einsatz-loc-wrap { position: relative; }
.pm-einsatz-drop {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 200;
  background: #1a2533; border: 1.5px solid var(--border);
  border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,.5); overflow: hidden;
}
.pm-einsatz-ac-item { padding: 9px 13px; cursor: pointer; transition: background .15s; }
.pm-einsatz-ac-item:hover { background: rgba(149,193,31,.1); }
.pm-einsatz-ac-main { font-size: .84rem; font-weight: 600; color: var(--text); }
.pm-einsatz-ac-sub  { font-size: .72rem; color: var(--muted); margin-top: 1px; }
.pm-einsatz-slider-row { display: flex; align-items: center; gap: 12px; }
.pm-einsatz-slider-row .pm-hint { white-space: nowrap; min-width: 90px; margin: 0; }
.pm-range {
  flex: 1; -webkit-appearance: none; appearance: none; height: 4px;
  background: rgba(149,193,31,.25); border-radius: 2px; outline: none; cursor: pointer;
}
.pm-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: #95c11f; cursor: pointer;
  box-shadow: 0 0 6px rgba(149,193,31,.5); transition: transform .15s, box-shadow .15s;
}
.pm-range::-webkit-slider-thumb:hover { transform: scale(1.2); box-shadow: 0 0 10px rgba(149,193,31,.7); }
.pm-range::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; border: none; background: #95c11f; cursor: pointer;
}
.pm-einsatz-add-btn {
  align-self: flex-start; padding: 9px 20px; border-radius: 50px;
  background: rgba(149,193,31,.15); border: 1.5px solid rgba(149,193,31,.4);
  color: #95c11f; font-size: .85rem; font-weight: 700; cursor: pointer;
  transition: background .18s, border-color .18s, transform .15s;
}
.pm-einsatz-add-btn:hover { background: rgba(149,193,31,.25); border-color: #95c11f; transform: translateY(-1px); }

/* ── Meine PackBuddies tab ── */
.pm-helpers-list { display: flex; flex-direction: column; gap: 10px; padding: 2px 0; }
.pm-helper-loading,
.pm-helper-empty {
  text-align: center; color: var(--muted);
  padding: 36px 16px; font-size: .88rem;
}
.pm-helper-card {
  display: flex; flex-direction: column;
  background: rgba(0,0,0,.03); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color .18s;
}
.pm-helper-card:hover { border-color: rgba(149,193,31,.5); }
.pm-helper-main {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
}
.pm-helper-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(149,193,31,.15); font-size: 1.2rem; overflow: hidden;
}
.pm-helper-body { flex: 1; min-width: 0; }
.pm-helper-name { font-weight: 600; font-size: .9rem; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-helper-city { font-size: .76rem; color: var(--muted); margin-top: 2px; }
.pm-helper-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.pm-helper-chat-btn {
  background: #95c11f; color: #161e23; border: none; border-radius: 20px;
  padding: 7px 14px; font-size: .8rem; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: background .18s;
}
.pm-helper-chat-btn:hover { background: #C2D677; }
.pm-helper-details-toggle {
  background: none; border: none; color: var(--muted); font-size: .78rem;
  cursor: pointer; padding: 4px 6px; display: flex; align-items: center; gap: 3px;
  white-space: nowrap; transition: color .18s;
}
.pm-helper-details-toggle:hover { color: var(--text); }
.pm-helper-details-toggle .toggle-arrow { display: inline-block; transition: transform .2s; font-style: normal; }
.pm-helper-details-toggle.open .toggle-arrow { transform: rotate(180deg); }
.pm-helper-details {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.02);
}
.pm-helper-details.pm-hidden { display: none !important; }

/* ── Packer-Detail inside expanded card ── */
.pm-detail-loading { padding: 16px; color: var(--muted); font-size: .84rem; }
.pm-detail-section {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
}
.pm-detail-section:last-child { border-bottom: none; }
.pm-detail-sec-title {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: 8px;
}
.pm-detail-bio { font-size: .84rem; color: var(--text); line-height: 1.5; margin: 0; }
.pm-detail-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pm-detail-chip {
  background: rgba(149,193,31,.12); color: #3a5200;
  border: 1px solid rgba(149,193,31,.35); border-radius: 20px;
  padding: 4px 11px; font-size: .78rem; font-weight: 600;
}
.pm-detail-contact-row {
  font-size: .85rem; color: var(--text); margin-bottom: 5px;
}
.pm-detail-contact-row:last-child { margin-bottom: 0; }
.pm-detail-contact-row a { color: #558b00; text-decoration: none; font-weight: 600; }
.pm-detail-contact-row a:hover { text-decoration: underline; }
.pm-detail-avail { display: flex; flex-direction: column; gap: 6px; }
.pm-detail-avail-row {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px;
  font-size: .83rem; padding: 5px 0; border-bottom: 1px dashed rgba(0,0,0,.07);
}
.pm-detail-avail-row:last-child { border-bottom: none; }
.pm-detail-avail-date { font-weight: 600; color: var(--text); }
.pm-detail-avail-time {
  background: rgba(149,193,31,.15); color: #3a5200; border-radius: 10px;
  padding: 2px 8px; font-size: .76rem; font-weight: 600;
}
.pm-detail-avail-note { font-size: .76rem; color: var(--muted); font-style: italic; }
.pm-detail-empty-note { font-size: .83rem; color: var(--muted); }

.pm-footer {
  padding: 16px 24px; border-top: 1px solid var(--border);
  background: var(--light);
}
.pm-logout-btn {
  background: none; border: 2px solid #e74c3c; color: #e74c3c;
  border-radius: 50px; padding: 9px 22px; font-size: .88rem;
  font-weight: 700; cursor: pointer; transition: all .2s;
}
.pm-logout-btn:hover { background: #e74c3c; color: #fff; }

@media (max-width: 540px) {
  .pm-overlay { align-items: flex-end; padding: 0; }
  .pm-modal {
    width: 100%; max-width: 100%;
    border-radius: 22px 22px 0 0;
    max-height: 85vh; max-height: 85dvh;
    display: flex; flex-direction: column; overflow: hidden;
  }
  .pm-body { flex-direction: column; flex: 1; min-height: 0; overflow: hidden; }
  .pm-content { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .pm-panel { overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .pm-tabs {
    flex-direction: row; border-right: none; border-bottom: 1px solid var(--border);
    width: 100%; min-width: 0; padding: 0; overflow-x: auto; overflow-y: hidden;
    flex-shrink: 0; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .pm-tabs::-webkit-scrollbar { display: none; }
  .pm-tab {
    border-left: none !important; border-bottom: 2px solid transparent;
    padding: 12px 16px; margin-bottom: -1px; white-space: nowrap;
  }
  .pm-tab.active { border-left-color: transparent !important; border-bottom-color: var(--orange); }
}

/* ── Legal bar – persistent footer on map/search pages ── */
.pb-legal-bar {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  position: fixed !important;
  bottom: 0; left: 0; right: 0;
  padding: 7px 24px;
  padding-bottom: max(7px, env(safe-area-inset-bottom));
  background: rgba(13,27,42,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.07);
  z-index: 9998 !important;
}
.pb-legal-bar a {
  color: rgba(255,255,255,.32);
  font-size: .67rem;
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.pb-legal-bar a:hover { color: rgba(255,255,255,.65); }
/* Hide legal bar whenever any overlay is open */
body.pb-modal-open .pb-legal-bar { display: none !important; }
#hero-search { padding-bottom: 40px; }

.prs-search-wrap { max-width: 580px; margin: 0 auto; }
.prs-search-form {
  position: relative; display: flex; align-items: center;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,.14); border-radius: 50px;
  padding: 8px 8px 8px 22px; margin-bottom: 12px;
  transition: border-color .25s, box-shadow .25s;
}
.prs-search-form:focus-within {
  border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,53,.15);
}
.prs-search-icon { font-size: 1rem; color: var(--orange); flex-shrink: 0; margin-right: 10px; }
.prs-search-icon.spin { animation: hero-spin .7s linear infinite; }
.prs-search-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 1rem; color: white; font-family: inherit; min-width: 0; padding: 6px 0;
}
.prs-search-input::placeholder { color: rgba(255,255,255,.25); }
.prs-ac-drop {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 999;
  background: #0D1B2A; border: 1.5px solid rgba(255,255,255,.09);
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.6);
  overflow: hidden; display: none;
}
.prs-ac-drop.open { display: block; }
.prs-search-btn {
  flex-shrink: 0; background: var(--orange); color: white;
  border: none; border-radius: 50px; padding: 12px 24px;
  font-size: .9rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: var(--transition); white-space: nowrap;
}
.prs-search-btn:hover { background: var(--orange-dark); transform: scale(1.03); }
.prs-geo-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,107,53,.07); border: 1.5px solid rgba(255,107,53,.18);
  border-radius: 50px; padding: 11px 20px;
  color: rgba(255,165,120,.8); font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); font-family: inherit;
}
.prs-geo-btn:hover { background: rgba(255,107,53,.14); border-color: var(--orange); color: var(--orange); }
.prs-geo-btn:disabled { opacity: .5; cursor: not-allowed; }

@media (max-width: 768px) {
  .prs-radar { width: 280px; height: 280px; }
  .prs-ring:nth-child(2) { width: 80px;  height: 80px; }
  .prs-ring:nth-child(3) { width: 140px; height: 140px; }
  .prs-ring:nth-child(4) { width: 200px; height: 200px; }
  .prs-ring:nth-child(5) { width: 275px; height: 275px; }
  .prs-pin-2, .prs-pin-4 { display: none; }
}

/* ══════════════════════════════════════════
   ROLE BADGE  (nav profile button)
══════════════════════════════════════════ */
.nrb {
  display: inline-block;
  font-size: .65rem; font-weight: 700; line-height: 1;
  padding: 3px 7px; border-radius: 50px;
  white-space: nowrap; vertical-align: middle;
  margin-left: 4px;
}
.nrb-packer {
  background: rgba(39,174,96,.18);
  color: #27AE60;
  border: 1px solid rgba(39,174,96,.35);
}
.nrb-umzuegler {
  background: rgba(25,118,210,.18);
  color: #64B5F6;
  border: 1px solid rgba(25,118,210,.35);
}

/* ══════════════════════════════════════════
   CHAT / KONTAKTE BUTTON
══════════════════════════════════════════ */
.nav-chat-btn {
  position: relative;
  background: none; border: none; cursor: pointer;
  font-size: 1.15rem; padding: 6px 8px; border-radius: 8px;
  transition: background .18s;
  color: inherit;
}
.nav-chat-btn:hover { background: rgba(255,255,255,.1); }

@keyframes chatPulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.35); }
  65%  { transform: scale(.9); }
  100% { transform: scale(1); }
}
.chat-btn-pulse { animation: chatPulse .45s ease; }

/* ══════════════════════════════════════════
   CHAT PANEL  (wider than bell)
══════════════════════════════════════════ */
.chat-panel { width: 360px; max-height: 500px; overflow: hidden; display: flex; flex-direction: column; z-index: 3001; }
.chat-panel-list { flex: 1; overflow-y: auto; padding: 0; }
.chat-panel-list::-webkit-scrollbar { width: 4px; }
.chat-panel-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 4px; }

/* ── Contact card ── */
.contact-card {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .15s; cursor: pointer;
}
.contact-card:hover { background: rgba(255,255,255,.06); }
.contact-card:hover .cc-menu-btn { color: rgba(255,255,255,.65); }

.cc-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); font-size: .95rem;
}
.cc-body { flex: 1; min-width: 0; }
.cc-name-row { display: flex; align-items: center; gap: 6px; }
.cc-name { font-size: .88rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cc-unread { font-size: .65rem; font-weight: 800; background: var(--orange); color: #fff; border-radius: 50px; padding: 1px 6px; flex-shrink: 0; }
.cc-city { font-size: .74rem; color: rgba(255,255,255,.45); margin-top: 1px; }
.cc-last { display: block; font-size: .76rem; color: rgba(255,255,255,.55); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cc-last-muted { color: rgba(255,255,255,.28) !important; font-style: italic; }

/* ── three-dot menu ── */
.cc-menu-wrap { position: relative; flex-shrink: 0; }
.cc-menu-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; font-weight: 900; color: rgba(255,255,255,.4);
  padding: 4px 8px; border-radius: 6px; line-height: 1;
  transition: color .15s, background .15s; letter-spacing: .05em;
}
.cc-menu-btn:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); }

.cc-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 4px);
  background: #1e2e40; border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 5px; min-width: 190px;
  box-shadow: 0 8px 28px rgba(0,0,0,.45); z-index: 9999;
}
.cc-dropdown-open { display: block; }

.cc-dropdown-item {
  display: flex; align-items: center; gap: 9px; width: 100%;
  background: none; border: none; cursor: pointer; color: rgba(255,255,255,.82);
  font-size: .86rem; font-family: inherit; padding: 9px 11px;
  border-radius: 7px; text-align: left; transition: background .12s;
}
.cc-dropdown-item:hover { background: rgba(255,255,255,.08); color: #fff; }
.cc-dropdown-danger:hover { background: rgba(231,76,60,.15); color: #e74c3c; }
.cc-menu-item-icon { font-size: .95rem; flex-shrink: 0; width: 18px; text-align: center; }
.cc-dropdown-divider { height: 1px; background: rgba(255,255,255,.08); margin: 4px 5px; }

/* ══════════════════════════════════════════
   BLOCK MODAL
══════════════════════════════════════════ */
.block-modal {
  max-width: 480px; width: 90%;
  background: var(--navy-mid, #1B2D42);
  border-radius: 18px; padding: 28px;
}
.block-modal-head {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px;
}
.block-modal-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.block-modal-title { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 3px; }
.block-modal-sub { font-size: .82rem; color: rgba(255,255,255,.5); margin: 0; }
.block-modal-head .pm-close-btn { margin-left: auto; flex-shrink: 0; }

.block-form-label { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.block-reasons { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.block-reason-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.09);
  border-radius: 9px; padding: 10px 14px; cursor: pointer;
  font-size: .88rem; color: rgba(255,255,255,.8);
  transition: border-color .15s, background .15s;
}
.block-reason-item:hover { background: rgba(255,255,255,.09); border-color: rgba(255,107,53,.4); }
.block-reason-item input[type=radio] { accent-color: var(--orange); flex-shrink: 0; }
.block-reason-item:has(input:checked) { border-color: var(--orange); background: rgba(255,107,53,.08); color: #fff; }

.block-detail-label { font-size: .78rem; color: rgba(255,255,255,.45); display: block; margin-bottom: 6px; }
.block-detail-area { width: 100%; resize: vertical; min-height: 72px; }
.block-modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.block-cancel-btn {
  background: rgba(255,255,255,.07); border: none; color: rgba(255,255,255,.7);
  border-radius: 50px; padding: 10px 20px; font-size: .9rem; cursor: pointer;
  font-family: inherit; transition: background .15s;
}
.block-cancel-btn:hover { background: rgba(255,255,255,.12); }
.block-submit-btn {
  background: #c0392b; border: none; color: #fff;
  border-radius: 50px; padding: 10px 22px; font-size: .9rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background .15s, opacity .15s;
}
.block-submit-btn:hover:not(:disabled) { background: #a93226; }
.block-submit-btn:disabled { opacity: .45; cursor: not-allowed; }

/* ══════════════════════════════════════════
   LANGUAGE PICKER (fixed top-right)
══════════════════════════════════════════ */
.lang-picker {
  position: relative; flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 7px 12px;
  cursor: pointer; touch-action: manipulation;
}
.lp-toggle {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; color: #fff;
  font-size: .82rem; font-weight: 600; cursor: pointer;
  font-family: inherit; outline: none; padding: 0;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.lp-globe { font-size: 1.1rem; line-height: 1; }
.lp-current { font-size: .82rem; font-weight: 700; letter-spacing: .02em; }
.lp-arrow { font-size: .65rem; opacity: .7; transition: transform .2s; }
.lang-picker.lp-open .lp-arrow { transform: rotate(180deg); }

.lp-popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px); right: 0; left: auto;
  background: #1B2D42;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  overflow: hidden;
  min-width: 140px;
  z-index: 10000;
}
.lang-picker.lp-open .lp-popup { display: block; }
.lp-option {
  display: flex; align-items: center; gap: 8px; width: 100%;
  background: none; border: none; color: #fff;
  font-size: .83rem; font-weight: 500; cursor: pointer;
  font-family: inherit; padding: 10px 14px; text-align: left;
  transition: background .15s; touch-action: manipulation;
}
.lp-option:hover { background: rgba(255,255,255,.1); }
.lp-option.active { background: rgba(255,255,255,.15); font-weight: 700; }

/* ══════════════════════════════════════════
   CONFIRM-DELETE MODAL
══════════════════════════════════════════ */
.confirm-modal {
  max-width: 440px; width: 90%;
  background: var(--navy-mid, #1B2D42);
  border-radius: 18px; padding: 28px;
}
.confirm-modal-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.confirm-modal-head h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0; }
.confirm-modal-body { margin-bottom: 24px; }
.confirm-token-warning {
  background: rgba(192,57,43,.15); border: 1.5px solid rgba(192,57,43,.4);
  border-radius: 10px; padding: 12px 14px;
  font-size: .88rem; color: #f1a896; line-height: 1.55; margin-bottom: 12px;
}
.confirm-modal-body > p {
  font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.6;
}
.confirm-modal-actions {
  display: flex; gap: 10px; justify-content: flex-end;
}
.confirm-delete-btn {
  background: #c0392b; border: none; color: #fff;
  border-radius: 50px; padding: 10px 22px; font-size: .9rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background .15s;
}
.confirm-delete-btn:hover { background: #a93226; }

/* ══════════════════════════════════════════
   RTL – Arabic layout overrides
══════════════════════════════════════════ */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .nav-inner,
[dir="rtl"] .nav-links,
[dir="rtl"] .nav-auth-wrap,
[dir="rtl"] .hs-auth-wrap,
[dir="rtl"] .sh-auth-wrap { flex-direction: row-reverse; }
[dir="rtl"] .lang-picker { flex-direction: row-reverse; }
[dir="rtl"] .hero-cta { flex-direction: row-reverse; }
[dir="rtl"] .hs-form { flex-direction: row-reverse; }
[dir="rtl"] .hs-filter-panel  { direction: rtl; }
[dir="rtl"] .hs-info-link     { margin-right: 0; margin-left: auto; order: 1; }
[dir="rtl"] .hs-logo          { margin-right: 0; }
[dir="rtl"] .pb-float-stats   { left: auto; right: 20px; flex-direction: row-reverse; }
[dir="rtl"] .sh-ext-group     { flex-direction: row-reverse; }
[dir="rtl"] .search-header-inner,
[dir="rtl"] .sh-controls,
[dir="rtl"] .sh-search-form { flex-direction: row-reverse; }
[dir="rtl"] .result-layout { flex-direction: row-reverse; }
[dir="rtl"] .result-sidebar {
  border-right: none;
  border-left: 1px solid rgba(255,255,255,.08);
}
[dir="rtl"] .rs-header,
[dir="rtl"] .packer-card { flex-direction: row-reverse; }
[dir="rtl"] .pc-right { text-align: left; }
[dir="rtl"] .sh-search-icon { left: auto; right: 14px; }
[dir="rtl"] .sh-search-input { padding-left: 40px; padding-right: 44px; }
[dir="rtl"] .sh-clear-btn { left: 8px; right: auto; }
[dir="rtl"] .detail-hero-bg,
[dir="rtl"] .detail-body { direction: rtl; }
[dir="rtl"] .chat-panel,
[dir="rtl"] .bell-panel { direction: rtl; }
[dir="rtl"] .contact-card { flex-direction: row-reverse; }
[dir="rtl"] .cc-body { text-align: right; }
[dir="rtl"] .pm-modal,
[dir="rtl"] .modal-content { direction: rtl; }
[dir="rtl"] .pm-tabs,
[dir="rtl"] .modal-tabs { flex-direction: column; }
[dir="rtl"] .pm-tab { text-align: right; border-left: none; border-right: 3px solid transparent; }
[dir="rtl"] .pm-tab.active { border-right-color: var(--orange); }
[dir="rtl"] .role-cards { flex-direction: row-reverse; }
[dir="rtl"] .chat-modal-inner { direction: rtl; }
[dir="rtl"] .chat-form-inner { flex-direction: row-reverse; }
[dir="rtl"] .confirm-modal,
[dir="rtl"] .block-modal { direction: rtl; }
[dir="rtl"] .confirm-modal-head,
[dir="rtl"] .confirm-modal-actions,
[dir="rtl"] .block-modal-actions { flex-direction: row-reverse; }
[dir="rtl"] .profile-dropdown { text-align: right; }
[dir="rtl"] .pd-item { flex-direction: row-reverse; }
[dir="rtl"] .cc-ctx-menu { direction: rtl; }
[dir="rtl"] .nav-profile-btn { flex-direction: row-reverse; }
[dir="rtl"] .hiw-grid,
[dir="rtl"] .feature-grid,
[dir="rtl"] .footer-grid,
[dir="rtl"] .pricing-grid { direction: rtl; }
[dir="rtl"] .cta-actions { flex-direction: row-reverse; }
[dir="rtl"] .how-step { direction: rtl; }
[dir="rtl"] .bell-item { flex-direction: row-reverse; }

/* ══════════════════════════════════════════
   Availability Calendar (Packer profile tab – light modal background)
══════════════════════════════════════════ */
.avail-binding-notice {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff8e1; border: 1.5px solid #f9a825;
  border-radius: 10px; padding: 12px 14px; margin: 0 0 16px;
}
.avail-notice-icon { font-size: 1.2rem; line-height: 1.4; flex-shrink: 0; }
.avail-binding-notice strong {
  display: block; font-size: .88rem; color: #7a5900; margin-bottom: 3px;
}
.avail-binding-notice p {
  font-size: .82rem; color: #7a5900; line-height: 1.45; margin: 0;
}
.pm-avail-intro {
  font-size: .85rem; color: var(--muted); margin: 0 0 16px; line-height: 1.5;
}
.avail-calendar {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.avail-cal-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.avail-cal-title {
  font-size: .9rem; font-weight: 700; color: var(--text);
}
.avail-nav-btn {
  background: var(--border); border: none; color: var(--text);
  width: 30px; height: 30px; border-radius: 8px; cursor: pointer;
  font-size: 1.1rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.avail-nav-btn:hover { background: #ccd5df; }

.avail-cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; margin-bottom: 4px;
}
.avail-cal-weekdays span {
  text-align: center; font-size: .7rem; font-weight: 600;
  color: var(--muted); padding: 2px 0;
}
.avail-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
}
.avail-day {
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: 8px; font-size: .82rem; font-weight: 600; color: var(--text);
  position: relative; transition: background .12s;
  user-select: none;
}
.avail-day:not(.avail-day--other):not(.avail-day--past):hover {
  background: var(--border);
}
.avail-day--other   { opacity: 0; pointer-events: none; }
.avail-day--past    { color: #c8d0dc; pointer-events: none; }
.avail-day--today   { color: #6b9a0f; font-weight: 800; }
.avail-day--set     { background: rgba(149,193,31,.18); color: #4e7a0a; }
.avail-day--selected {
  background: #95c11f !important; color: #fff !important; font-weight: 800;
}
.avail-day-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #95c11f; position: absolute; bottom: 3px;
}
.avail-day--set .avail-day-dot { background: #4e7a0a; }
.avail-day--selected .avail-day-dot { background: #fff; }
.avail-day--blocked { background: rgba(231,76,60,.12); color: #c0392b; }
.avail-day--blocked .avail-day-dot { background: #c0392b; }
.avail-day--blocked.avail-day--selected { background: #c0392b !important; color: #fff !important; }

/* Day editor */
.avail-editor {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.avail-editor-date {
  font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 14px;
}
.avail-mode-row {
  display: flex; gap: 8px; margin-bottom: 14px;
}
.avail-mode-btn {
  flex: 1; padding: 7px 10px; border-radius: 8px; border: 1.5px solid var(--border);
  background: transparent; color: var(--text-muted); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all .15s;
}
.avail-mode-btn--avail.active  { border-color: #4e7a0a; background: rgba(149,193,31,.18); color: #4e7a0a; }
.avail-mode-btn--blocked.active { border-color: #c0392b; background: rgba(231,76,60,.12); color: #c0392b; }
.avail-allday-row {
  margin-bottom: 12px;
}
.avail-allday-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--text); cursor: pointer;
}
.avail-allday-label input[type=checkbox] {
  width: 16px; height: 16px; accent-color: #95c11f; cursor: pointer;
}
.avail-time-row {
  display: flex; gap: 12px; margin-bottom: 12px;
}
.avail-time-group {
  display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.avail-time-label {
  font-size: .75rem; font-weight: 600; color: var(--muted); text-transform: uppercase;
}
.avail-time-input {
  background: #fff; border: 2px solid var(--border);
  color: var(--text); border-radius: 8px; padding: 7px 10px; font-size: .85rem;
  font-family: inherit; width: 100%; box-sizing: border-box;
}
.avail-time-input:focus { outline: none; border-color: var(--orange); }
.avail-form-group { margin-bottom: 14px; }
.avail-note-label {
  display: block; font-size: .75rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; margin-bottom: 5px;
}
.avail-note-input {
  width: 100%; box-sizing: border-box;
  background: #fff; border: 2px solid var(--border);
  color: var(--text); border-radius: 8px; padding: 8px 10px; font-size: .85rem;
  font-family: inherit;
}
.avail-note-input:focus { outline: none; border-color: var(--orange); }
/* Date range row (Ganztag) */
.avail-range-row {
  display: flex; gap: 12px; margin-bottom: 12px;
}
.avail-date-input {
  background: #fff; border: 2px solid var(--border);
  color: var(--text); border-radius: 8px; padding: 7px 10px; font-size: .85rem;
  font-family: inherit; width: 100%; box-sizing: border-box;
}
.avail-date-input:focus { outline: none; border-color: #95c11f; }

/* Weekday pattern row */
.avail-weekday-row { margin: 0 0 14px; }
.avail-weekday-title {
  display: block; font-size: .75rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; margin-bottom: 8px; letter-spacing: .04em;
}
.avail-weekday-checks { display: flex; gap: 6px; }
.avail-wd-item { position: relative; display: inline-flex; }
.avail-wd-item input[type="checkbox"] {
  position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; margin: 0; z-index: 1;
}
.avail-wd-item span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.04); border: 1.5px solid var(--border);
  font-size: .72rem; font-weight: 700; color: var(--muted);
  cursor: pointer; transition: all .15s; user-select: none;
}
.avail-wd-item input:checked + span {
  background: rgba(149,193,31,.15); border-color: #95c11f; color: #95c11f;
}
.avail-wd-item span:hover { border-color: #95c11f; }

.avail-editor-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.avail-save-btn {
  padding: 8px 18px; border-radius: 8px; border: none; cursor: pointer;
  background: #95c11f; color: #fff; font-weight: 700; font-size: .85rem;
  transition: background .15s;
}
.avail-save-btn:hover { background: #7ea818; }
.avail-save-btn:disabled { opacity: .5; cursor: not-allowed; }
.avail-delete-btn {
  padding: 8px 14px; border-radius: 8px; border: 1px solid rgba(220,53,69,.35);
  background: transparent; color: #dc3545; cursor: pointer; font-size: .85rem;
  transition: background .15s;
}
.avail-delete-btn:hover { background: rgba(220,53,69,.08); }
.avail-delete-btn:disabled { opacity: .5; cursor: not-allowed; }
.avail-cancel-btn {
  padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--muted); cursor: pointer; font-size: .85rem;
  transition: background .15s;
}
.avail-cancel-btn:hover { background: var(--border); }

/* ══════════════════════════════════════════
   Date filter in search header
══════════════════════════════════════════ */
.sh-divider {
  width: 1px; height: 18px;
  background: rgba(255,255,255,.12); flex-shrink: 0;
  align-self: center;
}
.sh-date-wrap {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 0 6px; height: 34px;
  position: relative;
}
.sh-date-input {
  /* Completely invisible – used only as a click target for the native date picker */
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; z-index: 1;
  background: transparent; border: none; outline: none;
  color-scheme: dark;
}
/* The span shows placeholder text or the formatted date – never the native input */
.sh-date-ph {
  flex: 1; font-size: .8rem; color: rgba(255,255,255,.32);
  pointer-events: none; white-space: nowrap; user-select: none;
  transition: color .15s;
}
.sh-date-ph.has-value { color: rgba(255,255,255,.88); }
/* Clear button sits above the invisible input */
.sh-date-clear {
  position: relative; z-index: 2;
  background: none; border: none; color: rgba(255,255,255,.45);
  cursor: pointer; font-size: .8rem; padding: 0 2px; line-height: 1;
  transition: color .15s;
}
.sh-date-clear:hover { color: #ff6b6b; }

/* ══════════════════════════════════════════
   Availability display in packer detail panel
══════════════════════════════════════════ */
/* ── Collapsible availability toggle ── */
.detail-avail-toggle {
  width: 100%; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; cursor: pointer; padding: 8px 10px;
  font-family: inherit; text-align: left;
  transition: background .18s, border-color .18s;
}
.detail-avail-toggle:hover {
  background: rgba(149,193,31,.07); border-color: rgba(149,193,31,.22);
}
.detail-avail-toggle:hover .detail-avail-count { color: rgba(255,255,255,.7); }
.detail-avail-count {
  font-size: .74rem; font-weight: 600;
  background: rgba(149,193,31,.15); color: #95c11f;
  border-radius: 99px; padding: 1px 9px; line-height: 1.7;
}
.detail-avail-arrow {
  font-size: .65rem; color: #95c11f; font-weight: 700;
  margin-left: auto; transition: transform .2s; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(149,193,31,.15); border: 1px solid rgba(149,193,31,.3);
  display: inline-flex; align-items: center; justify-content: center;
}
.detail-avail-list {
  display: flex; flex-direction: column; gap: 6px; margin-top: 10px;
}
.detail-avail-slot {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px;
  background: rgba(149,193,31,.08);
  border: 1px solid rgba(149,193,31,.2);
  border-radius: 8px;
  flex-wrap: wrap;
}
.detail-avail-date {
  font-size: .82rem; font-weight: 700; color: #c2d677; min-width: 110px;
}
.detail-avail-time {
  font-size: .82rem; color: rgba(255,255,255,.75);
}
.detail-avail-badge {
  font-size: .75rem; font-weight: 700;
  background: rgba(149,193,31,.2); color: #95c11f;
  padding: 2px 8px; border-radius: 4px;
}
.detail-avail-note {
  font-size: .78rem; color: rgba(255,255,255,.45); margin-left: auto;
}
.detail-avail-empty {
  font-size: .82rem; color: rgba(255,255,255,.35); margin: 4px 0;
}
.detail-avail-loading {
  font-size: .82rem; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 6px; padding: 4px 0;
}
@keyframes avail-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.avail-spin { animation: avail-pulse 1.2s ease-in-out infinite; }

/* ── Availability slot variants (match / nearby / normal) ── */
.detail-avail-slot--exact {
  background: rgba(149,193,31,.22);
  border-color: rgba(149,193,31,.55);
}
.detail-avail-slot--exact .detail-avail-date {
  color: #b8d96a; font-weight: 800;
}
.detail-avail-slot--nearby {
  opacity: .72;
}
.detail-avail-slot--normal { /* inherits .detail-avail-slot */ }

/* Section headers inside availability list */
.avail-group-header {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; padding: 8px 2px 3px; margin-top: 4px;
}
.avail-group-match  { color: #95c11f; }
.avail-group-nearby { color: rgba(255,255,255,.4); }

/* ── Packer card date-match badge (in search list) ── */
.pc-date-match {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 5px; border-radius: 5px;
  padding: 2px 8px; font-size: .73rem; font-weight: 700;
  border: 1px solid transparent;
}
.pc-date-match--exact {
  background: rgba(149,193,31,.22); border-color: rgba(149,193,31,.55);
  color: #4e7a0a;
}
.pc-date-match--nearby {
  background: rgba(149,193,31,.07); border-color: rgba(149,193,31,.2);
  color: var(--muted);
}
.pc-date-diff {
  font-size: .68rem; opacity: .75; margin-left: 1px;
}

/* ── Outside-radius date-match section ── */
.rs-outside-header {
  font-size: .73rem; font-weight: 700;
  color: rgba(255,255,255,.45);
  padding: 14px 4px 6px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 6px;
  letter-spacing: .02em;
}
.packer-card--outside {
  opacity: .82;
  border-left: 3px solid rgba(149,193,31,.4);
}
.packer-card--outside .pc-dist { color: rgba(255,255,255,.45); }

/* ── Service-area section header ── */
.rs-service-area-header {
  display: flex; align-items: center; gap: 7px;
  font-size: .73rem; font-weight: 700; letter-spacing: .02em;
  color: #95c11f;
  padding: 14px 4px 6px;
  border-top: 1px solid rgba(149,193,31,.2);
  margin-top: 6px;
}
.rs-sa-icon { font-size: .9rem; line-height: 1; }
.rs-sa-count {
  margin-left: auto;
  background: rgba(149,193,31,.15);
  border: 1px solid rgba(149,193,31,.3);
  color: #95c11f;
  font-size: .65rem; font-weight: 800;
  border-radius: 50px; padding: 1px 7px;
}

/* ── Service-area packer card ── */
.packer-card--service-area {
  border-left: 3px solid rgba(149,193,31,.55);
  background: rgba(149,193,31,.04);
}

/* RTL overrides for availability elements */
[dir="rtl"] .avail-binding-notice { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .avail-cal-nav,
[dir="rtl"] .avail-allday-label,
[dir="rtl"] .avail-editor-actions { flex-direction: row-reverse; }
[dir="rtl"] .avail-time-row,
[dir="rtl"] .avail-range-row,
[dir="rtl"] .avail-weekday-checks { flex-direction: row-reverse; }
[dir="rtl"] .detail-avail-slot { flex-direction: row-reverse; }
[dir="rtl"] .detail-avail-note { margin-left: 0; margin-right: auto; }
[dir="rtl"] .avail-group-header { text-align: right; }
[dir="rtl"] .pc-date-match { flex-direction: row-reverse; }
[dir="rtl"] .sh-date-wrap { flex-direction: row-reverse; }
[dir="rtl"] .avail-editor { direction: rtl; }

/* ══════════════════════════════════════════
   REGISTRIERUNGS-STEPPER
══════════════════════════════════════════ */
.reg-stepper {
  display: flex; align-items: flex-start; gap: 0;
  margin-bottom: 20px; padding: 4px 0;
}
.reg-step-item {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  flex-shrink: 0;
}
.reg-step-dot {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .76rem; font-weight: 700;
  border: 2px solid var(--border);
  color: var(--muted); background: var(--light);
  transition: all .25s;
}
.reg-step-label {
  font-size: .62rem; color: var(--muted); white-space: nowrap;
  transition: color .25s;
}
.reg-step-conn {
  flex: 1; height: 2px; background: var(--border);
  margin-top: 15px; transition: background .25s;
}
.reg-step-item.active .reg-step-dot {
  border-color: var(--orange); background: var(--orange); color: #fff;
}
.reg-step-item.active .reg-step-label { color: var(--orange); font-weight: 600; }
.reg-step-item.done .reg-step-dot {
  border-color: #27ae60; background: #27ae60; color: #fff; font-size: 0;
}
.reg-step-item.done .reg-step-dot::after { content: '✓'; font-size: .78rem; }
.reg-step-conn.done { background: #27ae60; }

/* Panels & Hints */
.reg-panel-hint {
  font-size: .85rem; color: var(--muted); margin-bottom: 14px; font-weight: 500;
}

/* Nav buttons */
.reg-nav {
  display: flex; gap: 10px; margin-top: 20px; justify-content: flex-end;
}
.reg-nav-right { justify-content: flex-end; }
.reg-nav-3col { justify-content: space-between; }
.btn-ghost {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--muted); padding: 10px 18px; border-radius: var(--radius);
  font-family: inherit; font-size: .88rem; font-weight: 600; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* Availability mini-calendar (step 4) */
.reg-avail-notice {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(255,107,53,.06); border: 1px solid rgba(255,107,53,.2);
  border-radius: var(--radius); padding: 12px 14px;
  margin-bottom: 14px; font-size: .82rem; line-height: 1.5;
}
.reg-avail-notice p { margin: 0; }
.reg-avail-cal-wrap { margin-bottom: 10px; }
.reg-avail-cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.reg-avail-selected {
  font-size: .8rem; color: var(--muted); min-height: 20px; margin-bottom: 4px;
}

/* ══════════════════════════════════════════
   SMARTPHONE OPTIMIERUNGEN (≤ 480 px)
══════════════════════════════════════════ */

/* iOS: Inputs nicht zoomen, Touch-Delay entfernen */
@media (max-width: 768px) {
  input, textarea, select { font-size: 16px !important; }
  button, a, [role="button"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 16px; }

  /* Sections – kompakt, kein Zierelement */
  .section { padding: 36px 0; }
  .section-tag { display: none; }
  .section-title { font-size: 1.45rem; }
  .section-sub { display: none; }

  /* Navigation */
  .nav-container { padding: 0 16px; }
  .nav-logo { font-size: .95rem; }

  /* Hero */
  .hero { padding: 56px 0 36px; }
  .hero h1 { font-size: 1.7rem; line-height: 1.25; }
  .hero p { display: none; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { width: 100%; min-height: 50px; font-size: .9rem; justify-content: center; }
  .hero-stats { display: none; }

  /* Hero-Search */
  .hero-sf { padding: 6px 6px 6px 14px; border-radius: 14px; }
  .hero-sf-input { font-size: 16px !important; }
  .hero-sf-btn { padding: 10px 16px; font-size: .82rem; border-radius: 10px; }
  .hero-geo { padding: 10px 16px; font-size: .82rem; justify-content: center; }

  /* How-it-works */
  .how-card { padding: 16px 12px; box-shadow: none; }
  .how-card-header { gap: 8px; }
  .how-card-title { font-size: .95rem; }
  .step { gap: 8px; }
  .step-num { width: 26px; height: 26px; font-size: .76rem; flex-shrink: 0; }
  .step-body p { font-size: .82rem; }
  .how-policy-box { padding: 12px 14px; gap: 8px; }

  /* Feature Cards – nur Icon + Titel */
  .feature-card { padding: 16px 12px; box-shadow: none; }
  .feature-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .feature-card h3 { font-size: .92rem; }
  .feature-card p { display: none; }

  /* Profile Cards */
  .profile-card { padding: 12px; box-shadow: none; }
  .profile-name { font-size: .88rem; }
  .profile-loc { font-size: .74rem; }
  .locked-btn { font-size: .82rem; padding: 11px 14px; min-height: 46px; }

  /* Token Pakete */
  .token-packages { gap: 8px; }
  .token-pkg { padding: 14px 12px; box-shadow: none; }
  .token-pkg-amount { font-size: 1.8rem; }
  .token-pkg-label { font-size: .78rem; }
  .token-pkg-per { display: none; }
  .token-pkg-btn { min-height: 44px; }

  /* Pricing Info */
  .pricing-info-row { gap: 10px; }
  .pricing-perks-box, .pricing-guarantee-box { padding: 14px 12px; box-shadow: none; }
  .pricing-perks li { font-size: .82rem; }

  /* CTA Section */
  .cta-section { padding: 36px 0; }
  .cta-section h2 { font-size: 1.4rem; }
  .cta-btns { gap: 10px; }
  .cta-btns .btn { width: 100%; min-height: 50px; font-size: .88rem; justify-content: center; }

  /* Footer – kompakt auf Mobile */
  .footer { padding: 16px 0 12px; }
  .footer-grid { margin-bottom: 12px; }
  .footer-col:last-child a { min-height: 28px; font-size: .78rem; }
  .footer-bottom { font-size: .72rem; padding-top: 12px; }

  /* Modals → Bottom Sheet */
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal { border-radius: 22px 22px 0 0; max-height: 92vh; overflow-y: auto; }
  .modal-header { padding: 16px 18px 12px; }
  .modal-body { padding: 0 18px 24px; }
  .role-picker { gap: 8px; }
  .role-card { padding: 12px 10px; }
  .role-icon { font-size: 1.3rem; }
  .role-card h3 { font-size: .86rem; }
  .role-card p { display: none; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .skill-label { font-size: .78rem; padding: 8px 10px; }

  /* Profil-Modal → Bottom Sheet */
  .pm-overlay { align-items: flex-end; padding: 0; }
  .pm-modal {
    max-width: 100%; width: 100%;
    border-radius: 22px 22px 0 0;
    max-height: 85vh; max-height: 85dvh;
    display: flex; flex-direction: column; overflow: hidden;
  }
  .pm-body { flex-direction: column; flex: 1; min-height: 0; overflow: hidden; }
  .pm-tabs {
    flex-direction: row; width: 100%; overflow-x: auto; overflow-y: hidden;
    border-right: none; border-bottom: 1px solid var(--border);
    flex-shrink: 0; min-width: 0; padding: 0 8px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .pm-tabs::-webkit-scrollbar { display: none; }
  .pm-tab {
    white-space: nowrap; border-left: none !important;
    border-bottom: 3px solid transparent; padding: 10px 12px; font-size: .78rem;
  }
  .pm-tab.active { border-bottom-color: var(--orange); border-left-color: transparent !important; }
  .pm-content { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .pm-panel { overflow-y: auto; -webkit-overflow-scrolling: touch; }

  /* Payment Modal → Bottom Sheet */
  .pay-overlay { align-items: flex-end; padding: 0; }
  .pay-modal {
    border-radius: 22px 22px 0 0; max-width: 100%;
    max-height: 82vh; overflow: hidden;
    display: flex; flex-direction: column;
  }
  .pay-modal-body {
    flex: 1; min-height: 0; overflow-y: auto; overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  .pay-sheet-bar {
    display: flex; align-items: center; justify-content: center;
    position: relative; padding: 12px 16px 4px; flex-shrink: 0;
  }
  .pay-sheet-drag {
    display: block; width: 40px; height: 4px;
    background: rgba(255,255,255,.2); border-radius: 2px;
  }
  .pay-close-btn {
    display: flex; align-items: center; justify-content: center;
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: none; cursor: pointer;
    font-size: .8rem; color: rgba(255,255,255,.65); font-family: inherit;
    transition: background .15s, color .15s;
  }
  .pay-close-btn:hover { background: rgba(255,107,53,.25); color: var(--orange); }

  /* Chat → Bottom Sheet */
  .chat-overlay { align-items: flex-end; padding: 0; }
  .chat-modal { border-radius: 22px 22px 0 0; max-height: 88vh; max-width: 100%; }

  /* Language picker – compact on mobile */
  .lang-picker { padding: 5px 8px; }
  .lp-current, .lp-arrow { display: none; }
  .lp-globe { font-size: 1rem; }
  .lp-popup { min-width: 130px; right: 0; left: auto; }

  /* Float-Stats (Packer-Anzahl) – auf rechte Seite verschieben damit kein Overlap */
  .pb-float-stats {
    left: auto;
    right: 16px;
    bottom: 16px;
  }
  .pb-fstat { padding: 8px 12px; font-size: .68rem; }
  .pb-fstat strong { font-size: .92rem; }

  [dir="rtl"] .pb-float-stats { right: auto; left: 16px; }
  [dir="rtl"] .lp-popup { right: auto; left: 0; }
}

/* ══════════════════════════════════════════
   Pay / Unlock Modal (shared across pages)
══════════════════════════════════════════ */
.pay-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.72); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.pay-overlay.open { opacity: 1; pointer-events: all; }
.pay-sheet-bar  { display: none; }
.pay-sheet-drag { display: none; }
.pay-close-btn  { display: none; }
.pay-modal {
  background: var(--navy-card); border: 1px solid var(--border-d);
  border-radius: var(--radius-lg); width: 100%; max-width: 420px; overflow: hidden;
  transform: scale(.95) translateY(8px); transition: transform .3s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.pay-overlay.open .pay-modal { transform: scale(1) translateY(0); }
.pay-modal-top {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-bottom: 1px solid var(--border-d); padding: 26px; text-align: center;
  flex-shrink: 0;
}
.pay-modal-top h2 { font-size: 1.25rem; font-weight: 800; color: white; margin-bottom: 5px; }
.pay-modal-top p  { font-size: .83rem; color: var(--muted-d); }
.pay-modal-body   { padding: 22px 26px; }
.pay-packer-row   { display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.05); border: 1px solid var(--border-d); border-radius: var(--radius); padding: 11px; margin-bottom: 16px; }
.pay-packer-avatar{ width: 40px; height: 40px; border-radius: 50%; background: var(--navy-mid); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.pay-packer-name  { font-weight: 700; font-size: .86rem; color: white; }
.pay-packer-city  { font-size: .74rem; color: var(--muted-d); }
.pay-amount       { text-align: center; font-size: 2.8rem; font-weight: 800; color: white; margin-bottom: 4px; line-height: 1; }
.pay-amount small { font-size: 1rem; font-weight: 500; color: var(--muted-d); }
.pay-desc         { text-align: center; font-size: .8rem; color: var(--muted-d); margin-bottom: 18px; }
.pay-perks        { list-style: none; margin-bottom: 16px; }
.pay-perks li     { display: flex; align-items: center; gap: 9px; font-size: .84rem; padding: 6px 0; color: rgba(255,255,255,.72); border-bottom: 1px solid rgba(255,255,255,.06); }
.pay-perks li:last-child { border: none; }
.perk-ok          { color: var(--green); }
.pay-disclaimer   { font-size: .71rem; color: rgba(255,255,255,.26); line-height: 1.6; margin-bottom: 16px; background: rgba(255,255,255,.03); border-radius: 8px; padding: 10px; border: 1px solid rgba(255,255,255,.05); }
.pay-confirm-btn  { width: 100%; padding: 14px; background: var(--green); color: white; border: none; border-radius: 50px; font-size: .9rem; font-weight: 700; font-family: inherit; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 16px rgba(39,174,96,.35); }
.pay-confirm-btn:hover { background: #219a52; transform: translateY(-2px); }
.pay-cancel-btn   { width: 100%; padding: 10px; background: none; border: none; font-size: .8rem; color: rgba(255,255,255,.3); cursor: pointer; font-family: inherit; margin-top: 8px; transition: color var(--transition); }
.pay-cancel-btn:hover { color: rgba(255,255,255,.65); }
.pay-token-banner { display: flex; align-items: center; gap: 9px; background: rgba(255,107,53,.1); border: 1px solid rgba(255,107,53,.25); border-radius: var(--radius); padding: 10px 14px; margin-bottom: 10px; font-size: .85rem; color: rgba(255,255,255,.8); }
.pay-token-icon   { font-size: 1.1rem; }
.pay-token-banner strong { color: var(--orange); font-size: 1rem; }
.pay-or-divider   { display: flex; align-items: center; gap: 10px; margin: 14px 0 4px; color: rgba(255,255,255,.25); font-size: .75rem; }
.pay-or-divider::before,.pay-or-divider::after { content: ''; flex: 1; border-top: 1px solid rgba(255,255,255,.1); }
.pay-or-divider span { white-space: nowrap; }
.pay-token-what   { display: flex; gap: 10px; align-items: flex-start; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 11px 13px; margin-bottom: 14px; font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.55; }
.pay-token-what-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.pay-token-what strong { display: block; color: rgba(255,255,255,.75); font-size: .82rem; margin-bottom: 2px; }
.pay-pkg-section-title { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.pay-pkg-list     { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.pay-pkg-item     { position: relative; display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,.05); border: 1.5px solid var(--border-d); border-radius: var(--radius); padding: 14px 8px 10px; cursor: pointer; font-family: inherit; transition: var(--transition); gap: 2px; text-align: center; }
.pay-pkg-item:hover        { border-color: var(--orange); background: rgba(255,107,53,.08); }
.pay-pkg-item--pop         { border-color: var(--orange); }
.pay-pkg-item--best        { border-color: rgba(25,118,210,.6); }
.pay-pkg-item--best:hover  { border-color: var(--blue); background: rgba(25,118,210,.08); }
.pay-pkg-badge-sm { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; font-size: .6rem; font-weight: 700; padding: 2px 9px; border-radius: 20px; white-space: nowrap; }
.pay-pkg-badge-sm--best { background: var(--blue); }
.pay-pkg-name     { font-size: .82rem; font-weight: 700; color: white; }
.pay-pkg-price    { font-size: 1.05rem; font-weight: 800; color: var(--orange); }
.pay-pkg-per      { font-size: .65rem; color: rgba(255,255,255,.3); }
.pay-pkg-save     { font-size: .68rem; color: var(--green); }
.pay-pkg-item--best .pay-pkg-price { color: #64b5f6; }
.pay-pkg-item--active { border-color: var(--green) !important; background: rgba(149,193,31,.12) !important; }
.pay-perks-strip  { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .74rem; color: rgba(255,255,255,.4); margin-bottom: 12px; }
#paypal-btn-container { min-height: 50px; }
.paypal-loading   { font-size: .82rem; color: rgba(255,255,255,.45); text-align: center; padding: 12px 0; }
.paypal-error     { font-size: .82rem; color: #e74c3c; text-align: center; padding: 8px 0; margin: 0; }


/* ══════════════════════════════════════════
   LANDING PAGE MOBILE  (≤ 680px)
   Bottom nav replaces the header auth buttons.
══════════════════════════════════════════ */
@media (max-width: 680px) {
  /* Header: hide everything except logo and language picker */
  #hs-auth-wrap,
  .hs-info-link,
  #hs-token-balance { display: none !important; }

  /* Footer legal bar: hidden on mobile (links accessible via Mehr sheet) */
  .pb-legal-bar { display: none !important; }

  /* Give hero-search room above the bottom nav */
  #hero-search { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }

  /* #hero-search has z-index: 1500 – raise nav and sheets above it */
  .pb-bottom-nav   { z-index: 1600 !important; }
  .pb-mehr-backdrop { z-index: 1650 !important; }
  .pb-mehr-sheet   { z-index: 1700 !important; }
}
