/* ══════════════════════════════════════════════════════
   Dualina Design System 2026  ·  Linear/Vercel style
   ══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Tokens ──────────────────────────────────────────── */
:root {
  /* Brand palette */
  --ink:    #0c1e13;
  --g950:   #0d1f16;
  --g900:   #16351f;
  --g800:   #1e4429;
  --g700:   #2f6840;
  --g600:   #3d7d50;
  --g200:   #a8ccb4;
  --g100:   #e2efe6;
  --g50:    #f1f7f3;
  --gold:   #c99b45;
  --gold-bg:#fdf5e4;
  --paper:  #fafcf9;
  --white:  #ffffff;

  /* Text */
  --t1:    #0c1e13;
  --t2:    #364940;
  --muted: #6b8070;

  /* Surfaces */
  --surf:  #ffffff;
  --surf2: #f5f9f5;
  --bg:    #edf3ee;

  /* Borders */
  --b1: #dce8de;
  --b2: #c4d9c8;

  /* Status */
  --ok-c:   #15803d; --ok-bg:   #dcfce7; --ok-t:   #166534;
  --warn-c: #d97706; --warn-bg: #fef3c7; --warn-t: #92400e;
  --err-c:  #dc2626; --err-bg:  #fee2e2; --err-t:  #991b1b;
  --info-c: #2563eb; --info-bg: #dbeafe; --info-t: #1e40af;
  --purple-c:#7c3aed; --purple-bg:#ede9fe; --purple-t:#4c1d95;

  /* Layout */
  --sidebar-w: 256px;

  /* Radius */
  --r-xs: 6px; --r-sm: 8px; --r: 12px; --r-lg: 16px;
  --r-xl: 22px; --r-2xl: 28px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(12,30,19,.05);
  --sh-sm: 0 2px 8px rgba(12,30,19,.07), 0 1px 3px rgba(12,30,19,.04);
  --sh:    0 4px 16px rgba(12,30,19,.09), 0 2px 5px rgba(12,30,19,.04);
  --sh-md: 0 8px 28px rgba(12,30,19,.11), 0 3px 10px rgba(12,30,19,.05);
  --sh-lg: 0 20px 64px rgba(12,30,19,.14), 0 8px 24px rgba(12,30,19,.07);

  /* Transitions */
  --t-fast: .14s ease;
  --t-base: .20s ease;
  --t-slow: .30s ease;
  --t: var(--t-base);

  /* Aliases — backwards compat */
  --g500:   #4d8e62;
  --swatch: var(--g600);
  --border: var(--b1);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--t1);
  -webkit-font-smoothing: antialiased; line-height: 1.5;
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }

/* ── Typography ──────────────────────────────────────── */
h1 { font-size: clamp(40px, 6.5vw, 78px); font-weight: 900; letter-spacing: -.03em; line-height: .97; }
h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; letter-spacing: -.025em; line-height: 1.05; }
h3 { font-size: 17px; font-weight: 800; }
h4 { font-size: 15px; font-weight: 700; }
p  { color: var(--muted); line-height: 1.72; }

/* ── Toast ───────────────────────────────────────────── */
.toast {
  position: fixed; right: 20px; bottom: 20px; z-index: 9999;
  background: var(--g950); color: #fff; padding: 13px 20px;
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  font-weight: 700; font-size: 14px; max-width: 340px;
  opacity: 0; transform: translateY(14px) scale(.97);
  transition: .22s cubic-bezier(.34,1.56,.64,1); pointer-events: none;
}
.toast.show { opacity: 1; transform: none; pointer-events: auto; }

/* ── Buttons ─────────────────────────────────────────── */
.primary, .ghost, .warning, .danger, .icon-btn {
  border: 0; border-radius: var(--r); font-weight: 700;
  transition: var(--t-base); display: inline-flex; align-items: center;
  justify-content: center; gap: 7px; min-height: 44px;
  white-space: nowrap; cursor: pointer; font-size: 14px;
}
.primary {
  background: linear-gradient(135deg, var(--g900), var(--g700));
  color: #fff; padding: 0 20px;
  box-shadow: 0 2px 8px rgba(22,53,31,.28), 0 1px 2px rgba(22,53,31,.16);
}
.primary:hover {
  background: linear-gradient(135deg, var(--g800), var(--g600));
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(22,53,31,.33);
}
.primary:active { transform: none; }
.ghost {
  background: var(--surf); border: 1px solid var(--b1);
  color: var(--g900); padding: 0 16px; box-shadow: var(--sh-xs);
}
.ghost:hover { background: var(--g50); border-color: var(--b2); }
.warning {
  background: var(--warn-bg); color: var(--warn-t);
  padding: 0 16px; border: 1px solid rgba(252,211,77,.4);
}
.warning:hover { background: #fef9c3; }
.danger {
  background: var(--err-bg); color: var(--err-t);
  padding: 0 16px; border: 1px solid rgba(252,165,165,.4);
}
.danger:hover { background: #fecdca; }
.icon-btn {
  width: 42px; height: 42px; background: var(--surf);
  border: 1px solid var(--b1); border-radius: var(--r);
  font-size: 18px; padding: 0; flex-shrink: 0; box-shadow: var(--sh-xs);
}
.icon-btn:hover { background: var(--g50); }
.full   { width: 100%; }
.small  { min-height: 34px; padding: 0 12px; font-size: 13px; border-radius: var(--r-sm); gap: 5px; }
.link-btn { display: inline-flex; }
.mobile-only { display: none !important; }

/* ── Badges ──────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.badge::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
}
.badge.green  { background: var(--ok-bg);      color: var(--ok-t);     }
.badge.green::before  { background: var(--ok-c); }
.badge.amber  { background: var(--warn-bg);     color: var(--warn-t);   }
.badge.amber::before  { background: var(--warn-c); }
.badge.red    { background: var(--err-bg);      color: var(--err-t);    }
.badge.red::before    { background: var(--err-c); }
.badge.blue   { background: var(--info-bg);     color: var(--info-t);   }
.badge.blue::before   { background: var(--info-c); }
.badge.gold   { background: var(--gold-bg);     color: #7a5c1e;         }
.badge.gold::before   { background: var(--gold); }
.badge.purple { background: var(--purple-bg);   color: var(--purple-t); }
.badge.purple::before { background: var(--purple-c); }
.badge.plain::before  { display: none; }

/* ── Forms ───────────────────────────────────────────── */
label {
  display: grid; gap: 6px; font-size: 13px; font-weight: 700;
  color: var(--t2); margin-bottom: 14px;
}
input, select, textarea {
  width: 100%; border: 1px solid var(--b1); border-radius: var(--r);
  padding: 11px 14px; background: var(--surf); outline: none;
  color: var(--t1); font-size: 14px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--g700); box-shadow: 0 0 0 3px rgba(47,104,64,.11);
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-3col  { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.field-hint { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: -8px; }

/* ── Brand ───────────────────────────────────────────── */
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-lockup.center { justify-content: center; }
.brand-mark {
  width: 40px; height: 40px; border-radius: var(--r); flex-shrink: 0;
  background: linear-gradient(135deg, var(--g950), var(--g700));
  color: #fff; display: grid; place-items: center;
  font-weight: 900; font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 2px 8px rgba(13,31,22,.32);
}
.brand-mark.large { width: 72px; height: 72px; border-radius: 18px; font-size: 36px; }
.brand-lockup strong { display: block; font-weight: 800; letter-spacing: -.01em; font-size: 15px; }
.brand-lockup small  { display: block; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .02em; }

/* ════════════════════════════════════════════════════════
   PUBLIC WEBSITE
   ════════════════════════════════════════════════════════ */

/* Site header */
.site-header {
  height: 70px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 clamp(18px, 4vw, 60px);
  position: fixed; top: 12px; left: 50%; width: min(1200px, calc(100% - 24px));
  transform: translateX(-50%);
  background: rgba(250,252,249,.92); backdrop-filter: blur(22px);
  border: 1px solid rgba(22,53,31,.09); border-radius: 18px;
  box-shadow: 0 8px 32px rgba(12,30,19,.08); z-index: 50;
}
.desktop-nav {
  display: flex; gap: 2px;
  background: rgba(241,247,243,.88); padding: 4px; border-radius: 12px;
  border: 1px solid rgba(22,53,31,.07);
}
.desktop-nav a {
  font-weight: 700; color: var(--muted); font-size: 13px;
  padding: 8px 12px; border-radius: 9px; transition: var(--t-fast);
}
.desktop-nav a:hover { background: var(--g100); color: var(--g900); }
.desktop-nav a.active { background: var(--g900); color: #fff; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-login-link {
  background: var(--g50); border: 1px solid var(--b1); color: var(--g900);
  font-size: 13px; font-weight: 700; padding: 7px 14px;
  border-radius: var(--r-sm); transition: var(--t-fast); letter-spacing: .01em;
}
.header-login-link:hover { background: var(--g100); border-color: var(--b2); color: var(--g800); }
.mobile-menu {
  position: fixed; top: 90px; left: 12px; right: 12px;
  background: var(--surf); z-index: 45; padding: 18px;
  border: 1px solid var(--b1); border-radius: var(--r-xl); box-shadow: var(--sh-lg);
}
.mobile-menu a, .mobile-menu button { display: flex; margin-bottom: 8px; width: 100%; }

/* Hero */
.public-view { background: var(--paper); }
.hero {
  min-height: max(540px, 82svh); padding: 110px clamp(18px, 5vw, 72px) 72px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201,155,69,.18) 0%, transparent 30%),
    radial-gradient(ellipse at 0% 100%, rgba(47,104,64,.18) 0%, transparent 35%),
    linear-gradient(160deg, #081309 0%, var(--g950) 50%, #122418 100%);
  color: #fff; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,.03)'/%3E%3C/svg%3E") repeat;
  pointer-events: none; z-index: 0;
}
.hero-copy { position: relative; z-index: 1; max-width: 680px; }
.pill {
  display: inline-flex; width: max-content; border-radius: 999px;
  padding: 6px 14px; font-weight: 700; font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.12);
}
.eyebrow {
  display: inline-flex; width: max-content; border-radius: 999px;
  padding: 5px 12px; font-weight: 700; font-size: 11px;
  letter-spacing: .07em; text-transform: uppercase;
  background: var(--g100); color: var(--g800);
}
.hero h1 { color: #fff; margin: 18px 0 16px; }
.hero > .hero-copy > p { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.65; max-width: 520px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.hero .ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.88); }
.hero .ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.hero-stats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.hero-stats div {
  padding: 13px 18px; border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; background: rgba(255,255,255,.05); min-width: 100px;
}
.hero-stats strong { display: block; font-size: 20px; font-weight: 900; }
.hero-stats span { display: block; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }

/* Scroll hint arrow */
.hero-scroll-hint {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 40px; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06);
  transition: background var(--t-fast), border-color var(--t-fast); text-decoration: none;
}
.hero-scroll-hint:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); }
.hero-scroll-arrow {
  width: 10px; height: 10px; border-right: 2px solid rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.7); transform: rotate(45deg) translateY(-2px);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(-2px); opacity: .6; }
  50%      { transform: rotate(45deg) translateY(3px);  opacity: 1; }
}

/* Phone mockup */
.hero-panel { display: flex; justify-content: center; align-items: center; position: relative; z-index: 1; }
.phone-shell {
  width: min(340px, 90vw); padding: 14px; border-radius: 32px;
  background: #09160c; border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 48px 110px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.05);
  transform: rotate(2.5deg);
}
.phone-top { width: 70px; height: 5px; background: rgba(255,255,255,.14); border-radius: 999px; margin: 4px auto 18px; }
.phone-card { background: #fff; color: var(--ink); border-radius: 18px; padding: 20px; margin-bottom: 12px; }
.phone-card:last-child { margin-bottom: 0; }
.phone-card small { font-weight: 800; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.phone-card h3 { font-size: 18px; font-weight: 800; margin: 8px 0 4px; }
.timer-display { font-size: 30px; font-weight: 900; margin: 12px 0; color: var(--g900); }
.mini-actions, .photo-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.mini-actions span, .photo-row div {
  background: var(--g50); border-radius: 12px; padding: 10px;
  text-align: center; font-weight: 800; font-size: 12px; color: var(--g900);
}
.photo-row { grid-template-columns: 1fr 1fr; }
.photo-row div { height: 76px; display: grid; place-items: center; }

/* Sections */
.section { padding: 80px clamp(18px, 5vw, 72px); max-width: 1280px; margin-inline: auto; }
.section.muted { max-width: none; background: var(--g50); }
.section.muted > * { max-width: 1280px; margin-inline: auto; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head h2, .split h2, .booking-copy h2 { margin: 10px 0 12px; }
.section-head p, .split p, .booking-copy p { font-size: 16px; line-height: 1.7; }

/* Service/price cards */
.card-grid    { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.price-grid   { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }

/* Local coverage */
.coverage-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 14px;
  margin-top: 32px;
}
.coverage-card {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-xl);
  padding: 20px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  box-shadow: var(--sh-sm); transition: transform var(--t-base), box-shadow var(--t-base);
}
.coverage-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.coverage-icon { font-size: 22px; }
.coverage-card strong { font-size: 16px; font-weight: 800; }
.coverage-card span { font-size: 13px; color: var(--muted); }
/* ── Service cards ───────────────────────────────────── */
.card {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-xl);
  box-shadow: 0 1px 4px rgba(12,30,19,.05); padding: 30px; position: relative; overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g900), var(--g600));
}
.card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: var(--b2); }
.card .icon { font-size: 32px; display: inline-block; margin-bottom: 4px; }
.card h3 { font-size: 18px; font-weight: 800; margin: 12px 0 8px; color: var(--t1); }
.card p { font-size: 14px; line-height: 1.68; color: var(--muted); }
.card strong { display: block; margin-top: 16px; color: var(--g700); font-size: 14px; font-weight: 700; border-top: 1px solid var(--b1); padding-top: 14px; }

/* ── Price cards ─────────────────────────────────────── */
.price-card {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-xl);
  box-shadow: 0 1px 4px rgba(12,30,19,.05);
  padding: 28px; display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.price-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--b2);
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: var(--b2); }

.price-card.featured {
  border-color: var(--g700); border-width: 1.5px;
  box-shadow: 0 4px 24px rgba(22,53,31,.12), 0 1px 4px rgba(22,53,31,.06);
}
.price-card.featured::before {
  height: 4px;
  background: linear-gradient(90deg, var(--g950), var(--g600));
}
.price-card.featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(22,53,31,.15), 0 2px 8px rgba(22,53,31,.07);
}

