/* ============================================================
   Upgrade Detailing – Dark Premium (Apple-inspired, rounded)
   ============================================================ */
:root{
  --bg:#0a0b0d;
  --bg-2:#0e1013;
  --surface:#14171b;
  --surface-2:#191d22;
  --surface-3:#1f242a;
  --line:rgba(255,255,255,0.08);
  --line-strong:rgba(255,255,255,0.14);
  --text:#f5f5f7;
  --text-muted:#9aa1ab;
  --text-dim:#6b727c;
  --accent:#37a6e6;
  --accent-2:#5bc0f5;
  --accent-deep:#123246;
  --accent-soft:rgba(55,166,230,0.12);
  --brass:#d8b34a;
  --booked:#2a1d1f;
  --booked-line:rgba(201,120,120,0.35);
  --booked-text:#d69a9a;
  --ok:#37b87d;

  --r-xs:10px;
  --r-sm:14px;
  --r:20px;
  --r-lg:28px;
  --r-xl:36px;
  --pill:999px;

  --shadow-sm:0 4px 16px rgba(0,0,0,0.35);
  --shadow:0 18px 50px -18px rgba(0,0,0,0.65);
  --shadow-lg:0 40px 90px -30px rgba(0,0,0,0.75);

  --maxw:1120px;
  --ease:cubic-bezier(0.22,0.61,0.36,1);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%;}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Manrope','Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  line-height:1.55;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