/* Price card content */
.price-badge {
  display: inline-flex; align-items: center; width: fit-content;
  background: var(--g100); color: var(--g800);
  font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 20px; padding: 3px 10px; margin-bottom: 14px;
}
.price-card.featured .price-badge { background: var(--g800); color: #fff; }

.price-title { font-size: 16px; font-weight: 800; color: var(--t1); margin-bottom: 14px; }

.price-amount {
  font-size: 34px; font-weight: 900; letter-spacing: -.02em; color: var(--t1);
  line-height: 1; margin-bottom: 4px;
}
.price-unit { font-size: 12px; font-weight: 500; color: var(--muted); }

.price-features {
  list-style: none; padding: 0; margin: 16px 0 24px; flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.price-features li {
  font-size: 13px; color: var(--t2); display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.4;
}
.price-features li::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--ok-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2315803d' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}

.price-cta { margin-top: auto; text-align: center; }
.price-cta.ghost {
  background: var(--g50); border-color: var(--b2); color: var(--g900);
}
.price-cta.ghost:hover {
  background: var(--g100); border-color: var(--g700); color: var(--g800);
}
.price-card.featured .price-cta.primary {
  box-shadow: 0 2px 12px rgba(22,53,31,.22);
}
/* ── Trust band (erstatter prissektionen) ────────────── */
.trust-band-section { padding: 56px clamp(18px,5vw,72px); }
.trust-band {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; max-width: 1280px; margin: 0 auto;
}
.trust-band-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: 24px; background: var(--surf); border: 1px solid var(--b1);
  border-radius: var(--r-xl); box-shadow: 0 1px 4px rgba(12,30,19,.05);
  border-top: 3px solid var(--g700);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.trust-band-item:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.trust-band-icon { font-size: 26px; margin-bottom: 4px; }
.trust-band-item strong { font-size: 15px; font-weight: 800; color: var(--t1); }
.trust-band-item span { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 1024px) {
  .trust-band { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .trust-band { grid-template-columns: 1fr; gap: 12px; }
  .trust-band-item { padding: 18px; }
}

/* ── Process / Sådan fungerer det ────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative;
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 28px; background: var(--surf); border: 1px solid var(--b1);
  border-radius: var(--r-xl); box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--b2); }
.process-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g950), var(--g700)); color: #fff;
  display: grid; place-items: center; font-size: 24px; font-weight: 900;
  margin-bottom: 20px; box-shadow: 0 8px 20px rgba(22,53,31,.28);
}
.process-step h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: var(--t1); }
.process-step p  { font-size: 14px; color: var(--muted); line-height: 1.68; margin: 0; }
.gallery-card {
  min-height: 200px; border-radius: var(--r-xl); padding: 28px 24px 24px;
  background: linear-gradient(145deg, var(--g900) 0%, var(--g700) 100%); color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  box-shadow: var(--sh-md); transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative; overflow: hidden;
}
.gallery-card::before {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(13,31,22,.28); }
.gallery-card .gc-icon { font-size: 36px; margin-bottom: 6px; }
.gallery-card .gc-title { font-size: 20px; font-weight: 900; }
.gallery-card .gc-sub { color: rgba(255,255,255,.62); font-size: 13px; font-weight: 600; }

/* Media / photo section */
.media-section { background: var(--g950); }
.media-section .section-head h2,
.media-section .section-head p { color: #fff; }
.media-section .eyebrow { background: rgba(255,255,255,.10); color: rgba(255,255,255,.75); }
.media-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.media-card {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.media-card:hover { transform: translateY(-4px); box-shadow: 0 28px 72px rgba(0,0,0,.36); }
.media-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* FAQ */
.faq-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.faq-list details {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-lg);
  padding: 0; box-shadow: var(--sh-sm); transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-list details[open] { border-color: var(--g700); box-shadow: var(--sh); }
.faq-list summary {
  cursor: pointer; font-weight: 800; color: var(--g900); font-size: 15px;
  list-style: none; padding: 18px 50px 18px 18px; position: relative; user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%; background: var(--g100); color: var(--g800);
  display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700;
  transition: transform var(--t-fast), background var(--t-fast);
}
.faq-list details[open] > summary::after {
  content: "−"; background: var(--g800); color: #fff;
  transform: translateY(-50%) rotate(0deg);
}
.faq-list p { margin: 0; padding: 0 18px 18px; font-size: 15px; color: var(--t2); line-height: 1.7; border-top: 1px solid var(--b1); padding-top: 14px; }

/* Split / Why */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { display: grid; gap: 10px; }
.why-list div {
  padding: 18px 20px 18px 22px; background: var(--surf); border: 1px solid var(--b1);
  border-left: 4px solid var(--g700); border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-left-color var(--t-base);
}
.why-list div:hover { transform: translateX(5px); box-shadow: var(--sh); border-left-color: var(--g600); }
.why-list strong { display: block; font-size: 15px; font-weight: 800; margin-bottom: 3px; color: var(--t1); }
.why-list span { display: block; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Brand section */
.brand-section {
  padding: 92px clamp(18px, 5vw, 72px); background: var(--surf);
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: center;
}
.brand-kit { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.logo-preview, .uniform-preview {
  background: var(--g50); border: 1px solid var(--b1); border-radius: var(--r-lg);
  padding: 22px; display: flex; gap: 16px; align-items: center; box-shadow: var(--sh-sm);
}
.logo-preview strong { display: block; font-size: 28px; font-weight: 900; color: var(--g950); }
.logo-preview small, .uniform-preview p { color: var(--muted); font-size: 13px; }
.shirt {
  width: 88px; height: 106px; background: linear-gradient(160deg, var(--g950), var(--g700));
  border-radius: 26px 26px 12px 12px; position: relative; display: grid;
  place-items: center; color: #fff; font-weight: 900; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.shirt::before, .shirt::after { content: ""; position: absolute; top: 18px; width: 26px; height: 44px; background: #0a1810; border-radius: 12px; }
.shirt::before { left: -14px; transform: rotate(20deg); }
.shirt::after  { right: -14px; transform: rotate(-20deg); }
.shirt span { position: relative; z-index: 1; border: 1px solid rgba(255,255,255,.32); width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; font-size: 16px; }
.swatches { grid-column: 1/-1; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.swatches span { height: 52px; border-radius: 12px; background: var(--swatch); border: 1px solid var(--b1); box-shadow: var(--sh-sm); }

/* Booking */
.booking-section {
  padding: 80px clamp(18px, 5vw, 72px);
  background: linear-gradient(160deg, var(--g950) 0%, #1a3826 100%);
  color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
  position: relative; overflow: hidden;
}
.booking-section::before {
  content: ""; position: absolute; right: -10%; top: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,104,64,.18) 0%, transparent 70%);
  pointer-events: none;
}
.booking-section .eyebrow { background: rgba(255,255,255,.1); color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.12); }
.booking-section h2 { color: #fff; }
.booking-section p { color: rgba(255,255,255,.58); }
.booking-form { background: #fff; color: var(--t1); border-radius: var(--r-2xl); padding: 32px; box-shadow: 0 24px 64px rgba(0,0,0,.22); position: relative; z-index: 1; }
.quote-box {
  background: var(--g100); border-radius: var(--r-lg); padding: 16px 20px;
  margin: 8px 0 16px; color: var(--g900);
}
.quote-box > div:first-child { display: flex; justify-content: space-between; align-items: center; }
.quote-box strong { font-size: 24px; font-weight: 900; }
.sfr-estimate {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--g200);
}
.sfr-estimate strong { font-size: 18px; font-weight: 800; color: var(--g700); }
.sfr-label { font-size: 13px; color: var(--g600); font-weight: 600; }
.sfr-info {
  background: #fffbf0; border: 1px solid rgba(201,155,69,.3); border-radius: var(--r);
  padding: 10px 14px; font-size: 13px; color: #7a5b1e; margin-bottom: 12px; line-height: 1.5;
}

/* Om os section */
.om-os-section { background: var(--g50); }
.om-os-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 48px; align-items: start;
}
.om-os-story h3 { font-size: 22px; font-weight: 800; margin-bottom: 14px; color: var(--t1); }
.om-os-story p { color: var(--t2); line-height: 1.7; margin-bottom: 14px; }
.om-os-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px;
  padding-top: 28px; border-top: 2px solid var(--b1);
}
.om-stat {
  padding: 16px; background: var(--surf); border: 1px solid var(--b1);
  border-radius: var(--r-xl); text-align: center;
}
.om-stat strong { display: block; font-size: 24px; font-weight: 900; color: var(--g800); }
.om-stat span   { display: block; font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-top: 3px; }
.om-os-values { display: flex; flex-direction: column; gap: 20px; }
.value-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-xl);
  padding: 20px; box-shadow: var(--sh-sm);
}
.value-icon { font-size: 26px; flex-shrink: 0; }
.value-item strong { display: block; font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.value-item p { font-size: 14px; color: var(--t2); line-height: 1.6; margin: 0; }

/* Booking form improvements */
.booking-disclaimer { text-align: center; font-size: 12px; color: var(--muted); margin-top: 8px; }
.booking-submit-btn { position: relative; transition: opacity .2s; }
.booking-submit-btn[disabled] { opacity: .65; cursor: not-allowed; }
.booking-success {
  text-align: center; padding: 20px; background: rgba(255,255,255,.08);
  border-radius: var(--r-xl); margin-top: 12px; border: 1px solid rgba(255,255,255,.12);
}
.booking-success-icon { font-size: 32px; margin-bottom: 8px; }
.booking-success strong { display: block; font-size: 18px; font-weight: 800; color: #fff; }
.booking-success p { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 4px; }
.booking-error {
  padding: 12px 16px; background: rgba(220,38,38,.15); border: 1px solid rgba(220,38,38,.3);
  border-radius: var(--r); font-size: 14px; color: #fca5a5; margin-top: 10px;
}
.booking-trust-list {
  display: flex; flex-direction: column; gap: 8px; margin-top: 16px;
}
.booking-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.75); font-weight: 600;
}
.booking-trust-item::before {
  content: "✓"; width: 20px; height: 20px; background: rgba(255,255,255,.15);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0; color: #fff;
}

/* Contact section */
.contact-section {
  padding: 92px clamp(18px, 5vw, 72px); background: var(--g50);
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start;
}
.contact-section h2 { color: var(--t1); }
.contact-info { padding-top: 8px; }
.contact-details { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.contact-detail-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-xl);
  font-size: 15px; font-weight: 600; color: var(--t1); text-decoration: none;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.contact-detail-item:hover { transform: translateX(3px); box-shadow: var(--sh); }
.contact-detail-icon { font-size: 20px; flex-shrink: 0; }
a.contact-detail-item { color: var(--g800); }
.contact-form-wrap {
  background: #fff; border-radius: var(--r-2xl); padding: 36px;
  box-shadow: var(--sh-lg); border: 1px solid var(--b1);
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 800; margin-bottom: 22px; color: var(--t1); }
.contact-form-wrap .booking-success strong { color: var(--g800); }
.contact-form-wrap .booking-success { background: var(--g50); border-color: var(--g200); }

/* Footer */
.site-footer {
  background: var(--g950); color: #fff;
  padding: 60px clamp(18px,5vw,72px) 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-lockup { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.6; max-width: 280px; margin-top: 0; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.footer-links a, .footer-links span { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; transition: color var(--t-fast); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0 24px; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.28); margin: 0; }
.footer-legal { display: flex; gap: 16px; }
.link-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  font-size: 13px; color: rgba(255,255,255,.35); text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.15);
  transition: color var(--t-fast);
}
.link-btn:hover { color: rgba(255,255,255,.7); }

/* Mobile sticky CTA (public view only) */
.pub-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97); backdrop-filter: blur(24px);
  border-top: 1px solid var(--b1); box-shadow: 0 -6px 24px rgba(13,31,22,.10);
  gap: 10px;
}
.pub-cta-btn {
  flex: 1; padding: 14px 10px; border-radius: var(--r); font-weight: 800;
  text-align: center; font-size: 15px; text-decoration: none; display: block;
}
.pub-cta-call { background: var(--paper); border: 2px solid var(--g800); color: var(--g800); }
.pub-cta-book { background: var(--g800); color: #fff; }

/* Legacy — keep for app */
.mobile-cta { display: none; }

/* ════════════════════════════════════════════════════════
   LOGIN
   ════════════════════════════════════════════════════════ */
.login-view {
  min-height: 100svh; display: grid; place-items: center;
  background:
    radial-gradient(circle at 65% 20%, rgba(201,155,69,.18), transparent 35%),
    linear-gradient(145deg, var(--g950), var(--g800));
  padding: 20px;
}
.login-card {
  width: min(420px, 100%); background: #fff;
  border-radius: var(--r-2xl); padding: 38px; box-shadow: var(--sh-lg);
}
.login-card h1 { font-size: 30px; margin: 22px 0 4px; }
.login-card > p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.login-card label { display: flex; flex-direction: column; gap: 5px; font-weight: 600; font-size: 13px; margin-bottom: 14px; }
.login-card label input { margin: 0; }
.login-error {
  background: var(--err-bg); color: var(--err-t); border: 1px solid var(--err-c);
  border-radius: var(--r-sm); padding: 10px 14px; font-size: 13px;
  margin-bottom: 12px; font-weight: 500;
}
.hint { text-align: center; margin-top: 16px; font-size: 13px; color: var(--muted); }

/* ════════════════════════════════════════════════════════
   APP SHELL
   ════════════════════════════════════════════════════════ */
.app-view {
  height: 100svh; display: flex; overflow: hidden;
  background: linear-gradient(180deg, var(--g50) 0%, var(--bg) 100%);
}
.app-view.portal-mode .sidebar { display: none; }
.app-view.portal-mode .app-main {
  width: 100%;
  padding: 0;
}
.app-view.portal-mode .app-topbar {
  margin: 12px;
}
.app-view.portal-mode .app-topbar .icon-btn {
  display: none;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-w); background: var(--g950); color: #fff;
  padding: 14px 10px; display: flex; flex-direction: column;
  flex-shrink: 0; overflow-y: auto; overflow-x: hidden;
  margin: 12px 0 12px 12px; border-radius: 18px;
  box-shadow: 0 28px 90px rgba(13,31,22,.38); scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }
.sidebar-brand { padding: 8px 10px 16px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 10px; }
.sidebar .brand-lockup small { color: rgba(255,255,255,.42); }
.sidebar .brand-mark { background: rgba(255,255,255,.1); box-shadow: none; border: 1px solid rgba(255,255,255,.12); }
.nav-group { margin-bottom: 6px; }
.nav-label {
  display: block; padding: 6px 10px 4px; font-size: 10px; font-weight: 800;
  color: rgba(255,255,255,.28); text-transform: uppercase; letter-spacing: .1em;
}
.nav-item {
  width: 100%; display: flex; align-items: center; gap: 9px;
  background: transparent; color: rgba(255,255,255,.58); border: 0;
  border-radius: var(--r); padding: 9px 10px; font-weight: 600;
  font-size: 14px; transition: var(--t-fast); cursor: pointer; min-height: 40px;
  text-align: left;
}
.nav-item:hover  { background: rgba(255,255,255,.07); color: rgba(255,255,255,.88); }
.nav-item.active { background: rgba(255,255,255,.14); color: #fff; font-weight: 700; }
.nav-icon { font-size: 15px; width: 20px; flex-shrink: 0; text-align: center; line-height: 1; }
.sidebar-bottom { margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); }

/* App main */
.app-main { flex: 1; overflow: auto; padding: 12px; min-width: 0; }

/* Topbar */
.app-topbar {
  height: 66px; background: rgba(250,252,249,.94); backdrop-filter: blur(18px);
  border: 1px solid rgba(22,53,31,.09); border-radius: 16px;
  box-shadow: 0 4px 18px rgba(12,30,19,.07);
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 12px; padding: 0 18px;
  margin-bottom: 16px;
}
.app-topbar-info { flex: 1; min-width: 0; }
.app-topbar strong { display: block; font-weight: 800; font-size: 16px; letter-spacing: -.01em; }
.app-topbar small { display: block; color: var(--muted); font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Pages */
.app-page { display: none; padding-bottom: 32px; }
.app-page.active { display: block; }

.portal-page {
  background: linear-gradient(180deg, var(--g50) 0%, var(--bg) 100%);
}
.portal-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px;
}
.portal-shell-head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: end;
  padding: 22px 24px;
  border: 1px solid var(--b1);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--sh-sm);
  margin-bottom: 16px;
}
.portal-shell-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ok-c);
  margin-bottom: 8px;
}
.portal-shell-head h2 {
  margin-bottom: 8px;
}
.portal-shell-head p {
  max-width: 760px;
}
.portal-shell-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.portal-shell-chip {
  padding: 8px 12px;
  border: 1px solid var(--b1);
  border-radius: 999px;
  background: var(--surf);
  font-size: 12px;
  font-weight: 700;
  color: var(--t2);
}

/* ════════════════════════════════════════════════════════
   KPI / DASHBOARD
   ════════════════════════════════════════════════════════ */
.kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 16px; }
.kpi {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-lg);
  padding: 20px 22px; box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.kpi:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.kpi small { display: block; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.kpi strong { display: block; font-size: 28px; font-weight: 900; letter-spacing: -.02em; margin: 6px 0 3px; color: var(--t1); }
.kpi-trend { font-size: 12px; font-weight: 700; }
.kpi-trend.up   { color: var(--ok-c); }
.kpi-trend.down { color: var(--err-c); }
.kpi-trend.neutral { color: var(--muted); }

.dashboard-grid, .portal-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 16px; }

/* Operational focus grid — two equal columns, full operational info before charts */
.dashboard-focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.dashboard-focus-panel .list { max-height: 320px; overflow-y: auto; }

/* Panels */
.panel {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-lg);
  padding: 20px; min-width: 0; box-shadow: var(--sh-sm);
}
.panel-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--b1);
}
.panel-head h3 { margin: 0; font-size: 15px; font-weight: 800; }
.panel-head small { color: var(--muted); font-size: 12px; font-weight: 700; }

/* List items */
.list { display: grid; gap: 8px; }
.list-item {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  padding: 12px 14px; background: var(--g50); border-radius: var(--r);
  border: 1px solid rgba(220,232,222,.55); transition: var(--t-fast);
}
.list-item:hover { background: var(--g100); border-color: var(--b2); }
.list-item strong { display: block; font-weight: 700; font-size: 14px; }
.list-item small  { display: block; color: var(--muted); margin-top: 2px; font-size: 12px; }
.list-item-info { flex: 1; min-width: 0; }

/* Page actions */
.page-actions {
  display: flex; gap: 10px; margin-bottom: 18px;
  align-items: center; flex-wrap: wrap;
}
.page-actions input, .page-actions select { max-width: 380px; }

/* ════════════════════════════════════════════════════════
   ENTITY CARDS (customers, employees)
   ════════════════════════════════════════════════════════ */
.entity-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.entity-card {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-lg);
  padding: 20px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--sh-sm); transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.entity-card:hover { transform: translateY(-2px); box-shadow: var(--sh); border-color: var(--b2); }
.entity-head { display: flex; align-items: flex-start; gap: 12px; }
.entity-avatar {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 900; font-size: 17px;
  color: var(--g800); background: linear-gradient(135deg, var(--g100), var(--g200));
  border: 1px solid var(--b1);
}
.entity-avatar.biz { background: linear-gradient(135deg, var(--info-bg), #bfdbfe); color: var(--info-t); }
.entity-card h3 { margin: 0; font-size: 16px; font-weight: 800; }
.entity-card p.muted-text { font-size: 13px; line-height: 1.55; }
.muted-text { color: var(--muted); }
.card-actions {
  display: flex; gap: 6px; flex-wrap: wrap;
  justify-content: flex-end; padding-top: 14px;
  border-top: 1px solid var(--b1); margin-top: 14px;
}
.card-actions .ghost:first-child { margin-right: auto; }

/* ════════════════════════════════════════════════════════
   JOBS
   ════════════════════════════════════════════════════════ */
.jobs-list { display: grid; gap: 10px; }
.job-card {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-lg);
  padding: 18px 20px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.job-card:hover { transform: translateY(-1px); box-shadow: var(--sh); border-color: var(--b2); }
.job-card-info h3 { font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.job-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }

/* ════════════════════════════════════════════════════════
   CALENDAR
   ════════════════════════════════════════════════════════ */
.calendar-panel { padding: 16px; }
.fc { font-family: Inter, system-ui, sans-serif; }
.fc .fc-toolbar-title { font-size: 18px; font-weight: 800; color: var(--g900); }
.fc .fc-button-primary { background: var(--g900); border-color: var(--g900); border-radius: var(--r-sm); font-weight: 700; padding: 7px 14px; }
.fc .fc-button-primary:not(:disabled):hover { background: var(--g800); border-color: var(--g800); }
.fc .fc-button-primary:disabled { background: var(--g700); border-color: var(--g700); }
.fc .fc-event { border: 0; border-radius: var(--r-sm); padding: 2px 6px; font-weight: 700; font-size: 12px; }
.fc .fc-day-today { background: rgba(22,53,31,.04) !important; }

/* ════════════════════════════════════════════════════════
   PIPELINE / KANBAN
   ════════════════════════════════════════════════════════ */
.pipeline-board { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; align-items: start; }
.pipeline-column {
  background: var(--surf2); border: 1px solid var(--b1); border-radius: var(--r-lg);
  padding: 14px; min-height: 380px; box-shadow: var(--sh-xs);
}
.pipeline-column h3 {
  margin: 0 0 12px; font-size: 14px; font-weight: 800;
  display: flex; justify-content: space-between; gap: 8px; align-items: center;
}
.pipeline-list { display: grid; gap: 8px; min-height: 300px; }
.pipeline-card {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r);
  padding: 14px; cursor: grab; transition: var(--t-fast); box-shadow: var(--sh-xs);
}
.pipeline-card:hover { border-color: var(--b2); box-shadow: var(--sh-sm); transform: translateY(-1px); }
.pipeline-card:active { cursor: grabbing; }
.pipeline-card strong { display: block; font-weight: 700; font-size: 14px; }
.pipeline-card small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; line-height: 1.5; }
.sortable-ghost { opacity: .35; background: var(--g50) !important; border: 2px dashed var(--b2) !important; }

/* ════════════════════════════════════════════════════════
   MOBILE WORKDAY  ·  Mobile-first card flow
   ════════════════════════════════════════════════════════ */

/* Container: single column on mobile, 2-col on tablet+ */
.workday-layout {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  max-width: 700px;
}
.mobile-route-panel { order: -1; }
.mobile-route-panel .list { display: grid; gap: 8px; }
.mobile-route-item {
  width: 100%;
  border: 1px solid var(--b1);
  background: var(--surf);
  color: var(--t1);
  border-radius: var(--r);
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}
.mobile-route-item small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}
.mobile-route-item.active {
  border-color: var(--g600);
  background: var(--g50);
}
@media (min-width: 760px) {
  .workday-layout { grid-template-columns: 1fr 1fr; max-width: 1000px; }
  /* Job card and timer card span full width on desktop */
  .workday-job-card { grid-column: 1 / -1; }
  .workday-timer-card { grid-column: 1 / -1; }
}

/* Job select row */
.workday-job-select-row {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px;
}
.workday-select-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.workday-select { font-size: 15px; font-weight: 600; min-height: 46px; }

/* Customer info card inside job card */
.workday-customer-info {
  background: var(--g50); border: 1px solid var(--b1); border-radius: var(--r);
  padding: 14px 16px; margin-bottom: 12px;
}
.workday-customer-name {
  font-size: 20px; font-weight: 900; color: var(--g900); letter-spacing: -.01em;
  margin-bottom: 4px;
}
.workday-customer-meta {
  font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.6;
}
.workday-customer-meta strong { color: var(--t1); }
.workday-access-flags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.workday-flag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--warn-bg); color: var(--warn-t);
  border-radius: var(--r-sm); padding: 4px 10px; font-size: 12px; font-weight: 700;
}
.workday-flag.info { background: var(--info-bg); color: var(--info-t); }
.workday-flag.ok   { background: var(--ok-bg); color: var(--ok-t); }

/* Quick actions: ring / kort */
.work-quick-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.work-quick-actions a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; border-radius: var(--r); font-weight: 800; font-size: 15px;
  background: var(--surf); border: 1.5px solid var(--b1); color: var(--g900);
  transition: var(--t-fast); text-decoration: none;
}
.work-quick-actions a:hover { background: var(--g50); border-color: var(--b2); }
.work-quick-actions a.call-btn {
  background: linear-gradient(135deg,var(--g900),var(--g700)); color: #fff; border-color: transparent;
}
.work-quick-actions a.call-btn:hover { background: linear-gradient(135deg,var(--g800),var(--g600)); }

/* Job quick-status bar */
.work-status-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  padding: 10px 0 0;
}
.work-status-label { font-size: 12px; font-weight: 700; color: var(--muted); flex-basis: 100%; }
.work-status-btn {
  flex: 1 1 0; min-height: 40px; border-radius: var(--r); font-size: 13px; font-weight: 700;
  background: var(--surf); border: 1.5px solid var(--b1); color: var(--g700);
  cursor: pointer; transition: var(--t-fast);
}
.work-status-btn:hover { background: var(--g50); border-color: var(--b2); }
.work-status-btn.active {
  background: var(--g900); color: #fff; border-color: transparent;
}

/* Timer card */
.workday-timer-card { transition: background .3s, border-color .3s; }
.workday-timer-card.timer-running {
  background: linear-gradient(135deg, #e8f7ee, #d4f0de);
  border-color: var(--ok-c);
}
.workday-timer-card.timer-paused {
  background: linear-gradient(135deg, #fefce8, #fef3c7);
  border-color: var(--warn-c);
}
.workday-timer-card.timer-stopped { background: var(--surf); }

.workday-timer-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.workday-timer-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }

/* Big timer number */
.workday-big-timer {
  font-size: clamp(48px, 12vw, 80px); font-weight: 900; letter-spacing: -.04em;
  text-align: center; color: var(--g900); line-height: 1;
  padding: 18px 0 14px; font-variant-numeric: tabular-nums;
}
.timer-running .workday-big-timer { color: var(--ok-t); }
.timer-paused  .workday-big-timer { color: var(--warn-t); }

/* Earnings bar */
.workday-earnings-bar {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(22,53,31,.06); border-radius: var(--r); padding: 12px 16px;
  margin-bottom: 16px;
}
.workday-earn-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.workday-earn-value { font-size: 16px; font-weight: 900; color: var(--g900); margin-top: 2px; }
.workday-earn-big { font-size: 24px; color: var(--g700); }

/* Timer action buttons — large touch targets */
.workday-action-buttons { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.workday-btn {
  min-height: 58px; border-radius: var(--r); font-size: 16px; font-weight: 800;
  border: 2px solid transparent; transition: var(--t-fast); letter-spacing: -.01em;
  display: flex; align-items: center; justify-content: center;
}
.workday-btn-start {
  background: linear-gradient(135deg, var(--g900), var(--g700)); color: #fff;
  box-shadow: 0 4px 16px rgba(22,53,31,.3);
}
.workday-btn-start:hover { background: linear-gradient(135deg, var(--g800), var(--g600)); transform: translateY(-1px); }
.workday-btn-pause {
  background: var(--warn-bg); color: var(--warn-t); border-color: var(--warn-c);
}
.workday-btn-pause:hover { background: #fde68a; }
.workday-btn-stop {
  background: var(--err-bg); color: var(--err-t); border-color: var(--err-c);
}
.workday-btn-stop:hover { background: #fecaca; }

/* Invoice & report completion buttons */
.workday-btn-invoice {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff; border-color: #15803d; font-weight: 700; font-size: 15px;
}
.workday-btn-invoice:hover { background: linear-gradient(135deg, #15803d, #166534); transform: translateY(-1px); }
.workday-btn-report {
  background: #f0fdf4; color: #15803d; border-color: #bbf7d0;
  text-decoration: none; display: flex; align-items: center; justify-content: center;
}
.workday-btn-report:hover { background: #dcfce7; }
.work-completion-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--g100);
}
.work-completion-block .workday-btn-invoice { grid-column: 1 / -1; }
.work-completion-summary {
  grid-column: 1 / -1; display: flex; gap: 12px;
  background: var(--g50); border-radius: var(--r); padding: 10px 14px; font-size: 13px;
}
.work-completion-summary div { display: flex; flex-direction: column; gap: 2px; }
.work-completion-summary span { font-size: 11px; color: var(--muted); }
.work-completion-summary strong { font-size: 16px; color: var(--g700); font-weight: 700; }

/* Checklist — larger touch targets */
.workday-checklist { display: grid; gap: 8px; }
.check-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--g50); border-radius: var(--r); padding: 14px 16px;
  color: var(--t1); font-weight: 600; font-size: 15px;
  border: 1px solid var(--b1); transition: var(--t-fast);
  min-height: 52px; cursor: pointer;
}
.check-row:hover { background: var(--g100); border-color: var(--b2); }
.check-row.checked {
  background: var(--ok-bg); border-color: var(--ok-c);
  text-decoration: line-through; color: var(--muted);
}
.check-row input[type="checkbox"] {
  width: 22px; height: 22px; min-height: auto; accent-color: var(--g700);
  cursor: pointer; flex-shrink: 0;
}
.check-row.drag-handle { cursor: grab; }
.product-qty { width: 72px; margin-left: auto; padding: 8px 10px; border-radius: var(--r-sm); min-height: auto; }

/* Products list */
.workday-products { display: grid; gap: 8px; }
.workday-money-summary,
.workday-product-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}
.workday-product-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.workday-money-summary > div,
.workday-product-summary > div {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--b1);
  border-radius: 10px;
  padding: 10px;
}
.workday-money-summary span,
.workday-product-summary span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.workday-money-summary strong,
.workday-product-summary strong { display: block; margin-top: 4px; font-size: 16px; }
.workday-product-summary small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

/* Photo section */
.workday-photo-controls {
  display: flex; gap: 10px; align-items: flex-end; margin-bottom: 12px;
}
.workday-photo-gallery {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 10px;
}

/* Legacy kept for compatibility */
.mobile-work-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.active-work { border-top: 3px solid var(--g700); }
.big-timer {
  font-size: 52px; font-weight: 900; letter-spacing: -.03em;
  text-align: center; padding: 26px; background: var(--g100);
  border-radius: var(--r-lg); color: var(--g900); margin: 14px 0;
  border: 2px solid rgba(22,53,31,.1);
}
.work-buttons { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.work-customer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.check-list { display: grid; gap: 8px; margin-bottom: 16px; }
.helper-text { display: block; color: var(--muted); font-size: 12px; font-weight: 700; margin: -8px 0 10px; }
.photo-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 14px; }
.photo-thumb { background: var(--g50); border: 1px solid var(--b1); border-radius: var(--r-lg); padding: 10px; }
.photo-thumb.portal-lightbox { display: block; text-decoration: none; color: inherit; cursor: zoom-in; transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast); }
.photo-thumb.portal-lightbox:hover { transform: translateY(-1px); border-color: var(--g500); box-shadow: 0 10px 22px rgba(0,0,0,.08); }
.photo-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); background: var(--g100); }
.photo-thumb small { display: block; color: var(--muted); font-weight: 700; font-size: 12px; margin-top: 6px; }
.filepond--root { font-family: Inter, system-ui, sans-serif; margin-bottom: 12px; }
.filepond--panel-root { background: var(--g50); border: 2px dashed var(--b2); border-radius: var(--r-lg); }