h1,h2,h3,h4{
  font-family:'Manrope',-apple-system,BlinkMacSystemFont,sans-serif;
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1.05;
}
.mono{font-variant-numeric:tabular-nums; letter-spacing:-0.01em;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
:focus-visible{outline:2px solid var(--accent); outline-offset:3px; border-radius:6px;}
img{max-width:100%;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

/* ---------- NAV ---------- */
header.site-header{
  position:fixed; top:0; left:0; right:0; z-index:50;
  background:rgba(10,11,13,0.7);
  backdrop-filter:saturate(180%) blur(20px);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; padding:12px 24px; max-width:var(--maxw); margin:0 auto;
}
.nav .logo{display:flex; align-items:center; line-height:0;}
.nav .logo img{height:46px; width:auto; display:block;}
.nav ul{display:flex; gap:6px; list-style:none;}
.nav ul a{
  font-size:14px; font-weight:500; color:var(--text-muted);
  padding:9px 16px; border-radius:var(--pill);
  transition:color .25s var(--ease), background .25s var(--ease);
}
.nav ul a:hover{color:var(--text); background:var(--surface-2);}
.nav ul a.active{color:var(--text); background:var(--surface-2);}
.nav-cta{
  font-size:14px; font-weight:600; padding:10px 20px;
  border-radius:var(--pill);
  background:linear-gradient(180deg,var(--accent-2),var(--accent));
  color:#04121c; box-shadow:0 6px 18px -6px rgba(55,166,230,0.6);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space:nowrap;
}
.nav-cta:hover{transform:translateY(-1px); box-shadow:0 10px 26px -6px rgba(55,166,230,0.7);}
.nav-toggle{display:none; background:none; border:none; cursor:pointer; padding:10px; flex-direction:column; gap:5px; border-radius:12px;}
.nav-toggle span{display:block; width:22px; height:2px; background:var(--text); border-radius:2px;}
@media (max-width:860px){
  .nav ul{
    position:absolute; top:calc(100% + 8px); left:16px; right:16px;
    flex-direction:column; gap:2px;
    background:rgba(16,18,21,0.96); backdrop-filter:blur(20px);
    border:1px solid var(--line); border-radius:var(--r);
    padding:10px; display:none; box-shadow:var(--shadow);
  }
  .nav ul.open{display:flex;}
  .nav ul li{width:100%;}
  .nav ul a{display:block; padding:14px 16px; border-radius:var(--r-xs);}
  .nav-toggle{display:flex;}
}

/* ---------- BUTTONS ---------- */
.btn-primary,.btn-secondary{
  padding:15px 30px; font-size:15px; font-weight:600;
  border-radius:var(--pill); display:inline-flex; align-items:center; gap:9px;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  cursor:pointer; border:none; font-family:inherit;
}
.btn-primary{
  background:linear-gradient(180deg,var(--accent-2),var(--accent));
  color:#04121c; box-shadow:0 10px 30px -10px rgba(55,166,230,0.65);
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 16px 40px -12px rgba(55,166,230,0.8);}
.btn-secondary{
  background:var(--surface-2); color:var(--text); border:1px solid var(--line-strong);
}
.btn-secondary:hover{background:var(--surface-3); transform:translateY(-2px);}
.btn-primary:disabled{opacity:.5; cursor:not-allowed; transform:none; box-shadow:none;}

/* ---------- HERO ---------- */
.hero{
  position:relative; min-height:100vh;
  display:flex; flex-direction:column; justify-content:center;
  padding:120px 0 60px; overflow:hidden;
  background:
    radial-gradient(ellipse 70% 55% at 78% 8%, rgba(55,166,230,0.20), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(55,166,230,0.08), transparent 60%),
    linear-gradient(180deg,var(--bg),var(--bg-2));
}
.hero-grid{
  position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(circle at 80% 12%, rgba(91,192,245,0.10), transparent 45%);
  filter:blur(20px);
}
.hero-inner{position:relative; z-index:2;}
.hero-logo{
  width:auto; max-width:300px; height:auto; margin-bottom:30px;
  filter:drop-shadow(0 20px 50px rgba(55,166,230,0.28));
  animation:logoIn 1.1s var(--ease) both;
}
@keyframes logoIn{from{opacity:0; transform:translateY(-10px) scale(0.96);} to{opacity:1; transform:translateY(0) scale(1);}}
@media (max-width:640px){.hero-logo{max-width:220px; margin-bottom:22px;}}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:0.01em;
  color:var(--accent-2);
  background:var(--accent-soft); border:1px solid rgba(55,166,230,0.22);
  padding:7px 15px; border-radius:var(--pill); margin-bottom:22px;
}
.hero h1{font-size:clamp(44px,8vw,92px); font-weight:800; line-height:1.0; margin-bottom:24px; letter-spacing:-0.04em;}
.hero h1 .shine{
  background:linear-gradient(100deg,var(--text) 25%,var(--accent-2) 48%,#eaf6ff 52%,var(--accent) 60%,var(--text) 78%);
  background-size:300% 100%;
  -webkit-background-clip:text; background-clip:text; color:transparent;
  animation:sweep 7s ease-in-out infinite;
}
@keyframes sweep{0%{background-position:100% 0;}50%{background-position:0 0;}100%{background-position:100% 0;}}
.hero p.lede{max-width:540px; color:var(--text-muted); font-size:19px; line-height:1.6; margin-bottom:38px;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:60px;}
.hero-strip{display:flex; gap:14px; flex-wrap:wrap;}
.hero-strip div{
  flex:1; min-width:150px; padding:20px 22px;
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--r); backdrop-filter:blur(6px);
}
.hero-strip .num{color:var(--accent-2); font-size:20px; font-weight:800; letter-spacing:-0.02em;}
.hero-strip .lbl{color:var(--text-muted); font-size:14px; margin-top:4px;}

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero{
  padding:160px 0 70px;
  background:
    radial-gradient(ellipse 60% 60% at 88% 0%, rgba(55,166,230,0.16), transparent 60%),
    linear-gradient(180deg,var(--bg),var(--bg-2));
}
.page-hero h1{font-size:clamp(38px,6vw,66px); font-weight:800; line-height:1.02;}
.page-hero p{color:var(--text-muted); font-size:18px; max-width:600px; margin-top:20px; line-height:1.6;}

/* ---------- SECTIONS ---------- */
section{padding:96px 0;}
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:28px; margin-bottom:48px; flex-wrap:wrap;
}
.section-head .tag{
  display:inline-block; font-size:13px; font-weight:600; color:var(--accent-2);
  background:var(--accent-soft); border:1px solid rgba(55,166,230,0.22);
  padding:6px 14px; border-radius:var(--pill); margin-bottom:16px;
}
.section-head h2{font-size:clamp(30px,4.4vw,48px); font-weight:800;}
.section-head p{color:var(--text-muted); max-width:380px; font-size:16px; line-height:1.6;}