/* ════════════════════════════════════════════════════════
   TABLES
   ════════════════════════════════════════════════════════ */
.table-card { background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
table { width: 100%; border-collapse: collapse; background: var(--surf); }
th {
  padding: 11px 16px; font-size: 11px; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: .07em; border-bottom: 1px solid var(--b1);
  background: var(--g50); text-align: left;
}
td { padding: 13px 16px; font-size: 14px; border-bottom: 1px solid rgba(220,232,222,.45); vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(241,247,243,.7); }
.stock-low { color: var(--err-c); font-weight: 800; }
.stock-ok  { color: var(--ok-c);  font-weight: 800; }

/* ════════════════════════════════════════════════════════
   DOCUMENTS
   ════════════════════════════════════════════════════════ */
.document-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 16px; align-items: start; }
.signature-wrap { border: 1px solid var(--b1); border-radius: var(--r-lg); background: var(--g50); padding: 10px; margin: 8px 0 14px; }
.signature-wrap canvas { display: block; width: 100%; height: 180px; background: #fff; border-radius: var(--r); touch-action: none; }
.document-preview-panel { background: #fbfaf5; }
.document-preview { background: #fff; border: 1px solid var(--b1); border-radius: var(--r-lg); padding: 28px; min-height: 600px; color: #1d261f; }
.document-preview header { display: flex; justify-content: space-between; gap: 20px; border-bottom: 2px solid var(--g900); padding-bottom: 18px; margin-bottom: 22px; }
.document-preview h2 { font-size: 24px; color: var(--g900); }
.document-preview h3 { margin: 22px 0 8px; color: var(--g900); font-size: 16px; }
.document-preview p, .document-preview li { line-height: 1.65; color: #4d5a50; font-size: 14px; }
.document-preview table { box-shadow: none; border: 1px solid var(--b1); margin: 14px 0; }
.document-signature { height: 90px; border-bottom: 1px solid var(--b1); display: flex; align-items: flex-end; padding: 0 0 8px; margin-top: 24px; }
.document-signature img { max-height: 80px; max-width: 240px; }

/* ════════════════════════════════════════════════════════
   FINANCE / CALCULATOR
   ════════════════════════════════════════════════════════ */
.calculator label { margin-bottom: 10px; }

/* ════════════════════════════════════════════════════════
   CMS
   ════════════════════════════════════════════════════════ */
.cms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ════════════════════════════════════════════════════════
   CUSTOMER PORTAL
   ════════════════════════════════════════════════════════ */

/* Legacy hero (kept for fallback) */
.portal-hero {
  display: flex; justify-content: space-between; gap: 16px;
  align-items: flex-start; background: linear-gradient(135deg, var(--g900), var(--g700));
  border-radius: var(--r-xl); padding: 24px 28px; color: #fff; margin-bottom: 16px;
}
.portal-hero small { display: block; color: rgba(255,255,255,.55); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.portal-hero h3 { font-size: 26px; margin: 8px 0 4px; color: #fff; }
.portal-hero p  { margin: 0; font-size: 14px; color: rgba(255,255,255,.68); }

/* New premium portal hero */
.portal-hero-v2 {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  background: linear-gradient(135deg, var(--g950) 0%, var(--g800) 100%);
  border-radius: var(--r-xl); padding: 28px 32px; color: #fff;
  border: 1px solid rgba(255,255,255,.06);
}
.portal-hero-greeting {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: .03em;
  text-transform: uppercase; margin-bottom: 10px;
}
.portal-next-visit { margin-top: 0; }
.portal-next-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--g200); margin-bottom: 4px; }
.portal-next-date { font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1.1; }
.portal-next-service { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 5px; font-weight: 600; }
.portal-no-visit .portal-next-date { font-size: 20px; color: var(--gold); }

.portal-hero-right { min-width: 160px; display: flex; flex-direction: column; justify-content: space-between; }
.portal-trust-badges { display: flex; flex-direction: column; gap: 7px; }
.portal-trust-item {
  font-size: 13px; color: rgba(255,255,255,.7); font-weight: 600; display: flex; align-items: center; gap: 8px;
}
.portal-trust-item span { color: var(--g200); font-weight: 900; }
.portal-assigned-cleaner {
  background: rgba(255,255,255,.1); border-radius: var(--r); padding: 10px 14px;
  margin-bottom: 12px; display: flex; flex-direction: column; gap: 3px;
}
.portal-cleaner-label { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.portal-cleaner-name { font-size: 16px; font-weight: 800; color: #fff; }

/* Portal visit star rating */
.portal-visit-rating { display: flex; align-items: center; gap: 6px; padding: 6px 0 2px; border-top: 1px solid var(--border); width: 100%; }
.portal-rating-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.portal-rating-stars { font-size: 15px; letter-spacing: 1px; }
.portal-star-btn { background: none; border: 1px solid var(--border); border-radius: 4px; padding: 3px 7px; font-size: 16px; color: #c9b200; cursor: pointer; line-height: 1; transition: background .15s, transform .1s; }
.portal-star-btn:hover { background: #fffbe0; border-color: #c9b200; transform: scale(1.15); }
.portal-star-btn:active { transform: scale(.95); }

/* Mobile workday quality score prompt */
.work-quality-prompt { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 10px 14px; background: #fffbe8; border-top: 1px solid #f0d060; border-radius: 0 0 var(--r) var(--r); }
.work-quality-btn { background: none; border: 1px solid #e0c060; border-radius: 6px; padding: 6px 10px; font-size: 18px; cursor: pointer; transition: background .15s, transform .1s; }
.work-quality-btn:hover { background: #fff8cc; transform: scale(1.1); }
.work-quality-btn:active { transform: scale(.95); }
.work-quality-done { display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--g50); border-top: 1px solid var(--g200); font-size: 13px; color: var(--g700); border-radius: 0 0 var(--r) var(--r); }

@media (max-width: 600px) {
  .portal-hero-v2 { grid-template-columns: 1fr; gap: 16px; padding: 20px 18px; }
  .portal-hero-right { min-width: auto; }
}

/* Portal alert item */
.portal-alert-item { border-left: 3px solid var(--b1); padding-left: 12px !important; }

/* Invoice card */
.portal-invoice-card {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r);
  padding: 16px 18px; transition: var(--t-fast);
}
.portal-invoice-card + .portal-invoice-card { margin-top: 8px; }
.portal-invoice-card:hover { border-color: var(--b2); box-shadow: var(--sh-sm); }
.portal-invoice-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.portal-invoice-header strong { font-size: 15px; font-weight: 800; display: block; }
.portal-invoice-header small { color: var(--muted); font-size: 12px; margin-top: 2px; display: block; }
.portal-invoice-amount { font-size: 20px; font-weight: 900; color: var(--g900); margin-bottom: 4px; }
.portal-invoice-lines { font-size: 13px; color: var(--muted); line-height: 1.6; border-top: 1px solid var(--b1); padding-top: 10px; margin-bottom: 10px; }
.portal-sfr-note {
  background: var(--gold-bg); color: #7a5b1e; border-radius: var(--r-sm);
  padding: 8px 12px; font-size: 13px; font-weight: 700; margin-bottom: 10px;
  border: 1px solid rgba(201,155,69,.25);
}
.portal-invoice-actions { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }

#portalPage .panel { border-radius: 8px; }
#portalPage .list-item { align-items: flex-start; gap: 12px; }
#portalPage .list-item small { line-height: 1.45; }
#portalCalendar .fc {
  font-family: inherit;
  font-size: 12px;
}
#portalCalendar {
  min-height: 420px;
}
#portalCalendar .fc-view-harness {
  min-height: 360px;
}
#portalCalendar .fc-toolbar-title {
  font-size: 15px;
  font-weight: 800;
}
#portalCalendar .fc-button {
  border: 1px solid var(--b1);
  background: #fff;
  color: var(--t1);
  box-shadow: none;
  border-radius: 7px;
  padding: 5px 8px;
}
#portalCalendar .fc-button-primary:not(:disabled).fc-button-active,
#portalCalendar .fc-button-primary:not(:disabled):active {
  background: var(--g900);
  border-color: var(--g900);
}
#portalCalendar .fc-event {
  border-radius: 6px;
  padding: 2px 4px;
  font-weight: 700;
}

/* Tom Select */
.ts-control { border: 1px solid var(--b1); border-radius: var(--r); padding: 9px 12px; box-shadow: none; }

/* ════════════════════════════════════════════════════════
   STRATEGY
   ════════════════════════════════════════════════════════ */
.strategy-doc { background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-xl); padding: 36px; max-width: 1050px; box-shadow: var(--sh); }
.strategy-doc h2 { font-size: 36px; }
.strategy-doc h3 { margin-top: 28px; font-size: 17px; }
.strategy-doc p, .strategy-doc li { line-height: 1.8; color: var(--muted); font-size: 15px; }
.strategy-doc table { margin: 16px 0; }

/* ════════════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════════════ */
.modal {
  position: fixed; inset: 0; background: rgba(13,31,22,.52);
  display: grid; place-items: center; padding: 16px; z-index: 1000;
  backdrop-filter: blur(6px); animation: mdFadeIn .18s ease;
}
.modal-card {
  background: #fff; border-radius: var(--r-2xl); padding: 0;
  width: min(600px, 100%); max-height: 92svh; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-lg); position: relative;
  animation: mdSlideUp .22s cubic-bezier(.34,1.2,.64,1);
}
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px 16px; border-bottom: 1px solid var(--b1); flex-shrink: 0;
}
.modal-header h3 { margin: 0; font-size: 18px; font-weight: 800; color: var(--t1); }
#modalBody { padding: 20px 24px 24px; overflow-y: auto; flex: 1; }
.modal-close {
  border: 0; background: var(--g50); border-radius: 999px;
  width: 34px; height: 34px; font-size: 18px; cursor: pointer; flex-shrink: 0;
  color: var(--muted); display: grid; place-items: center; transition: var(--t-fast);
}
.modal-close:hover { background: var(--err-bg); color: var(--err-t); }
.modal-close:hover { background: var(--g100); color: var(--t1); }
.modal-card h3 { margin: 0 0 20px; font-size: 20px; }
@keyframes mdFadeIn  { from { opacity: 0; }               to { opacity: 1; }      }
@keyframes mdSlideUp { from { transform: translateY(22px); opacity: .75; } to { transform: none; opacity: 1; } }

/* ════════════════════════════════════════════════════════
   DETAIL PAGES (customer, job)
   ════════════════════════════════════════════════════════ */
.detail-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-weight: 700; font-size: 14px;
  margin-bottom: 16px; cursor: pointer; transition: color var(--t-fast);
}
.detail-back:hover { color: var(--g900); }
.detail-header {
  background: linear-gradient(135deg, var(--g900), var(--g700));
  border-radius: var(--r-xl); padding: 28px 32px; color: #fff;
  margin-bottom: 18px; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 20px;
}
.detail-header-info h2 { color: #fff; font-size: 24px; margin: 0 0 6px; }
.detail-header-info p  { color: rgba(255,255,255,.66); margin: 0; font-size: 14px; }
.detail-avatar {
  width: 60px; height: 60px; border-radius: 14px; flex-shrink: 0;
  background: rgba(255,255,255,.16); display: grid; place-items: center;
  font-size: 26px; font-weight: 900; color: #fff; border: 2px solid rgba(255,255,255,.22);
}
.detail-header-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.detail-header .ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.detail-header .ghost:hover { background: rgba(255,255,255,.2); }
.detail-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 16px; }
.detail-tabs {
  display: flex; gap: 2px; margin-bottom: 16px; padding: 3px;
  background: var(--g50); border-radius: var(--r-lg);
  border: 1px solid var(--b1); width: fit-content;
}
.detail-tab {
  padding: 8px 16px; border: 0; background: transparent;
  border-radius: var(--r-sm); font-weight: 700; font-size: 13px;
  color: var(--muted); cursor: pointer; transition: var(--t-fast);
}
.detail-tab.active { background: #fff; color: var(--g900); box-shadow: var(--sh-xs); }
.detail-tab-panel { display: none; }
.detail-tab-panel.active { display: block; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-item {
  background: var(--g50); border-radius: var(--r); padding: 14px;
  border: 1px solid rgba(220,232,222,.5);
}
.info-item small { display: block; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.info-item strong { display: block; font-weight: 700; font-size: 14px; color: var(--t1); }
.info-item.full-width { grid-column: 1/-1; }

/* Timeline */
.timeline { display: grid; gap: 0; position: relative; padding-left: 22px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--b1); }
.timeline-item { display: flex; gap: 12px; padding-bottom: 16px; position: relative; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--g700); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--b2); flex-shrink: 0; position: absolute; left: -18px; top: 4px; }
.timeline-body { flex: 1; background: var(--g50); border-radius: var(--r); padding: 12px 14px; border: 1px solid rgba(220,232,222,.5); }
.timeline-body strong { display: block; font-weight: 700; font-size: 14px; }
.timeline-body small  { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }

/* ════════════════════════════════════════════════════════
   SECTION: SPEC / HEALTH
   ════════════════════════════════════════════════════════ */
.health-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .card-grid, .price-grid, .gallery-grid, .faq-list { grid-template-columns: repeat(2,1fr); }
  .kpi-grid, .entity-grid { grid-template-columns: repeat(2,1fr); }
  .dashboard-grid, .portal-grid, .mobile-work-layout, .cms-grid,
  .document-layout, .booking-section, .contact-section, .om-os-grid,
  .media-grid, .split, .hero, .detail-grid, .health-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-focus-grid { grid-template-columns: 1fr; }
  .pipeline-board { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero-panel { display: none; }
}

@media (max-width: 760px) {
  .desktop-nav, .header-actions .ghost, .header-actions .primary,
  .desktop-only { display: none !important; }
  .mobile-only { display: inline-flex !important; }
  .site-header { height: 62px; padding: 0 14px; border-radius: 14px; top: 8px; width: calc(100% - 16px); }
  .hero { padding: 98px 18px 50px; grid-template-columns: 1fr; }
  .section { padding: 60px 18px; }
  .card-grid, .price-grid, .gallery-grid, .faq-list,
  .kpi-grid, .entity-grid, .info-grid, .form-3col { grid-template-columns: 1fr; }
  .brand-kit { grid-template-columns: 1fr; }
  .pipeline-board { grid-template-columns: 1fr; }
  .pipeline-column { min-height: auto; }
  .form-row, .work-buttons, .work-customer-actions { grid-template-columns: 1fr; }
  .document-preview { min-height: 360px; padding: 16px; }
  .document-preview header { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; padding-bottom: 90px; }
  .pub-mobile-cta { display: flex; }
  .site-footer { padding-bottom: 0; }
  .mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 6px;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96); backdrop-filter: blur(22px);
    border-top: 1px solid var(--b1); box-shadow: 0 -4px 20px rgba(12,30,19,.07);
  }
  .mobile-cta a, .mobile-cta button {
    background: var(--g900); color: #fff; border: 0; border-radius: var(--r);
    padding: 13px 10px; font-weight: 800; text-align: center; min-height: 48px; font-size: 14px;
  }
  .sidebar {
    position: fixed; inset: 0 auto 0 0; z-index: 80;
    transform: translateX(-110%); transition: transform var(--t-slow);
    width: 80vw; max-width: 300px; margin: 0; border-radius: 0 18px 18px 0;
  }
  .sidebar.open { transform: translateX(0); }
  .app-main { padding: 8px; }
  .app-topbar { padding: 0 10px; min-height: 66px; height: auto; }
  .app-topbar .primary { padding: 0 12px; font-size: 13px; }
  .app-page { padding-bottom: 28px; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .big-timer { font-size: 38px; }
  .detail-tabs { flex-wrap: wrap; }
  .detail-header { flex-direction: column; gap: 14px; }

  /* ── Mobile Work page ── */
  #mobileWorkPage > div,
  #financePage > div:last-child,
  #documentsPage > div,
  #invoicesPage > div:last-child,
  #reportsPage > div,
  #specPage > div,
  #cmsPage > div { grid-template-columns: 1fr !important; }

  /* ── Timer display ── */
  #activeTimer { font-size: 38px !important; }
  .workday-money-summary,
  .workday-product-summary { grid-template-columns: 1fr !important; }

  /* ── Dashboard ── */
  .dashboard-grid, .portal-grid { grid-template-columns: 1fr !important; }
  .kpi-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* ── Pipeline / Leads board ── */
  #pipelineBoard { grid-template-columns: 1fr !important; }
  #leadsBoard { grid-template-columns: repeat(2,minmax(160px,1fr)) !important; }

  /* ── Charts ── */
  #revenueChart, #profitChart, #serviceChart { min-height: 220px; }

  /* ── Inventory table ── */
  #inventoryList table { font-size: 12px; }
  #inventoryList th:nth-child(4),
  #inventoryList td:nth-child(4) { display: none; }

  /* ── Invoice table ── */
  #invoiceTable table { font-size: 12px; }
  #invoiceTable th:nth-child(3),
  #invoiceTable td:nth-child(3),
  #invoiceTable th:nth-child(4),
  #invoiceTable td:nth-child(4) { display: none; }

  /* ── Employees ── */
  #employeesPage .entity-grid { grid-template-columns: 1fr !important; }
}

/* Very small screens */
@media (max-width: 420px) {
  .kpi-grid { grid-template-columns: 1fr !important; }
  #activeTimer { font-size: 30px !important; }
  .booking-section { padding: 50px 14px; }
  .hero { padding: 88px 14px 40px; }
}

/* ══════════════════════════════════════════════════════
   TILBUDSBEREGNER (Quote Calculator)
   ══════════════════════════════════════════════════════ */

/* Wizard layout */
.qc-wizard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 16px;
  border-bottom: 1px solid var(--b1);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.qc-steps {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.qc-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--b1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
}
.qc-step-dot.active {
  background: var(--g700);
  border-color: var(--g700);
  color: #fff;
}
.qc-step-dot.done {
  background: var(--ok-bg);
  border-color: var(--ok-c);
  color: var(--ok-c);
}

.qc-wizard-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: start;
}
.qc-wizard-form {
  background: var(--surf);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  padding: 24px;
  min-height: 400px;
}
.qc-step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--g900);
  margin: 0 0 18px;
}

/* Live panel */
.qc-live-panel {
  background: var(--g950);
  border-radius: var(--r-lg);
  padding: 0;
  position: sticky;
  top: 70px;
  overflow: hidden;
}
.qc-live-header {
  background: var(--g800);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 12px 18px;
}
#qcLivePanelContent {
  padding: 16px;
  color: #d4e9d8;
}
.qc-live-placeholder {
  font-size: 13px;
  color: var(--g200);
  text-align: center;
  padding: 24px 0;
}
.qc-live-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
  gap: 8px;
}
.qc-live-row:last-child { border-bottom: none; }
.qc-live-row strong {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.qc-live-row span { color: var(--g200); font-size: 13px; }
.qc-live-price {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  padding: 12px 0 4px;
  text-align: right;
}
.qc-live-price small { font-size: 14px; font-weight: 500; color: var(--g200); display: block; }
.qc-risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  margin: 10px 0;
  width: 100%;
  justify-content: center;
}
.qc-risk-badge.green  { background: var(--ok-bg);   color: var(--ok-t); }
.qc-risk-badge.yellow { background: var(--warn-bg);  color: var(--warn-t); }
.qc-risk-badge.orange { background: #fff3e0; color: #e65100; }
.qc-risk-badge.red    { background: var(--err-bg);   color: var(--err-t); }
.qc-live-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.12);
  margin: 10px 0;
}
.qc-warning-item {
  font-size: 12px;
  color: #fbbf24;
  padding: 4px 0;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  line-height: 1.4;
}

/* AI Advisor panel */
.qc-ai-advisor {
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 10px;
}
.qc-ai-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.qc-ai-item {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.45;
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 5px;
  color: #e2e8f0;
}
.qc-ai-item span strong { color: #fff; }
.qc-ai-tip     { background: rgba(99,102,241,.18); }
.qc-ai-info    { background: rgba(59,130,246,.18); }
.qc-ai-warn    { background: rgba(245,158,11,.18); color: #fde68a; }
.qc-ai-danger  { background: rgba(239,68,68,.20);  color: #fca5a5; }
.qc-ai-success { background: rgba(16,185,129,.18); color: #a7f3d0; }

/* Job type selector */
.qc-job-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.qc-job-type-card {
  border: 2px solid var(--b1);
  border-radius: var(--r);
  padding: 14px 12px;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
  background: var(--surf);
}
.qc-job-type-card:hover { border-color: var(--g700); background: var(--g50); }
.qc-job-type-card.selected {
  border-color: var(--g700);
  background: var(--g50);
  box-shadow: 0 0 0 3px rgba(47,104,64,.15);
}
.qc-job-type-card .qc-jt-icon { font-size: 24px; margin-bottom: 6px; }
.qc-job-type-card .qc-jt-name { font-size: 13px; font-weight: 700; color: var(--t1); }
.qc-job-type-card .qc-jt-price { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* Condition selector */
.qc-condition-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.qc-condition-card {
  border: 2px solid var(--b1);
  border-radius: var(--r);
  padding: 14px 8px;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
  background: var(--surf);
}
.qc-condition-card:hover { border-color: var(--g700); }
.qc-condition-card.selected { border-color: var(--g700); background: var(--g50); }
.qc-condition-card .qc-cond-num { font-size: 22px; font-weight: 900; color: var(--g700); }
.qc-condition-card .qc-cond-label { font-size: 11px; font-weight: 700; color: var(--t1); margin-top: 4px; }
.qc-condition-card .qc-cond-desc { font-size: 10px; color: var(--muted); margin-top: 3px; line-height: 1.4; }

/* Extras grid */
.qc-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px;
}
.qc-extra-card {
  border: 2px solid var(--b1);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  cursor: pointer;
  transition: all .15s;
  background: var(--surf);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.qc-extra-card:hover { border-color: var(--g700); }
.qc-extra-card.selected {
  border-color: var(--g700);
  background: var(--g50);
}
.qc-extra-card input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--g700);
}
.qc-extra-card .qc-ext-name { font-size: 13px; font-weight: 600; color: var(--t1); }
.qc-extra-card .qc-ext-price { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Price breakdown */
.qc-price-breakdown {
  background: var(--surf2);
  border-radius: var(--r);
  border: 1px solid var(--b1);
  overflow: hidden;
}
.qc-pb-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--b1);
  font-size: 14px;
}
.qc-pb-row:last-child { border-bottom: none; }
.qc-pb-row.total {
  background: var(--g50);
  font-weight: 700;
  font-size: 16px;
}
.qc-pb-row.profit {
  background: var(--ok-bg);
  color: var(--ok-t);
  font-weight: 600;
}
.qc-pb-row.warning {
  background: var(--warn-bg);
  color: var(--warn-t);
}
.qc-pb-row.danger {
  background: var(--err-bg);
  color: var(--err-t);
}
.qc-pb-row .qc-pb-label { color: var(--t2); }
.qc-pb-row .qc-pb-value { font-weight: 600; }

/* Final summary */
.qc-final-summary {
  background: var(--g50);
  border: 1px solid var(--b1);
  border-radius: var(--r);
  padding: 18px;
}
.qc-final-summary h4 { margin: 0 0 12px; font-size: 15px; color: var(--g900); }

/* Quote list */
.qc-quote-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--b1);
  cursor: pointer;
  transition: background .15s;
}
.qc-quote-row:hover { background: var(--g50); }
.qc-quote-row:last-child { border-bottom: none; }
.qc-quote-row .qc-qr-main { flex: 1; min-width: 0; }
.qc-quote-row .qc-qr-name { font-weight: 700; font-size: 14px; color: var(--t1); }
.qc-quote-row .qc-qr-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.qc-quote-row .qc-qr-price { font-weight: 700; font-size: 15px; color: var(--g700); white-space: nowrap; }
.qc-quote-row .qc-qr-actions { display: flex; gap: 6px; align-items: center; }

/* Mobile sticky */
.qc-mobile-summary {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--g950);
  color: #fff;
  padding: 10px 16px;
  z-index: 90;
  border-top: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.qc-ms-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.qc-ms-price { font-size: 22px; font-weight: 900; }
.qc-ms-details { font-size: 11px; color: var(--g200); }

@media (max-width: 900px) {
  .qc-wizard-layout { grid-template-columns: 1fr; }
  .qc-live-panel { display: none; }
  .qc-mobile-summary { display: block; }
  .qc-condition-grid { grid-template-columns: repeat(5, 1fr); }
  .qc-wizard-form { padding: 16px; }
  #quote-calculatorPage { padding-bottom: 80px; }
}

@media (max-width: 600px) {
  .qc-condition-grid { grid-template-columns: 1fr 1fr; }
  .qc-job-type-grid { grid-template-columns: 1fr 1fr; }
  .qc-wizard-header { gap: 8px; }
  .qc-steps { display: none; }
  .qc-wizard-form { padding: 12px; }
}

/* ══════════════════════════════════════════════════════
   MOBILE LAYER — iOS Safari, Android Chrome, all ≤760px
   One place for all responsive overrides.
   ══════════════════════════════════════════════════════ */