.reveal{opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- TIER STACK ---------- */
.stack{display:flex; flex-direction:column; gap:16px;}
.tier{
  position:relative; border:1px solid var(--line); background:var(--surface);
  padding:34px 36px; display:grid; grid-template-columns:1fr auto; gap:24px;
  border-radius:var(--r-lg); transition:transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.tier:hover{transform:translateY(-3px); border-color:var(--line-strong); box-shadow:var(--shadow);}
.tier-head{display:flex; align-items:center; gap:14px; margin-bottom:18px; flex-wrap:wrap;}
.tier-head h3{font-size:25px; font-weight:800;}
.includes{
  font-size:12px; font-weight:600; color:var(--accent-2);
  background:var(--accent-soft); border:1px solid rgba(55,166,230,0.22);
  padding:5px 12px; border-radius:var(--pill);
}
.tier ul{list-style:none; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:11px 26px;}
.tier ul li{font-size:15px; color:var(--text-muted); padding-left:24px; position:relative;}
.tier ul li::before{
  content:''; position:absolute; left:0; top:7px; width:14px; height:14px;
  background:var(--accent-soft); border:1px solid rgba(55,166,230,0.35); border-radius:50%;
}
.tier ul li::after{content:''; position:absolute; left:5px; top:11px; width:4px; height:4px; background:var(--accent); border-radius:50%;}
.tier-price{text-align:right; white-space:nowrap; display:flex; flex-direction:column; justify-content:center;}
.tier-price .ab{font-size:12px; color:var(--text-dim); font-weight:600; margin-bottom:2px;}
.tier-price .amount{font-size:38px; font-weight:800; color:var(--text); letter-spacing:-0.03em;}
@media (max-width:640px){
  .tier{grid-template-columns:1fr; padding:28px 24px;}
  .tier-price{text-align:left; flex-direction:row; align-items:baseline; gap:8px;}
  .tier ul{grid-template-columns:1fr;}
}

/* ---------- CARE GRID (cards with gaps) ---------- */
.care-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:16px;}
@media (max-width:720px){.care-grid{grid-template-columns:1fr;}}
.care-card{
  background:var(--surface); padding:34px; position:relative; overflow:hidden;
  border:1px solid var(--line); border-radius:var(--r-lg);
  transition:transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.care-card:hover{transform:translateY(-3px); border-color:var(--line-strong); box-shadow:var(--shadow);}
.care-card .sweep{
  position:absolute; inset:0; border-radius:inherit;
  background:linear-gradient(115deg,transparent 40%,rgba(55,166,230,0.14) 50%,transparent 60%);
  transform:translateX(-120%); transition:transform 1s var(--ease); pointer-events:none;
}
.care-card:hover .sweep{transform:translateX(120%);}
.care-card .tag-row{display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:22px; gap:16px;}
.care-card h3{font-size:22px; font-weight:800; max-width:220px; line-height:1.15;}
.care-card .amount{font-size:22px; font-weight:800; color:var(--accent-2); white-space:nowrap; letter-spacing:-0.02em;}
.care-card ul{list-style:none;}
.care-card ul li{font-size:15px; color:var(--text-muted); padding:10px 0; border-top:1px solid var(--line);}
.care-card ul li:first-child{border-top:none;}
.care-card.brass{border-color:rgba(216,179,74,0.22);}
.care-card.brass .amount{color:var(--brass);}
.care-card.brass .sweep{background:linear-gradient(115deg,transparent 40%,rgba(216,179,74,0.14) 50%,transparent 60%);}

/* ---------- TEASERS (home) ---------- */
.teasers{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
@media (max-width:820px){.teasers{grid-template-columns:1fr;}}
.teaser{
  background:var(--surface); padding:32px; border:1px solid var(--line); border-radius:var(--r-lg);
  transition:transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.teaser:hover{transform:translateY(-4px); border-color:var(--line-strong); box-shadow:var(--shadow);}
.teaser .n{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:14px;
  background:var(--accent-soft); border:1px solid rgba(55,166,230,0.22);
  color:var(--accent-2); font-weight:800; font-size:15px; margin-bottom:20px;
}
.teaser h3{font-size:21px; font-weight:800; margin-bottom:10px;}
.teaser p{color:var(--text-muted); font-size:15px; margin-bottom:18px; line-height:1.6;}
.teaser .price{color:var(--text); font-size:16px; font-weight:700; display:block; margin-bottom:16px;}
.teaser a.more{font-size:14px; font-weight:600; color:var(--accent-2); transition:gap .2s;}
.teaser a.more:hover{color:var(--accent);}

/* ---------- WOHNMOBIL BANNER ---------- */
.rv{
  background:
    radial-gradient(ellipse 70% 90% at 15% 50%, rgba(55,166,230,0.14), transparent 65%),
    linear-gradient(120deg,#0f1922 0%,var(--bg-2) 70%);
  padding:100px 0;
}
.rv-inner{display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;}
@media (max-width:820px){.rv-inner{grid-template-columns:1fr;}}
.rv h2{font-size:clamp(30px,4.4vw,46px); margin-bottom:18px; font-weight:800;}
.rv p{color:var(--text-muted); font-size:16px; max-width:460px; margin-bottom:28px; line-height:1.6;}
.rv-tags{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:34px;}
.rv-tags span{
  font-size:13px; font-weight:500; border:1px solid var(--line-strong);
  background:var(--surface); padding:8px 15px; color:var(--text-muted); border-radius:var(--pill);
}
.rv-price{
  border:1px solid var(--line-strong); padding:38px; border-radius:var(--r-xl);
  background:rgba(10,11,13,0.55); backdrop-filter:blur(10px); box-shadow:var(--shadow);
}
.rv-price .ab{font-size:13px; color:var(--text-dim); font-weight:600; display:block; margin-bottom:4px;}
.rv-price .amount{font-size:52px; font-weight:800; margin-bottom:22px; letter-spacing:-0.03em;}
.rv-price ul{list-style:none; margin-bottom:28px;}
.rv-price ul li{font-size:15px; color:var(--text-muted); padding:11px 0; border-top:1px solid var(--line);}
.rv-price ul li:first-child{border-top:none;}

/* ---------- CTA BAND ---------- */
.cta-band{
  text-align:center; padding:100px 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(55,166,230,0.12), transparent 65%),
    var(--bg-2);
}
.cta-band h2{font-size:clamp(30px,4.4vw,50px); font-weight:800; margin-bottom:16px;}
.cta-band p{color:var(--text-muted); max-width:520px; margin:0 auto 32px; font-size:17px; line-height:1.6;}

/* ---------- CONTACT / INFO ---------- */
.contact-inner{display:grid; grid-template-columns:1.2fr 1fr; gap:40px;}
@media (max-width:820px){.contact-inner{grid-template-columns:1fr; gap:28px;}}
.info-block{border:1px solid var(--line); padding:36px; border-radius:var(--r-lg); background:var(--surface);}
.info-row{display:flex; justify-content:space-between; padding:18px 0; border-top:1px solid var(--line); font-size:15px; gap:16px;}
.info-row:first-child{border-top:none; padding-top:0;}
.info-row .k{color:var(--text-dim); font-weight:600; font-size:13px;}
.info-row .v{text-align:right; color:var(--text);}
.info-row a.v:hover{color:var(--accent-2);}

/* ---------- FORMS ---------- */
.field{display:flex; flex-direction:column; gap:9px; margin-bottom:18px;}
.field label{font-size:13px; font-weight:600; color:var(--text-muted);}
.field input,.field select,.field textarea{
  background:var(--surface-2); border:1px solid var(--line); color:var(--text);
  font-family:inherit; font-size:15px; padding:14px 16px; border-radius:var(--r-sm);
  transition:border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus,.field select:focus,.field textarea:focus{outline:none; border-color:var(--accent); background:var(--surface-3);}
.field input::placeholder,.field textarea::placeholder{color:var(--text-dim);}
.field textarea{resize:vertical; min-height:110px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:520px){.form-row{grid-template-columns:1fr;}}
.form-box{border:1px solid var(--line); background:var(--surface); padding:34px; border-radius:var(--r-lg);}

/* ---------- LEGAL PAGES ---------- */
.legal{max-width:780px; padding:150px 0 90px;}
.legal h1{font-size:clamp(32px,5vw,48px); margin-bottom:30px;}
.legal h2{font-size:21px; font-weight:700; margin:38px 0 14px; letter-spacing:-0.02em;}
.legal p,.legal li{color:var(--text-muted); font-size:16px; margin-bottom:12px; line-height:1.75;}
.legal ul{padding-left:22px; margin-bottom:16px;}
.legal a{color:var(--accent-2);}
.legal .block{border:1px solid var(--line); background:var(--surface); padding:26px 30px; border-radius:var(--r); margin:22px 0;}

/* ---------- BOOKING ---------- */
.legend{display:flex; gap:20px; flex-wrap:wrap; margin:22px 0 6px; font-size:13px; color:var(--text-muted);}
.legend span{display:inline-flex; align-items:center; gap:8px;}
.dot{width:12px; height:12px; border:1px solid var(--line); display:inline-block; border-radius:5px;}
.dot.free{background:var(--surface-2); border-color:rgba(55,166,230,0.4);}
.dot.sel{background:var(--accent); border-color:var(--accent);}
.dot.bk{background:var(--booked); border-color:var(--booked-line);}
.days{display:flex; gap:12px; overflow-x:auto; padding-bottom:12px; margin:10px 0 24px; scrollbar-width:thin;}
.day{
  flex:0 0 auto; min-width:88px; border:1px solid var(--line); background:var(--surface);
  padding:16px 14px; cursor:pointer; text-align:center; border-radius:var(--r);
  transition:border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.day:hover{border-color:var(--line-strong); transform:translateY(-2px);}
.day.active{border-color:var(--accent); background:var(--accent-soft); box-shadow:0 8px 24px -10px rgba(55,166,230,0.5);}
.day .dow{font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:0.04em; color:var(--text-dim);}
.day .dnum{font-size:26px; font-weight:800; margin:4px 0; letter-spacing:-0.02em;}
.day .mon{font-size:12px; color:var(--text-muted);}
.slots-head{font-size:15px; font-weight:600; color:var(--text); margin-bottom:14px;}
.slots{display:grid; grid-template-columns:repeat(auto-fill,minmax(122px,1fr)); gap:12px;}
.slot{
  border:1px solid var(--line); background:var(--surface-2); color:var(--text);
  padding:16px 12px; text-align:center; cursor:pointer; font-size:16px; font-weight:700;
  border-radius:var(--r-sm); letter-spacing:-0.01em;
  transition:transform .2s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.slot:hover{transform:translateY(-2px); border-color:var(--accent); background:var(--surface-3);}
.slot.sel{background:linear-gradient(180deg,var(--accent-2),var(--accent)); color:#04121c; border-color:var(--accent); box-shadow:0 10px 26px -10px rgba(55,166,230,0.6);}
.slot.booked{background:var(--booked); border-color:var(--booked-line); color:var(--booked-text); cursor:not-allowed; text-decoration:line-through; opacity:.7;}
.slot.booked:hover{transform:none;}
.slot small{display:block; font-size:11px; font-weight:500; text-transform:none; letter-spacing:0; margin-top:5px; opacity:.85;}
.panel{border:1px solid var(--line); background:var(--surface); margin-top:28px; padding:32px; border-radius:var(--r-lg); box-shadow:var(--shadow);}
.panel.hidden{display:none;}
.panel h3{font-size:20px; font-weight:800; margin-bottom:6px;}
.panel .chosen{color:var(--accent-2); font-size:15px; font-weight:600; margin-bottom:22px;}
.actions{display:flex; gap:12px; margin-top:8px; flex-wrap:wrap;}
.status{font-size:14px; color:var(--text-muted); padding:12px 0; min-height:22px;}
.status.err{color:var(--booked-text);} .status.ok{color:var(--ok);}
.done{border:1px solid rgba(55,184,125,0.35); background:rgba(55,184,125,0.08); padding:34px; margin-top:28px; text-align:center; border-radius:var(--r-lg);}
.done.hidden{display:none;}
.done h3{color:var(--ok); font-size:22px; margin-bottom:10px;}
.done .ref{font-size:26px; font-weight:800; color:var(--text); margin:12px 0; letter-spacing:0.02em;}
.done p{color:var(--text-muted); font-size:15px; line-height:1.6;}
.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:44px;}
@media (max-width:720px){.steps{grid-template-columns:1fr;}}
.step{background:var(--surface); padding:28px; border:1px solid var(--line); border-radius:var(--r-lg);}
.step .num{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:12px;
  background:var(--accent-soft); border:1px solid rgba(55,166,230,0.22);
  color:var(--accent-2); font-size:17px; font-weight:800; margin-bottom:14px;
}
.step h4{font-size:16px; font-weight:700; margin-bottom:6px; letter-spacing:-0.02em;}
.step p{color:var(--text-muted); font-size:14px; line-height:1.55;}

/* ---------- FOOTER ---------- */
footer.site-footer{border-top:1px solid var(--line); padding:64px 0 36px; background:var(--bg-2);}
.footer-top{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:44px; margin-bottom:44px;}
@media (max-width:720px){.footer-top{grid-template-columns:1fr; gap:32px;}}
.footer-brand img{height:58px; width:auto; display:block; margin-bottom:18px;}
.footer-brand p{color:var(--text-muted); font-size:15px; max-width:320px; line-height:1.6;}
.footer-col h4{font-size:13px; font-weight:700; color:var(--text-dim); margin-bottom:16px; letter-spacing:0.02em;}
.footer-col ul{list-style:none;}
.footer-col ul li{margin-bottom:11px;}
.footer-col ul a{font-size:15px; color:var(--text-muted); transition:color .2s;}
.footer-col ul a:hover{color:var(--accent-2);}
.footer-bottom{border-top:1px solid var(--line); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color:var(--text-dim);}
.footer-bottom a:hover{color:var(--text);}