/* Global: tap feel & overflow prevention */
* { -webkit-tap-highlight-color: transparent; }
html { overscroll-behavior: none; max-width: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
.app-main, .modal-card, .panel, .list { -webkit-overflow-scrolling: touch; }
.hero, .booking-section, .contact-section, .site-footer { overflow-x: hidden; }

/* Safe-area tokens (notch + home indicator) */
:root {
  --sat: env(safe-area-inset-top,    0px);
  --sar: env(safe-area-inset-right,  0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --sal: env(safe-area-inset-left,   0px);
}

/* Toast: keep clear of home bar */
.toast { right: max(20px, var(--sar)); bottom: max(20px, calc(var(--sab) + 14px)); }

/* Bottom-sheet modal animation */
@keyframes mdSlideUpSheet {
  from { transform: translateY(60px); opacity: .6; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ══ ≤1024px — tablets ══════════════════════════════ */
@media (max-width: 1024px) {
  .card-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding: 96px clamp(18px,5vw,72px) 64px; }
  .hero-copy { max-width: 680px; }
  .hero-panel { display: none; }
  .split { gap: 40px; }
  .om-os-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .faq-list { grid-template-columns: 1fr; }
}

/* ══ ≤760px — phones and small tablets ══════════════ */
@media (max-width: 760px) {

  /* Inputs: ≥16px prevents Safari auto-zoom on focus */
  input, select, textarea { font-size: 16px !important; }
  .page-actions input, .page-actions select { max-width: 100%; }

  /* Modal → bottom sheet */
  .modal { align-items: flex-end; padding: 0; }
  .modal-card {
    width: 100%; max-width: 100%; max-height: 94svh;
    border-radius: var(--r-2xl) var(--r-2xl) 0 0;
    animation: mdSlideUpSheet .26s cubic-bezier(.34,1.1,.64,1);
  }
  .modal-header { padding: 18px 16px 14px; }
  .modal-header h3 { font-size: 16px; }
  #modalBody { padding: 14px 16px calc(16px + var(--sab)); }
  .modal-close { width: 38px; height: 38px; font-size: 20px; }

  /* App shell: safe-area on all sides */
  .app-view { padding-top: var(--sat); padding-left: var(--sal); padding-right: var(--sar); }
  .app-topbar { position: sticky; top: 0; }
  .app-page   { padding-bottom: calc(32px + var(--sab)); }
  .app-main   { overflow-x: hidden; }
  .sidebar {
    padding-top:    calc(14px + var(--sat));
    padding-bottom: calc(14px + var(--sab));
  }
  #sidebarOverlay { backdrop-filter: blur(3px) !important; }

  /* Touch targets: 40–44px minimum */
  .small    { min-height: 40px; padding: 0 14px; font-size: 14px; }
  .icon-btn { width: 44px; height: 44px; }

  /* Panels */
  .panel      { padding: 14px; }
  .panel-head { margin-bottom: 12px; padding-bottom: 10px; }

  /* Mobil arbejde: kompakt topbar — frigiver skærmplads til timer og checklist */
  #mobileWorkPage.active ~ .app-topbar,
  .app-main:has(#mobileWorkPage.active) ~ .app-topbar { min-height: 48px; }
  body:has(#mobileWorkPage.active) .app-topbar .app-topbar-info { display: none; }
  body:has(#mobileWorkPage.active) .app-topbar { min-height: 48px; padding: 0 8px; }
  body:has(#mobileWorkPage.active) .app-topbar strong,
  body:has(#mobileWorkPage.active) .app-topbar small { display: none; }

  /* Tables: scroll horizontally instead of squishing */
  .reorder-table, .inv-table {
    display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap;
  }

  /* CTA bars: clear home indicator */
  .mobile-cta    { padding-bottom: calc(10px + var(--sab)); }
  .footer-bottom { padding-bottom: calc(80px + var(--sab)); gap: 12px; }

  /* ── PUBLIC SITE ──────────────────────────────────── */

  /* Header */
  .site-header { top: 8px; height: 56px; padding: 0 12px; }
  .brand-lockup strong { font-size: 14px; }
  .brand-lockup small  { display: none; }
  .brand-mark { width: 34px; height: 34px; font-size: 15px; border-radius: 9px; }

  /* Hero */
  .hero { padding: 76px 18px 52px; min-height: 0; gap: 0; }
  .hero h1 { font-size: clamp(30px, 9vw, 42px); margin: 14px 0; line-height: 1.05; }
  .hero > .hero-copy > p { font-size: 15px; line-height: 1.62; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; margin-top: 22px; }
  .hero-actions .primary,
  .hero-actions .ghost { width: 100%; justify-content: center; min-height: 50px; font-size: 15px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 22px; }
  .hero-stats div { min-width: 0; padding: 11px 10px; border-radius: 12px; }
  .hero-stats strong { font-size: 17px; }
  .hero-stats span   { font-size: 9px; }
  .pill { font-size: 10px; padding: 5px 11px; }

  /* Sections */
  .section      { padding: 48px 16px; }
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: clamp(22px, 7vw, 32px); }
  .section-head p  { font-size: 14px; }

  /* Cards */
  .card-grid, .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .price-grid { grid-template-columns: 1fr; gap: 12px; }
  .card { padding: 22px; }
  .card h3 { font-size: 16px; }
  .gallery-card { min-height: 160px; padding: 22px 20px 18px; }
  .gallery-card .gc-title { font-size: 17px; }
  .price-card { padding: 22px; }
  .price-amount { font-size: 28px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 12px; }
  .process-step { padding: 24px 20px; }
  .process-num  { width: 48px; height: 48px; font-size: 20px; margin-bottom: 14px; }
  .process-step h3 { font-size: 16px; }

  /* Why / split */
  .split { gap: 28px; }
  .why-list div { padding: 14px 16px; }

  /* Om os */
  .om-os-grid  { gap: 28px; margin-top: 24px; }
  .om-os-stats { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; padding-top: 20px; }
  .om-stat { padding: 12px; }
  .om-stat strong { font-size: 18px; }
  .value-item { padding: 16px; gap: 12px; }
  .value-icon { font-size: 22px; }
  .value-item strong { font-size: 14px; }
  .value-item p { font-size: 13px; }

  /* Coverage */
  .coverage-grid { gap: 10px; margin-top: 20px; }
  .coverage-card { padding: 14px; }

  /* FAQ */
  .faq-list { gap: 8px; }
  .faq-list details { padding: 14px; }
  .faq-list summary  { font-size: 14px; }

  /* Booking */
  .booking-section { padding: 44px 16px; gap: 28px; }
  .booking-form    { padding: 20px 16px; border-radius: var(--r-xl); }
  .booking-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-box        { padding: 12px 14px; }
  .quote-box strong { font-size: 20px; }
  .booking-submit-btn { font-size: 14px; padding: 0 14px; min-height: 50px; }
  .booking-trust-list { gap: 6px; margin-top: 12px; }
  .booking-trust-item { font-size: 12px; }

  /* Contact */
  .contact-section   { padding: 44px 16px; gap: 28px; }
  .contact-form-wrap { padding: 20px 16px; border-radius: var(--r-xl); }
  .contact-details   { gap: 8px; margin-top: 16px; }
  .contact-detail-item  { padding: 10px 14px; font-size: 14px; }
  .contact-form-wrap h3 { font-size: 18px; margin-bottom: 16px; }

  /* Login */
  .login-card { padding: 24px 20px; border-radius: var(--r-xl); }
  .login-card .brand-mark.large { width: 56px; height: 56px; font-size: 28px; }

  /* Footer */
  .site-footer { padding: 40px 16px 0; }
  .footer-grid { gap: 20px; }
  .footer-bottom p { font-size: 12px; }

  /* Public mobile CTA */
  .pub-mobile-cta { padding: 8px 12px calc(8px + var(--sab)); gap: 8px; }
  .pub-cta-btn    { font-size: 14px; padding: 13px 8px; min-height: 48px; }

  /* FAQ */
  .faq-list { grid-template-columns: 1fr; }
}

/* ══ ≤400px — iPhone SE / very narrow ══════════════ */
@media (max-width: 400px) {
  .c360-kpis { grid-template-columns: 1fr 1fr; }
  .kpi-grid  { grid-template-columns: 1fr 1fr !important; }
}

/* ══ ≤340px — absolute minimum ═════════════════════ */
@media (max-width: 340px) {
  .kpi-grid { grid-template-columns: 1fr !important; }
}

/* ═══ PUBLIC REDESIGN 2.0 — pv-* classes ═══ */

/* ── Wrapper ─────────────────────────────────────────── */
.pv {
  background: var(--paper);
  color: var(--t1);
  overflow-x: hidden;
}

/* ── Nav ─────────────────────────────────────────────── */
.pv-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 24px));
  z-index: 60;
}
.pv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  padding: 0 clamp(16px, 3vw, 32px);
  background: rgba(13,31,22,.88);
  backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
}
.pv-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.pv-brand span {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: -.01em;
}
.pv-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.pv-links a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  padding: 8px 14px;
  border-radius: 10px;
  transition: color var(--t-fast), background var(--t-fast);
  text-decoration: none;
}
.pv-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.pv-links a.active { color: #fff; background: rgba(255,255,255,.1); }
.pv-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pv-login-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--t-fast);
  white-space: nowrap;
}
.pv-login-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); color: #fff; }
.pv-login-btn.full { width: 100%; border-radius: var(--r); padding: 13px 14px; font-size: 14px; }
.pv-nav-sep {
  width: 1px; height: 22px; background: rgba(255,255,255,.12); flex-shrink: 0;
}
.pv-cta-nav {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--g950);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--t-fast), transform var(--t-fast);
  letter-spacing: -.01em;
}
.pv-cta-nav:hover { background: var(--g100); transform: translateY(-1px); }
.pv-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t-fast);
}
.pv-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.pv-menu-btn:hover { background: rgba(255,255,255,.12); }

/* ── Mobile menu ─────────────────────────────────────── */
.pv-mobile-menu {
  position: fixed;
  top: 86px;
  left: 12px;
  right: 12px;
  z-index: 55;
  background: var(--g950);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pv-mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.pv-mobile-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
.pv-mobile-menu-foot {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ── Hero ─────────────────────────────────────────────── */
.pv-hero {
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(ellipse 70% 50% at 70% 0%, rgba(47,104,64,.28) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 5% 90%, rgba(201,155,69,.1) 0%, transparent 50%),
    linear-gradient(160deg, #060e08 0%, var(--g950) 45%, #0b1f10 100%);
  position: relative;
  overflow: hidden;
}
.pv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,.025)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.pv-hero-content {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
/* legacy: hide old pv-signals inside old pv-hero-content on desktop */
.pv-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pv-hero-h1 {
  color: #fff;
  font-size: clamp(42px, 7.5vw, 88px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .94;
  margin-bottom: 24px;
}
.pv-hero-sub {
  color: rgba(255,255,255,.55);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.pv-main-cta {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--g950);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--r-lg);
  text-decoration: none;
  letter-spacing: -.01em;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  margin-bottom: 48px;
}
.pv-main-cta:hover { background: var(--g100); transform: translateY(-2px); box-shadow: 0 14px 44px rgba(0,0,0,.35); }
.pv-signals {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 16px 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.pv-signal {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.pv-signal strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}
.pv-signal span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 2px;
}
.pv-signal-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── Sections ─────────────────────────────────────────── */
.pv-section {
  padding: 88px clamp(20px, 5vw, 80px);
  max-width: 1280px;
  margin-inline: auto;
}
.pv-tint {
  max-width: none;
  background: var(--g50);
}
.pv-tint > .pv-section-header,
.pv-tint > .pv-process {
  max-width: 1280px;
  margin-inline: auto;
}
.pv-section-header {
  max-width: 640px;
  margin-bottom: 52px;
}
.pv-section-header h2 { margin: 10px 0 12px; }
.pv-section-header p { font-size: 16px; line-height: 1.72; }
.pv-label {
  display: inline-flex;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--g100);
  color: var(--g800);
}
.pv-label-inv {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
}

/* ── Service cards ───────────────────────────────────── */
.pv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.pv-service-card {
  background: var(--surf);
  border: 1px solid var(--b1);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  box-shadow: var(--sh-xs);
}
.pv-service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g900), var(--g600));
}
.pv-service-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--b2); }
.pv-svc-icon { font-size: 30px; margin-bottom: 8px; }
.pv-service-card h3 { font-size: 18px; font-weight: 800; color: var(--t1); margin-bottom: 6px; }
.pv-service-card p { font-size: 14px; line-height: 1.7; color: var(--muted); flex: 1; }
.pv-svc-link {
  display: inline-flex;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 800;
  color: var(--g700);
  text-decoration: none;
  border-top: 1px solid var(--b1);
  padding-top: 14px;
  transition: color var(--t-fast);
}
.pv-svc-link:hover { color: var(--g900); }

/* ── Process ─────────────────────────────────────────── */
.pv-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pv-step {
  background: var(--surf);
  border: 1px solid var(--b1);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  align-items: center;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.pv-step:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.pv-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g950), var(--g700));
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(22,53,31,.32);
}
.pv-step h3 { font-size: 17px; font-weight: 800; color: var(--t1); }
.pv-step p  { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ── Documentation section ───────────────────────────── */
.pv-doc-section {
  background: linear-gradient(160deg, #060e08 0%, var(--g950) 60%, #0e2214 100%);
  padding: 88px clamp(20px, 5vw, 80px);
}
.pv-doc-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.pv-doc-inner h2 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.0;
  margin-bottom: 16px;
}
.pv-doc-inner > p {
  color: rgba(255,255,255,.5);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 52px;
}
.pv-doc-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pv-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  transition: background var(--t-base), border-color var(--t-base);
}
.pv-proof-item:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }
.pv-proof-icon {
  font-size: 28px;
  margin-bottom: 4px;
}
.pv-proof-item strong {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.pv-proof-item span {
  font-size: 12px;
  color: rgba(255,255,255,.42);
  line-height: 1.5;
  text-align: center;
}

/* ── Om os ───────────────────────────────────────────── */
.pv-om-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.pv-om-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--t2);
  margin-bottom: 18px;
}
.pv-om-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--b1);
}
.pv-om-stats div { display: flex; flex-direction: column; gap: 3px; }
.pv-om-stats strong {
  font-size: 28px;
  font-weight: 900;
  color: var(--t1);
  letter-spacing: -.02em;
}
.pv-om-stats span { font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.pv-om-values { display: flex; flex-direction: column; gap: 20px; }
.pv-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--surf);
  border: 1px solid var(--b1);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.pv-value:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.pv-value-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.pv-value strong { display: block; font-size: 15px; font-weight: 800; color: var(--t1); margin-bottom: 4px; }
.pv-value p { font-size: 13px; line-height: 1.65; color: var(--muted); }

/* ── Booking section ─────────────────────────────────── */
.pv-booking-section {
  background: linear-gradient(160deg, #060e08 0%, var(--g950) 50%, #0e2214 100%);
  padding: 88px clamp(20px, 5vw, 80px);
}
.pv-booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.pv-booking-copy h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.025em;
  margin: 12px 0 16px;
}
.pv-booking-copy p {
  color: rgba(255,255,255,.5);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.pv-trust-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pv-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}
.pv-trust-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23a8ccb4' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.pv-form-wrap {
  background: var(--surf);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: 0 24px 72px rgba(0,0,0,.38);
}
.pv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pv-submit-btn {
  width: 100%;
  min-height: 52px;
  background: linear-gradient(135deg, var(--g900), var(--g700));
  color: #fff;
  border: 0;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 4px 16px rgba(22,53,31,.32);
  margin-top: 4px;
  letter-spacing: -.01em;
}
.pv-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(22,53,31,.4); }
.pv-submit-btn:active { transform: none; }
.pv-success {
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--ok-bg);
  border: 1px solid rgba(21,128,61,.2);
  border-radius: var(--r);
  text-align: center;
}
.pv-success strong { display: block; color: var(--ok-t); font-size: 15px; margin-bottom: 4px; }
.pv-success p { color: var(--ok-t); font-size: 13px; }
.pv-error {
  margin-top: 12px;
  padding: 14px 18px;
  background: var(--err-bg);
  border: 1px solid rgba(220,38,38,.18);
  border-radius: var(--r);
  color: var(--err-t);
  font-size: 14px;
  font-weight: 600;
}

/* ── Footer ──────────────────────────────────────────── */
.pv-footer {
  background: var(--g950);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 52px clamp(20px, 5vw, 80px) 32px;
}
.pv-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.pv-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pv-footer-brand strong { color: #fff; font-size: 15px; font-weight: 800; }
.pv-footer-brand small  { color: rgba(255,255,255,.35); font-size: 11px; }
.pv-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 2px;
  justify-content: center;
}
.pv-footer-links a {
  display: inline-flex;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: color var(--t-fast), background var(--t-fast);
}
.pv-footer-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.pv-footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.pv-footer-legal p { font-size: 12px; color: rgba(255,255,255,.3); font-weight: 600; }
.pv-footer-legal div { display: flex; gap: 4px; }
.pv-footer-legal .link-btn {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--r-xs);
  transition: color var(--t-fast);
}
.pv-footer-legal .link-btn:hover { color: #fff; }

/* ── Mobile sticky CTA ───────────────────────────────── */
.pv-mob-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(13,31,22,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  gap: 10px;
}
.pv-mob-call,
.pv-mob-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.01em;
}
.pv-mob-call {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
}
.pv-mob-book {
  background: #fff;
  color: var(--g950);
}

/* ── Responsive: 1024px ──────────────────────────────── */
@media (max-width: 1024px) {
  .pv-links { display: none; }
  .pv-nav-actions .pv-login-btn { display: none; }
  .pv-menu-btn { display: flex; }
  .pv-cta-nav { display: none; }

  .pv-services-grid { grid-template-columns: repeat(2, 1fr); }
  .pv-process { grid-template-columns: repeat(2, 1fr); }
  .pv-doc-proof { grid-template-columns: repeat(2, 1fr); }
  .pv-om-grid { grid-template-columns: 1fr; gap: 40px; }
  .pv-booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .pv-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .pv-footer-links { justify-content: flex-start; }
  .pv-footer-legal { align-items: flex-start; }
  .pv-mob-cta { display: flex; }
  .pv-footer { padding-bottom: 88px; }
}

/* ── Responsive: 760px ───────────────────────────────── */
@media (max-width: 760px) {
  .pv-hero-h1 { font-size: clamp(36px, 10vw, 56px); }
  .pv-hero { padding-top: 110px; padding-bottom: 60px; }
  .pv-signals { gap: 0; padding: 12px 16px; }
  .pv-signal { padding: 0 12px; }
  .pv-signal strong { font-size: 18px; }
  .pv-signal-div { height: 24px; }

  .pv-section { padding: 60px clamp(16px, 4vw, 32px); }

  .pv-services-grid { grid-template-columns: 1fr; }
  .pv-process { grid-template-columns: 1fr; }
  .pv-doc-proof { grid-template-columns: 1fr 1fr; }
  .pv-doc-section { padding: 60px clamp(16px, 4vw, 32px); }
  .pv-booking-section { padding: 60px clamp(16px, 4vw, 32px); }
  .pv-form-wrap { padding: 24px 20px; }
  .pv-form-row { grid-template-columns: 1fr; }
  .pv-om-stats { gap: 20px; flex-wrap: wrap; }
  .pv-booking-inner { gap: 28px; }

  .pv-footer { padding: 40px clamp(16px, 4vw, 32px) 90px; }
  .pv-footer-inner { gap: 20px; }
}

/* ═══════════════════════════════════════════════════════
   HERO 2.0 — two-column with app mockup
   ═══════════════════════════════════════════════════════ */

.pv-hero {
  text-align: left !important;
  align-items: stretch !important;
}
.pv-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px clamp(20px,5vw,60px) 72px;
  position: relative;
  z-index: 1;
}
.pv-hero-copy { display: flex; flex-direction: column; gap: 0; }
.pv-hero-copy .pv-hero-tag { margin-bottom: 20px; align-self: flex-start; }
.pv-hero-copy .pv-hero-h1 { text-align: left; margin-bottom: 20px; }
.pv-hero-copy .pv-hero-sub { text-align: left; margin-bottom: 32px; }
.pv-hero-copy .pv-main-cta { align-self: flex-start; margin-bottom: 40px; }
.pv-hero-copy .pv-signals { justify-content: flex-start; }

/* App card mockup */
.pv-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.pv-app-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  max-width: 360px;
  backdrop-filter: blur(12px);
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}
.pv-app-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.pv-app-av {
  width: 38px; height: 38px; border-radius: 10px; background: var(--g700);
  color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.pv-app-meta { flex: 1; min-width: 0; }
.pv-app-meta strong { display: block; font-size: 14px; font-weight: 800; color: #fff; }
.pv-app-meta span { font-size: 11px; color: rgba(255,255,255,.45); }
.pv-app-chip {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: rgba(21,128,61,.2); color: #4ade80; border: 1px solid rgba(74,222,128,.2);
  white-space: nowrap; flex-shrink: 0;
}

/* Progress bar */
.pv-app-bar {
  height: 4px; background: rgba(255,255,255,.08); border-radius: 999px;
  margin-bottom: 14px; overflow: hidden;
}
.pv-app-bar-fill {
  height: 100%; width: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--g600), #4ade80);
}

/* Checklist */
.pv-app-checks { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.pv-app-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.55); padding: 6px 8px;
  border-radius: 8px; background: rgba(255,255,255,.04);
}
.pv-app-check.done { color: rgba(255,255,255,.8); }
.pv-app-check.done::before {
  content: "✓"; width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
  background: rgba(74,222,128,.15); color: #4ade80;
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}
.pv-app-check:not(.done)::before {
  content: ""; width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.15);
}

/* Photo row */
.pv-app-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.pv-app-photo {
  height: 72px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.pv-app-photo.before {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.08);
}
.pv-app-photo.after {
  background: rgba(74,222,128,.1); color: #4ade80;
  border: 1px solid rgba(74,222,128,.2);
}

/* Footer row */
.pv-app-footer {
  display: flex; gap: 12px; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,.4); font-weight: 600;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06);
}

/* Floating badges */
.pv-float {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 10px 14px; backdrop-filter: blur(16px);
  font-size: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.pv-float > span { font-size: 18px; flex-shrink: 0; }
.pv-float small { display: block; font-size: 10px; color: rgba(255,255,255,.4); font-weight: 600; }
.pv-float strong { display: block; font-size: 13px; color: #fff; font-weight: 800; }
.pv-float-top { top: 40px; right: -20px; }
.pv-float-bot { bottom: 60px; left: -20px; }

/* Hero at 1200px */
@media (max-width: 1200px) {
  .pv-float-top { right: 0; }
  .pv-float-bot { left: 0; }
}
/* Hero collapse to 1 col at 900px */
@media (max-width: 900px) {
  .pv-hero-inner { grid-template-columns: 1fr; padding-top: 90px; padding-bottom: 56px; gap: 40px; }
  .pv-hero-copy .pv-hero-h1 { font-size: clamp(34px,9vw,52px); }
  .pv-hero-visual { display: none; }
  .pv-hero-copy .pv-signals { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE SERVICES — 2 columns instead of 1
   ═══════════════════════════════════════════════════════ */
@media (max-width: 760px) {
  .pv-services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pv-service-card { padding: 18px 16px; }
  .pv-svc-icon { font-size: 24px; margin-bottom: 6px; }
  .pv-service-card h3 { font-size: 14px; }
  .pv-service-card p { font-size: 12px; }
  .pv-svc-link { font-size: 12px; margin-top: 10px; }
}

/* ═══════════════════════════════════════════════════════
   LOGIN VIEW REDESIGN
   ═══════════════════════════════════════════════════════ */
.pv-login-view {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(160deg, #060e08 0%, var(--g950) 55%, #0b1f10 100%);
  padding: 24px;
  position: relative;
}
.pv-login-view::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,.02)'/%3E%3C/svg%3E") repeat;
}
.pv-login-wrap {
  width: min(420px, 100%); display: flex; flex-direction: column;
  align-items: center; gap: 24px; position: relative; z-index: 1;
}
.pv-login-brand {
  display: flex; align-items: center; gap: 10px;
}
.pv-login-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.1); color: #fff;
  display: grid; place-items: center; font-weight: 900; font-size: 20px;
  border: 1px solid rgba(255,255,255,.15);
}
.pv-login-brand strong { font-size: 20px; font-weight: 800; color: #fff; }
.pv-login-card {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px; padding: 36px 32px;
  backdrop-filter: blur(20px);
}
.pv-login-card h2 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.pv-login-card > p { color: rgba(255,255,255,.45); font-size: 14px; margin-bottom: 24px; line-height: 1.5; }
.pv-login-card label {
  display: grid; gap: 6px; font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.55); margin-bottom: 14px;
}
.pv-login-card input {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 12px 14px; color: #fff; font-size: 14px;
  width: 100%; outline: none; transition: border-color .15s;
}
.pv-login-card input::placeholder { color: rgba(255,255,255,.25); }
.pv-login-card input:focus { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }
.pv-login-error {
  background: rgba(220,38,38,.15); border: 1px solid rgba(220,38,38,.3);
  border-radius: var(--r-sm); padding: 10px 14px; font-size: 13px; color: #fca5a5;
  margin-bottom: 12px; font-weight: 500;
}
.pv-login-btn-submit {
  width: 100%; min-height: 48px; background: #fff; color: var(--g950);
  border: none; border-radius: var(--r); font-size: 15px; font-weight: 800;
  cursor: pointer; margin-top: 6px; letter-spacing: -.01em;
  transition: background .15s, transform .15s;
}
.pv-login-btn-submit:hover { background: var(--g100); transform: translateY(-1px); }
.pv-login-hint { font-size: 12px; color: rgba(255,255,255,.3); text-align: center; margin-top: 14px; line-height: 1.5; }
.pv-login-back {
  background: none; border: none; color: rgba(255,255,255,.35); font-size: 13px;
  cursor: pointer; text-decoration: underline; text-decoration-color: rgba(255,255,255,.15);
  transition: color .15s;
}
.pv-login-back:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════
   CUSTOMER PORTAL SHOWCASE
   ═══════════════════════════════════════════════════════ */

.pv-portal-section {
  background: var(--g50);
  padding: 88px clamp(20px,5vw,80px);
}
.pv-portal-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center;
}

/* ═══════════════════════════════════════════════════════
   HERO METRIC CARDS + MARQUEE TICKER
   ═══════════════════════════════════════════════════════ */

/* Metric row — replaces old pv-signals */
.pv-metric-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 32px;
}
.pv-metric {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 14px 16px;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.pv-metric:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.pv-metric-icon {
  font-size: 22px; width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,.08); border-radius: 10px;
  display: grid; place-items: center;
}
.pv-metric-body strong { display: block; font-size: 14px; font-weight: 800; color: #fff; line-height: 1.2; }
.pv-metric-body span   { display: block; font-size: 11px; color: rgba(255,255,255,.42); font-weight: 600; margin-top: 2px; }

/* Marquee ticker */
.pv-ticker {
  background: var(--g950); border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; overflow: hidden;
  height: 48px;
}
.pv-ticker-label {
  flex-shrink: 0; font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.28);
  padding: 0 20px 0 clamp(16px,4vw,60px);
  border-right: 1px solid rgba(255,255,255,.08);
  white-space: nowrap; height: 100%; display: flex; align-items: center;
}
.pv-ticker-mask {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}
.pv-ticker-track {
  display: flex; align-items: center; gap: 0; white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  will-change: transform;
}
.pv-ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.pv-tick-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.6);
  padding: 0 4px; white-space: nowrap;
}
.pv-tick-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--g600), #4ade80);
}
.pv-tick-sep {
  font-size: 6px; color: rgba(255,255,255,.18); padding: 0 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .pv-metric-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pv-metric { padding: 11px 12px; border-radius: 11px; }
  .pv-metric-icon { width: 34px; height: 34px; font-size: 18px; }
  .pv-metric-body strong { font-size: 13px; }
}
@media (max-width: 480px) {
  .pv-metric-row { grid-template-columns: 1fr; }
  .pv-ticker-label { display: none; }
}

/* ── Copy side ───────────────────────────────────────── */
.pv-portal-intro {
  font-size: 17px; color: var(--t2); line-height: 1.7; margin-bottom: 32px;
}
.pv-portal-features {
  list-style: none; padding: 0; display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px;
}
.pv-portal-features li {
  display: flex; align-items: flex-start; gap: 14px;
}
.pv-pf-icon {
  font-size: 20px; flex-shrink: 0; width: 40px; height: 40px;
  background: #fff; border: 1px solid var(--b1); border-radius: 10px;
  display: grid; place-items: center; box-shadow: var(--sh-xs);
}
.pv-portal-features li div strong { font-size: 15px; font-weight: 800; color: var(--t1); display: block; margin-bottom: 2px; }
.pv-portal-features li div p { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }
.pv-portal-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pv-portal-try-btn {
  display: inline-flex; align-items: center; background: var(--g900); color: #fff;
  font-size: 14px; font-weight: 800; padding: 13px 24px; border-radius: var(--r);
  text-decoration: none; transition: background var(--t-fast), transform var(--t-fast);
}
.pv-portal-try-btn:hover { background: var(--g800); transform: translateY(-1px); }
.pv-portal-note { font-size: 12px; color: var(--muted); font-weight: 600; }

/* ── Browser frame ───────────────────────────────────── */
.pv-browser {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(12,30,19,.14), 0 4px 16px rgba(12,30,19,.06);
  border: 1px solid var(--b1);
}
.pv-browser-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; background: var(--surf2);
  border-bottom: 1px solid var(--b1);
}
.pv-browser-dots { display: flex; gap: 5px; }
.pv-browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.pv-browser-dots span:nth-child(1) { background: #ff5f57; }
.pv-browser-dots span:nth-child(2) { background: #ffbd2e; }
.pv-browser-dots span:nth-child(3) { background: #28c840; }
.pv-browser-url {
  flex: 1; text-align: center; font-size: 11px; color: var(--muted);
  font-weight: 600; background: #fff; border: 1px solid var(--b1);
  border-radius: 6px; padding: 4px 10px;
}

/* ── Browser body (portal UI) ────────────────────────── */
.pv-browser-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }

.pv-pb-header {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: var(--g950); border-radius: 10px;
}
.pv-pb-av {
  width: 34px; height: 34px; border-radius: 8px; background: var(--g600);
  color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.pv-pb-info { flex: 1; }
.pv-pb-info strong { display: block; font-size: 13px; color: #fff; font-weight: 800; }
.pv-pb-info span { font-size: 10px; color: rgba(255,255,255,.4); }
.pv-pb-active {
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px;
  background: rgba(74,222,128,.15); color: #4ade80; border: 1px solid rgba(74,222,128,.2);
}

.pv-pb-kpis {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--b1); border: 1px solid var(--b1); border-radius: 10px; overflow: hidden;
}
.pv-pb-kpi {
  background: #fff; padding: 10px 8px; text-align: center;
}
.pv-pb-kpi strong { display: block; font-size: 14px; font-weight: 900; color: var(--t1); }
.pv-pb-kpi span { font-size: 9px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.pv-pb-kpi-ok strong { color: var(--ok-c); }

.pv-pb-visit {
  background: var(--surf2); border: 1px solid var(--b1); border-radius: 10px; padding: 12px;
}
.pv-pb-visit-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; margin-bottom: 10px;
}
.pv-pb-visit-head > span:first-child { font-weight: 700; color: var(--t1); }
.pv-pb-done {
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px;
  background: var(--ok-bg); color: var(--ok-t);
}
.pv-pb-photos { display: grid; grid-template-columns: 1fr 1fr 48px; gap: 6px; margin-bottom: 8px; }
.pv-pb-photo {
  height: 56px; border-radius: 8px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.pv-pb-photo span { font-size: 14px; }
.pv-pb-before { background: var(--surf); border: 1px solid var(--b1); color: var(--muted); }
.pv-pb-after { background: var(--ok-bg); border: 1px solid rgba(21,128,61,.15); color: var(--ok-t); }
.pv-pb-count {
  background: var(--g50); border: 1px solid var(--b1); color: var(--muted);
  font-size: 14px; font-weight: 800;
}
.pv-pb-checks { display: flex; flex-wrap: wrap; gap: 4px; }
.pv-pb-checks span {
  font-size: 10px; color: var(--ok-t); background: var(--ok-bg);
  padding: 2px 7px; border-radius: 999px; font-weight: 700;
}
.pv-pb-more { background: var(--surf2) !important; color: var(--muted) !important; border: 1px solid var(--b1); }

.pv-pb-msg {
  display: flex; align-items: flex-start; gap: 8px;
}
.pv-pb-msg-av {
  width: 26px; height: 26px; border-radius: 50%; background: var(--g800);
  color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.pv-pb-msg-bubble {
  background: var(--g50); border: 1px solid var(--b1); border-radius: 0 10px 10px 10px;
  padding: 8px 12px; font-size: 12px; color: var(--t2); line-height: 1.5; flex: 1;
}

.pv-pb-upcoming {
  background: var(--surf); border: 1px solid var(--b1); border-radius: 10px; padding: 10px 12px;
}
.pv-pb-u-label { font-size: 9px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 6px; }
.pv-pb-u-item {
  display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--t1);
}
.pv-pb-u-item strong { flex: 1; }
.pv-pb-u-chip {
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px;
  background: var(--info-bg); color: var(--info-t);
}

/* ── Portal responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .pv-portal-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 760px) {
  .pv-portal-section { padding: 56px clamp(16px,4vw,32px); }
  .pv-pb-kpis { grid-template-columns: repeat(2,1fr); }
  .pv-portal-features { gap: 14px; }
}

/* ═══════════════════════════════════════════════════════
   SURPRISE FEATURES: PROGRESS, REVEAL, LIVE, FAQ SEARCH
   ═══════════════════════════════════════════════════════ */

/* 1. Scroll progress bar */
.pv-progress-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--g600), #4ade80, var(--gold));
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  transition: width .1s linear;
  pointer-events: none;
}
@keyframes progressShimmer {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* 2. Scroll reveal */
.pv-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.pv-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 3. FAQ search */
.pv-faq-search-wrap { margin: 16px 0; }
.pv-faq-search {
  width: 100%; padding: 11px 16px 11px 40px; border: 1px solid var(--b1);
  border-radius: var(--r-lg); font-size: 14px; background: var(--surf);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b8070' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: 12px center;
  outline: none; transition: border-color .15s, box-shadow .15s; color: var(--t1);
}
.pv-faq-search:focus { border-color: var(--g700); box-shadow: 0 0 0 3px rgba(47,104,64,.1); }
.pv-faq-noresult {
  text-align: center; padding: 24px; color: var(--muted); font-size: 14px;
}

/* 4. Live badge */
.pv-live-badge {
  position: fixed; bottom: 88px; left: 20px; z-index: 80;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,23,16,.92); border: 1px solid rgba(74,222,128,.25);
  color: rgba(255,255,255,.8); font-size: 12px; font-weight: 700;
  padding: 8px 14px; border-radius: 999px; backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  opacity: 0; transform: translateX(-16px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.pv-live-badge.pv-live-visible { opacity: 1; transform: translateX(0); }
.pv-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0;
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

@media (max-width: 760px) {
  .pv-live-badge { bottom: 80px; left: 12px; font-size: 11px; padding: 7px 12px; }
}

/* ═══════════════════════════════════════════════════════
   NUMBERS, FOOTER SOCIAL, COOKIE, SCROLL-TOP
   ═══════════════════════════════════════════════════════ */

/* ── Numbers section ─────────────────────────────────── */
.pv-numbers-section {
  background: var(--g950);
  padding: 64px clamp(20px,5vw,80px);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pv-numbers-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.pv-number {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  flex: 1; min-width: 160px; padding: 0 20px;
}
.pv-number strong {
  font-size: clamp(36px, 5vw, 54px); font-weight: 900; color: #fff;
  letter-spacing: -.04em; line-height: 1;
}
.pv-number span { font-size: 15px; font-weight: 800; color: rgba(255,255,255,.7); margin-top: 4px; }
.pv-number small { font-size: 12px; color: rgba(255,255,255,.3); font-weight: 500; }
.pv-num-div { width: 1px; height: 60px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ── Footer enhancements ─────────────────────────────── */
.pv-footer-location,
.pv-footer-hours { color: rgba(255,255,255,.3); font-size: 12px; }

.pv-footer-bottom {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; margin-top: 8px;
}
.pv-footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); flex: 1; margin: 0; }
.pv-footer-legal-links { display: flex; gap: 16px; }

.pv-footer-social { display: flex; gap: 12px; }
.pv-social-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color var(--t-fast);
}
.pv-social-link:hover { color: #fff; }

/* ── Cookie banner ───────────────────────────────────── */
.pv-cookie {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: min(600px, calc(100% - 32px));
  background: var(--g950); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 18px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  animation: slideUpCookie .3s ease;
}
@keyframes slideUpCookie {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
.pv-cookie-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pv-cookie-text { flex: 1; }
.pv-cookie-text strong { display: block; color: #fff; font-size: 14px; margin-bottom: 3px; }
.pv-cookie-text p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.5; margin: 0; }
.pv-cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.pv-cookie-more {
  background: none; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.55);
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 8px; cursor: pointer;
  transition: var(--t-fast);
}
.pv-cookie-more:hover { color: #fff; border-color: rgba(255,255,255,.35); }
.pv-cookie-ok {
  background: #fff; color: var(--g950); font-size: 13px; font-weight: 800;
  padding: 8px 18px; border-radius: 8px; border: none; cursor: pointer;
  transition: background var(--t-fast);
}
.pv-cookie-ok:hover { background: var(--g100); }

/* ── Scroll to top ───────────────────────────────────── */
.pv-scroll-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--g900); color: #fff; border: none; cursor: pointer;
  font-size: 18px; font-weight: 700; display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  opacity: 0; transform: scale(.8); pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.pv-scroll-top.pv-scroll-top-visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.pv-scroll-top:hover { background: var(--g800); transform: scale(1.05); }

/* ── Responsive fixes ────────────────────────────────── */
@media (max-width: 760px) {
  .pv-numbers-inner { justify-content: center; gap: 32px; }
  .pv-num-div { display: none; }
  .pv-number { min-width: 130px; }
  .pv-footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pv-footer-bottom p { flex: none; }
  .pv-cookie { bottom: 80px; }
  .pv-scroll-top { bottom: 80px; right: 16px; }
}

/* ═══════════════════════════════════════════════════════
   BOOKING WIZARD
   ═══════════════════════════════════════════════════════ */

/* Step indicator */
.pv-wiz-steps {
  display: flex; align-items: center; gap: 0; margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--b1);
}
.pv-wiz-step-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0;
}
.pv-wiz-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--b1); color: var(--muted);
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
  transition: background .2s, color .2s;
}
.pv-wiz-step-item span { font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.pv-wiz-step-item[data-active="true"] .pv-wiz-num { background: var(--g900); color: #fff; }
.pv-wiz-step-item[data-done="true"]   .pv-wiz-num { background: var(--ok-c); color: #fff; }
.pv-wiz-step-item[data-done="true"]   .pv-wiz-num::before { content: "✓"; font-size: 14px; }
.pv-wiz-line { flex: 1; height: 2px; background: var(--b1); min-width: 20px; margin: 0 4px; }

/* Wizard body */
.pv-wiz-body { display: flex; flex-direction: column; gap: 0; }
.pv-wiz-title { font-size: 17px; font-weight: 800; color: var(--t1); margin-bottom: 16px; }

/* Service picker cards */
.pv-svc-picker {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px;
}
.pv-pick-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 14px;
  border: 2px solid var(--b1); border-radius: var(--r-lg); background: var(--surf);
  cursor: pointer; text-align: left; transition: all .15s;
}
.pv-pick-card:hover  { border-color: var(--g700); background: var(--g50); }
.pv-pick-card.active {
  border-color: var(--g700); background: var(--g50);
  box-shadow: 0 0 0 3px rgba(47,104,64,.1);
}
.pv-pick-card > span   { font-size: 24px; margin-bottom: 4px; }
.pv-pick-card strong   { font-size: 14px; font-weight: 800; color: var(--t1); line-height: 1.2; }
.pv-pick-card small    { font-size: 11px; color: var(--muted); line-height: 1.3; }

.pv-pick-hint { font-size: 12px; color: var(--muted); margin-bottom: 12px; font-weight: 600; }

/* Wizard summary chip */
.pv-wiz-selected-summary { margin-bottom: 12px; }
.pv-wiz-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--g100); color: var(--g900); font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; border: 1px solid var(--b2);
}

/* Wizard buttons */
.pv-wiz-next {
  width: 100%; min-height: 48px; background: linear-gradient(135deg, var(--g900), var(--g700));
  color: #fff; border: none; border-radius: var(--r); font-size: 15px; font-weight: 800;
  cursor: pointer; transition: opacity .15s, transform .15s;
  margin-top: 4px; letter-spacing: -.01em;
  box-shadow: 0 4px 16px rgba(22,53,31,.25);
}
.pv-wiz-next:disabled { background: var(--b1); color: var(--muted); cursor: not-allowed; box-shadow: none; }
.pv-wiz-next:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(22,53,31,.3); }
.pv-wiz-btns { display: flex; gap: 10px; margin-top: 8px; }
.pv-wiz-back {
  background: none; border: 1px solid var(--b1); color: var(--t2); border-radius: var(--r);
  padding: 0 16px; font-size: 14px; font-weight: 700; cursor: pointer; min-height: 48px;
  transition: all .15s; flex-shrink: 0;
}
.pv-wiz-back:hover { background: var(--g50); border-color: var(--b2); }
.pv-wiz-submit { flex: 1; }
.pv-success-icon { font-size: 36px; margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════════
   SERVICES FILTER
   ═══════════════════════════════════════════════════════ */
.pv-svc-filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.pv-svc-filter-btn {
  padding: 8px 18px; border-radius: 999px; border: 1.5px solid var(--b1);
  background: var(--surf); color: var(--t2); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all .15s;
}
.pv-svc-filter-btn:hover  { border-color: var(--g700); color: var(--g700); background: var(--g50); }
.pv-svc-filter-btn.active { border-color: var(--g900); background: var(--g900); color: #fff; }

/* ═══════════════════════════════════════════════════════
   GUARANTEE STRIP, TESTIMONIAL, FAQ, SERVICES NOTE
   ═══════════════════════════════════════════════════════ */

/* ── Guarantee strip ─────────────────────────────────── */
.pv-guarantee-strip {
  background: var(--g950);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px clamp(20px,5vw,60px);
}
.pv-guarantee-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.pv-gtag {
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,.3);
  text-transform: uppercase; letter-spacing: .1em; flex-shrink: 0;
  white-space: nowrap; padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.pv-gitems {
  display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: center;
}
.pv-gitems span {
  font-size: 12px; color: rgba(255,255,255,.5); font-weight: 600;
  white-space: nowrap;
}

/* ── Services note ───────────────────────────────────── */
.pv-services-note {
  margin-top: 28px; padding: 16px 22px;
  background: var(--g50); border: 1px solid var(--b1); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.pv-services-note span { font-size: 14px; color: var(--t2); font-weight: 600; }
.pv-services-note a {
  font-size: 13px; font-weight: 800; color: var(--g700); text-decoration: none;
  white-space: nowrap; transition: color var(--t-fast);
}
.pv-services-note a:hover { color: var(--g900); }

/* ── Testimonial ─────────────────────────────────────── */
.pv-testimonial-section {
  background: var(--g950);
  padding: 72px clamp(20px,5vw,80px);
}
.pv-testimonial-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.pv-quote-mark {
  font-size: 72px; line-height: 1; color: rgba(255,255,255,.08);
  font-family: Georgia, serif; margin-bottom: -16px;
}
.pv-quote {
  font-size: clamp(17px,2.5vw,22px); color: rgba(255,255,255,.8);
  line-height: 1.6; font-style: italic; font-weight: 500;
  margin: 0 0 32px; letter-spacing: -.01em;
}
.pv-quote-author {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: 8px 20px 8px 8px;
}
.pv-quote-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--g700); color: #fff; display: grid; place-items: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.pv-quote-author strong { display: block; font-size: 14px; color: #fff; font-weight: 800; }
.pv-quote-author span { display: block; font-size: 11px; color: rgba(255,255,255,.4); font-weight: 600; }
.pv-stars { font-size: 14px; color: var(--gold); margin-left: 4px; letter-spacing: 1px; }

/* ── FAQ ─────────────────────────────────────────────── */
.pv-faq-layout {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start;
}
.pv-faq-head h2 { margin-bottom: 12px; }
.pv-faq-head p { font-size: 15px; margin-bottom: 24px; }
.pv-faq-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 800; color: var(--g700); text-decoration: none;
  transition: color var(--t-fast), gap var(--t-fast);
}
.pv-faq-cta:hover { color: var(--g900); gap: 8px; }
.pv-faq { display: flex; flex-direction: column; gap: 8px; }
.pv-faq-item {
  background: var(--surf); border: 1px solid var(--b1); border-radius: var(--r-lg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.pv-faq-item[open] { border-color: var(--g700); box-shadow: 0 0 0 3px rgba(47,104,64,.06); }
.pv-faq-item summary {
  padding: 18px 48px 18px 20px; cursor: pointer; list-style: none; user-select: none;
  font-weight: 700; font-size: 15px; color: var(--t1); position: relative;
}
.pv-faq-item summary::-webkit-details-marker { display: none; }
.pv-faq-item summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%; background: var(--g50);
  color: var(--g700); display: grid; place-items: center;
  font-size: 16px; font-weight: 700; line-height: 1;
}
.pv-faq-item[open] summary::after { content: "−"; background: var(--g700); color: #fff; }
.pv-faq-item p {
  padding: 0 20px 18px; font-size: 14px; color: var(--t2); line-height: 1.7; margin: 0;
  border-top: 1px solid var(--b1); padding-top: 14px;
}

/* ── FAQ responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .pv-faq-layout { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 760px) {
  .pv-guarantee-strip { padding: 12px 16px; }
  .pv-gtag { display: none; }
  .pv-gitems { gap: 6px 14px; }
  .pv-gitems span { font-size: 11px; }
  .pv-services-note { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pv-testimonial-section { padding: 48px clamp(16px,4vw,32px); }
  .pv-quote { font-size: 16px; }
  .pv-faq-item summary { font-size: 14px; padding: 16px 44px 16px 16px; }
}
