:root{
  --bg:#FAF7F2;
  --surface:#FFFFFF;
  --surface-2:#F0EAE0;
  --text:#1B1720;
  --text-muted:#6B6273;
  --accent:#D9481C;
  --accent-2:#B5791A;
  --line:rgba(27,23,32,0.10);
  --glow: rgba(217,72,28,0.18);
  --on-accent:#FFF8F0;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#0C0B10;
    --surface:#161319;
    --surface-2:#1E1A22;
    --text:#F6F1E9;
    --text-muted:#A79FAE;
    --accent:#FF5A2E;
    --accent-2:#FFB84D;
    --line:rgba(246,241,233,0.10);
    --glow: rgba(255,90,46,0.25);
    --on-accent:#180A04;
  }
}
:root[data-theme="dark"]{
  --bg:#0C0B10;
  --surface:#161319;
  --surface-2:#1E1A22;
  --text:#F6F1E9;
  --text-muted:#A79FAE;
  --accent:#FF5A2E;
  --accent-2:#FFB84D;
  --line:rgba(246,241,233,0.10);
  --glow: rgba(255,90,46,0.25);
  --on-accent:#180A04;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Fraunces', Georgia, serif;
  font-weight:600;
  text-wrap:balance;
  margin:0;
  letter-spacing:-0.01em;
}
p{margin:0;}
a{color:inherit; text-decoration:none;}
img,svg{max-width:100%; display:block;}
::selection{background:var(--accent); color:var(--on-accent);}

.wrap{max-width:1180px; margin:0 auto; padding:0 28px;}
.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.eyebrow::before{content:""; width:16px; height:1px; background:var(--accent);}

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:100;
  background:color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}
.logo{
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:21px;
  letter-spacing:-0.01em;
  display:flex; align-items:center; gap:10px;
}
.logo .mark{
  width:28px; height:28px;
  border-radius:7px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  position:relative;
  flex-shrink:0;
}
.logo .mark::after{
  content:"";
  position:absolute; inset:7px;
  background:var(--bg);
  clip-path:polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.navlinks{display:flex; gap:34px; align-items:center;}
.navlinks a{
  background:none; border:none; cursor:pointer;
  font-family:'Work Sans', sans-serif; font-size:14.5px; font-weight:500;
  color:var(--text-muted);
  padding:6px 0; position:relative;
  display:inline-block;
}
.navlinks a::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px;
  background:var(--accent); transform:scaleX(0); transform-origin:left;
  transition:transform .3s cubic-bezier(.4,0,.2,1);
}
.navlinks a:hover{color:var(--text);}
.navlinks a:hover::after, .navlinks a.active::after{transform:scaleX(1);}
.navlinks a.active{color:var(--text);}
.navcta{
  font-size:14px; font-weight:600;
  padding:11px 20px; border-radius:8px;
  background:var(--text); color:var(--bg);
  border:none; cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
  display:inline-block;
}
.navcta:hover{transform:translateY(-1px); box-shadow:0 8px 20px var(--glow);}
.burger{display:none; background:none; border:none; color:var(--text); cursor:pointer; font-size:18px;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Work Sans', sans-serif; font-weight:600; font-size:15px;
  padding:14px 26px; border-radius:9px; cursor:pointer; border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary{background:linear-gradient(135deg, var(--accent), var(--accent-2)); color:var(--on-accent);}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 14px 30px var(--glow);}
.btn-ghost{background:transparent; border-color:var(--line); color:var(--text);}
.btn-ghost:hover{border-color:var(--accent); color:var(--accent);}

/* ---------- Sections generic ---------- */
section{padding:108px 0;}
.section-head{max-width:640px; margin-bottom:56px;}
.section-head h2{font-size:clamp(28px,4vw,42px); margin-top:14px;}
.section-head p{color:var(--text-muted); margin-top:16px; font-size:17px;}

.reveal{opacity:0; transform:translateY(28px); transition:opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- Page header (Ablauf / Über uns / Preise / Kontakt) ---------- */
.page-hero{padding:64px 0 20px; border-bottom:1px solid var(--line); margin-bottom:8px;}
.page-hero h1{font-size:clamp(32px,4.5vw,48px); margin-top:14px;}
.page-hero p{color:var(--text-muted); margin-top:16px; font-size:17px; max-width:640px;}

/* ---------- Hero (Startseite) ---------- */
.hero{
  position:relative;
  padding:96px 0 120px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
#ember-canvas{position:absolute; inset:0; z-index:0; opacity:.55;}
.hero-glow{
  position:absolute; top:-220px; right:-160px; width:640px; height:640px; border-radius:50%;
  background:radial-gradient(circle, var(--glow), transparent 70%);
  filter:blur(10px); z-index:0; pointer-events:none;
}
.hero-inner{position:relative; z-index:1; display:grid; grid-template-columns:1.15fr .85fr; gap:60px; align-items:center;}
.hero h1{
  font-size:clamp(38px, 5.4vw, 66px);
  line-height:1.04;
  margin-top:22px;
}
.hero h1 em{
  font-style:normal;
  background:linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-badges{display:flex; gap:12px; margin-top:20px; flex-wrap:wrap;}
.hero-badges span{
  display:inline-flex; align-items:center; gap:7px;
  font-family:'Work Sans', sans-serif; font-weight:600; font-size:13.5px;
  padding:9px 16px; border-radius:20px;
  background:color-mix(in srgb, var(--accent) 10%, var(--surface));
  border:1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  color:var(--text);
}
.hero-badges span .dot{width:7px; height:7px; border-radius:50%; background:linear-gradient(135deg, var(--accent), var(--accent-2)); flex-shrink:0;}

.hero p.lead{
  margin-top:20px; font-size:18.5px; color:var(--text-muted); max-width:520px;
}
.hero-actions{display:flex; gap:16px; margin-top:38px; flex-wrap:wrap;}
.hero-meta{
  display:flex; gap:28px; margin-top:56px; flex-wrap:wrap;
}
.hero-meta div{display:flex; flex-direction:column; gap:4px;}
.hero-meta .num{font-family:'Fraunces', serif; font-size:26px; font-weight:600;}
.hero-meta .lbl{font-size:13px; color:var(--text-muted);}

.hero-card{
  position:relative;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px;
  box-shadow:0 30px 60px -30px rgba(0,0,0,.25);
}
.hero-card .browser-dots{display:flex; gap:6px; margin-bottom:20px;}
.hero-card .browser-dots.dots span{width:9px; height:9px; border-radius:50%; background:var(--line);}
.hero-card .sketch-line{
  height:11px; border-radius:5px; background:var(--surface-2); margin-bottom:12px;
  position:relative; overflow:hidden;
}
.hero-card .sketch-line::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 35%, transparent), transparent);
  transform:translateX(-100%);
  animation:shimmer 2.8s ease-in-out infinite;
}
.hero-card .sketch-line:nth-child(2){width:78%; animation-delay:.15s;}
.hero-card .sketch-line:nth-child(3){width:92%;}
.hero-card .sketch-line:nth-child(4){width:60%;}
.hero-card .sketch-block{
  height:120px; border-radius:10px; margin-top:18px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity:.9;
}
@keyframes shimmer{0%{transform:translateX(-100%);} 60%,100%{transform:translateX(120%);}}

/* ---------- Hero example preview (echtes Sivante-Projekt) ---------- */
.hero-card.example-card{overflow:hidden;}
.hero-card.example-card::before{
  content:"BEISPIELPROJEKT";
  position:absolute; top:0; right:0;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:var(--on-accent); font-family:'IBM Plex Mono', monospace;
  font-size:10.5px; font-weight:700; letter-spacing:.08em;
  padding:7px 16px; border-radius:0 18px 0 14px;
}
.hero-card .browser-dots .browser-url{
  font-family:'IBM Plex Mono', monospace; font-size:11px;
  color:var(--text-muted); background:var(--surface-2);
  padding:3px 10px; border-radius:20px;
}
.example-preview{
  background:#0a0a10; border-radius:12px; padding:24px 20px;
  border:1px solid rgba(255,255,255,.06);
}
.example-preview .chip{
  display:inline-block; font-family:'IBM Plex Mono', monospace; font-size:11px;
  color:#7dd3c0; background:rgba(125,211,192,.1); border:1px solid rgba(125,211,192,.25);
  padding:5px 12px; border-radius:20px; margin-bottom:16px;
}
.example-preview h4{
  font-family:'Fraunces', serif; font-weight:600; font-size:19.5px; line-height:1.32; color:#f4f4f6;
}
.example-preview h4 em{
  font-style:normal;
  background:linear-gradient(90deg,#a78bfa,#7dd3c0);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.example-preview p{ color:#9a9aa5; font-size:13.5px; margin-top:10px; line-height:1.5; }
.example-btns{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap;}
.example-btn{ font-family:'Work Sans', sans-serif; font-size:12.5px; font-weight:600; padding:9px 16px; border-radius:8px; }
.example-btn.primary{ background:linear-gradient(135deg,#a78bfa,#7c6cf0); color:#fff; }
.example-btn.ghost{ background:transparent; border:1px solid rgba(255,255,255,.15); color:#d5d5da; }
.example-link-row{
  margin-top:18px; font-family:'Work Sans', sans-serif; font-size:13px; font-weight:600;
  color:var(--text-muted);
}
.example-link{
  color:var(--accent); text-decoration:none; margin-left:4px;
}
.example-link:hover{ text-decoration:underline; }

/* ---------- Highlight box (USP / Abo) ---------- */
.highlight-box{
  background:linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, var(--surface)), var(--surface));
  border:1px solid var(--accent);
  border-radius:18px;
  padding:40px;
  position:relative;
  overflow:hidden;
}
.highlight-box.badge::before{
  content:"KOSTENLOS"; position:absolute; top:0; right:0;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:var(--on-accent); font-family:'IBM Plex Mono', monospace; font-size:11px; font-weight:700;
  letter-spacing:.08em; padding:7px 16px; border-radius:0 0 0 14px;
}
.highlight-box h2{font-size:clamp(26px,3.5vw,36px);}
.highlight-steps{display:flex; gap:20px; margin-top:28px; flex-wrap:wrap;}
.highlight-steps div{flex:1; min-width:180px;}
.highlight-steps .n{font-family:'IBM Plex Mono', monospace; color:var(--accent); font-size:13px; font-weight:600;}
.highlight-steps p{margin-top:6px; font-size:14.5px; color:var(--text-muted);}
.abo-price{font-family:'Fraunces', serif; font-size:32px; font-weight:600;}
.abo-price span{font-family:'Work Sans', sans-serif; font-size:14px; font-weight:500; color:var(--text-muted);}

/* ---------- Logos strip ---------- */
.strip{
  border-bottom:1px solid var(--line);
  padding:28px 0;
}
.strip .wrap{display:flex; align-items:center; gap:36px; flex-wrap:wrap; justify-content:space-between;}
.strip span{
  font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--text-muted);
  letter-spacing:.05em;
}

/* ---------- Leistungen ---------- */
.segments{display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:56px;}
.segment{
  background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:32px;
  transition:border-color .3s ease, transform .3s ease;
}
.segment:hover{border-color:color-mix(in srgb, var(--accent) 40%, var(--line)); transform:translateY(-3px);}
.segment .tag{
  font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--accent);
}
.segment h3{font-size:24px; margin-top:10px;}
.segment p{color:var(--text-muted); margin-top:12px; font-size:15px;}

.plans{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.plan{
  background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:30px;
  display:flex; flex-direction:column; gap:18px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.plan:hover{transform:translateY(-6px); box-shadow:0 24px 44px -28px rgba(0,0,0,.3);}
.plan.featured{
  border-color:var(--accent);
  background:linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, var(--surface)), var(--surface));
  position:relative;
}
.plan.featured::before{
  content:"Beliebteste Wahl";
  position:absolute; top:-13px; left:30px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:var(--on-accent); font-size:11.5px; font-weight:700;
  padding:5px 12px; border-radius:20px;
  font-family:'Work Sans', sans-serif;
}
.plan h4{font-size:20px;}
.plan .price{font-family:'Fraunces', serif; font-size:32px; font-weight:600;}
.plan .price span{font-family:'Work Sans', sans-serif; font-size:14px; font-weight:500; color:var(--text-muted);}
.plan ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px;}
.plan li{font-size:14.5px; color:var(--text-muted); display:flex; gap:10px; align-items:flex-start;}
.plan li::before{content:"—"; color:var(--accent); flex-shrink:0;}
.plan .for{font-size:13px; color:var(--text-muted);}

/* ---------- Ablauf timeline ---------- */
.timeline{position:relative; margin-top:20px;}
.timeline::before{
  content:""; position:absolute; left:27px; top:10px; bottom:10px; width:1px;
  background:linear-gradient(var(--line), var(--accent), var(--line));
}
.step{display:grid; grid-template-columns:56px 1fr; gap:24px; padding:28px 0;}
.step .idx{
  font-family:'IBM Plex Mono', monospace; font-size:14px; font-weight:500;
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--surface); border:1px solid var(--line);
  position:relative; z-index:1; color:var(--accent);
}
.step-content h4{font-size:20px; display:flex; align-items:center; gap:12px; flex-wrap:wrap;}
.step-content .time{
  font-family:'IBM Plex Mono', monospace; font-size:11.5px; color:var(--text-muted);
  border:1px solid var(--line); padding:3px 9px; border-radius:20px;
}
.step-content p{margin-top:10px; color:var(--text-muted); font-size:15.5px; max-width:640px;}

/* ---------- Über uns ---------- */
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start;}
.about-values{display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:8px;}
.value{padding:22px 0; border-top:1px solid var(--line);}
.value h4{font-size:17px; font-family:'Work Sans', sans-serif; font-weight:600;}
.value p{font-size:14.5px; color:var(--text-muted); margin-top:8px;}
.about-quote{
  font-family:'Fraunces', serif; font-size:26px; line-height:1.4; font-style:normal;
  padding-left:24px; border-left:3px solid var(--accent);
}
.about-quote cite{
  display:block; margin-top:16px; font-family:'IBM Plex Mono', monospace;
  font-size:12.5px; color:var(--text-muted); font-style:normal;
}
.region-badge{
  display:inline-flex; gap:10px; margin-top:28px; flex-wrap:wrap;
}
.region-badge span{
  font-family:'IBM Plex Mono', monospace; font-size:12.5px;
  border:1px solid var(--line); border-radius:20px; padding:6px 14px;
  color:var(--text-muted);
}

/* ---------- Kontakt ---------- */
.contact-wrap{display:grid; grid-template-columns:.9fr 1.1fr; gap:56px;}
.contact-info h3{font-size:24px;}
.contact-info p{color:var(--text-muted); margin-top:14px; font-size:15.5px;}
.contact-list{margin-top:32px; display:flex; flex-direction:column; gap:20px;}
.contact-list .row{display:flex; gap:14px; align-items:flex-start;}
.contact-list .ic{
  width:38px; height:38px; border-radius:9px; background:var(--surface-2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  color:var(--accent); font-family:'IBM Plex Mono', monospace; font-size:15px;
}
.contact-list .row div{font-size:14.5px;}
.contact-list .row strong{display:block; font-size:13px; color:var(--text-muted); font-weight:500; margin-bottom:3px;}

form{
  background:var(--surface); border:1px solid var(--line); border-radius:16px;
  padding:34px; display:flex; flex-direction:column; gap:18px;
}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
label{font-size:13px; font-weight:600; display:block; margin-bottom:7px;}
input, textarea, select{
  width:100%; padding:12px 14px; border-radius:8px;
  border:1px solid var(--line); background:var(--bg); color:var(--text);
  font-family:'Work Sans', sans-serif; font-size:14.5px;
  transition:border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus{
  outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--glow);
}
textarea{resize:vertical; min-height:110px;}
.radio-group{display:flex; gap:10px; flex-wrap:wrap;}
.radio-group label{
  display:flex; align-items:center; gap:8px; font-weight:500; font-size:14px;
  border:1px solid var(--line); padding:10px 16px; border-radius:8px; cursor:pointer;
  margin-bottom:0; transition:border-color .2s ease, background .2s ease;
}
.radio-group input{width:auto;}
.radio-group label:has(input:checked){border-color:var(--accent); background:color-mix(in srgb, var(--accent) 8%, transparent);}
.form-note{font-size:12.5px; color:var(--text-muted);}
.form-status{
  font-size:14px; padding:12px 16px; border-radius:8px; display:none;
}
.form-status.show{display:block;}
.form-status.ok{background:color-mix(in srgb, var(--accent) 12%, transparent); color:var(--accent);}

/* ---------- Vergleichstabelle ---------- */
.table-scroll{overflow-x:auto; border:1px solid var(--line); border-radius:16px; background:var(--surface);}
.compare-table{min-width:560px; width:100%; border-collapse:collapse;}
.compare-table th, .compare-table td{padding:16px 20px; text-align:left; font-size:14.5px; border-top:1px solid var(--line);}
.compare-table thead th{
  border-top:none; font-family:'IBM Plex Mono', monospace; font-size:11.5px; text-transform:uppercase;
  letter-spacing:.06em; color:var(--text-muted); font-weight:600; padding-bottom:14px;
}
.compare-table thead th.col-sivante{color:var(--accent);}
.compare-table td.label{color:var(--text); font-weight:500;}
.compare-table td.center{text-align:center; font-size:17px; font-weight:700;}
.compare-table td.yes{color:var(--accent);}
.compare-table td.no{color:var(--text-muted); opacity:.55;}
.compare-table tbody tr:hover{background:var(--surface-2);}

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:300;
  background:var(--surface); border-top:1px solid var(--line);
  box-shadow:0 -20px 50px -20px rgba(0,0,0,.3);
  padding:22px 0;
  transform:translateY(120%);
  transition:transform .45s cubic-bezier(.16,1,.3,1);
}
.cookie-banner.show{transform:translateY(0);}
.cookie-banner-inner{
  max-width:1180px; margin:0 auto; padding:0 28px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.cookie-text strong{font-family:'Fraunces', serif; font-size:16px; font-weight:600;}
.cookie-text p{margin-top:6px; font-size:13.5px; color:var(--text-muted); max-width:600px;}
.cookie-text a{color:var(--accent); font-weight:600;}
.cookie-actions{display:flex; gap:10px; flex-wrap:wrap;}
.cookie-actions .btn{padding:11px 18px; font-size:13.5px;}

.cookie-cat{padding:16px 0; border-top:1px solid var(--line);}
.cookie-cat:first-child{border-top:none; padding-top:4px;}
.cookie-cat-head{display:flex; align-items:center; justify-content:space-between; gap:16px;}
.cookie-cat-head strong{font-size:14.5px;}
.cookie-cat p{font-size:13px; color:var(--text-muted); margin-top:6px;}
.cookie-toggle{
  width:42px; height:24px; border-radius:20px; background:var(--surface-2); border:1px solid var(--line);
  position:relative; cursor:pointer; padding:0; flex-shrink:0;
}
.cookie-toggle .knob{
  position:absolute; top:2px; left:2px; width:18px; height:18px; border-radius:50%;
  background:var(--text-muted); transition:transform .2s ease, background .2s ease;
}
.cookie-toggle[aria-pressed="true"]{background:color-mix(in srgb, var(--accent) 25%, var(--surface-2)); border-color:var(--accent);}
.cookie-toggle[aria-pressed="true"] .knob{transform:translateX(18px); background:var(--accent);}
.cookie-toggle.disabled{opacity:.7; cursor:not-allowed; background:color-mix(in srgb, var(--accent) 15%, var(--surface-2)); border-color:var(--accent);}
.cookie-toggle.disabled .knob{transform:translateX(18px); background:var(--accent);}

@media (max-width: 700px){
  .cookie-banner-inner{flex-direction:column; align-items:stretch;}
  .cookie-actions{justify-content:stretch;}
  .cookie-actions .btn{flex:1; justify-content:center;}
}

/* ---------- Footer ---------- */
footer{border-top:1px solid var(--line); padding:56px 0 32px;}
.footer-top{display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:40px; padding-bottom:40px;}
.footer-top h4{font-size:13px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-muted); font-family:'Work Sans', sans-serif; font-weight:600; margin-bottom:16px;}
.footer-top ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px;}
.footer-top a{font-size:14.5px; color:var(--text-muted); transition:color .2s ease;}
.footer-top a:hover{color:var(--accent);}
.footer-bottom{
  border-top:1px solid var(--line); padding-top:24px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-bottom span{font-size:13px; color:var(--text-muted);}

section[id]{scroll-margin-top:90px;}

/* ---------- Legal modal ---------- */
.modal-overlay{
  position:fixed; inset:0; z-index:200;
  background:color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter:blur(4px);
  display:none; align-items:flex-start; justify-content:center;
  padding:80px 20px;
  overflow-y:auto;
}
.modal-overlay.open{display:flex;}
.modal-card{
  background:var(--surface); border:1px solid var(--line); border-radius:16px;
  max-width:640px; width:100%; padding:36px 38px 40px;
  box-shadow:0 40px 80px -30px rgba(0,0,0,.4);
  animation:modalIn .25s cubic-bezier(.16,1,.3,1);
}
@keyframes modalIn{from{opacity:0; transform:translateY(14px);} to{opacity:1; transform:translateY(0);}}
.modal-card h3{font-size:24px; margin-bottom:4px;}
.modal-card .modal-close{
  float:right; background:var(--surface-2); border:1px solid var(--line);
  width:34px; height:34px; border-radius:50%; cursor:pointer;
  color:var(--text); font-size:16px; line-height:1;
}
.modal-card .modal-close:hover{border-color:var(--accent); color:var(--accent);}
.modal-body{margin-top:20px; font-size:15px; color:var(--text-muted); line-height:1.7;}
.modal-body p{margin-bottom:14px;}
.modal-body strong{color:var(--text); font-weight:600;}
.modal-body h4{font-family:'Work Sans', sans-serif; font-size:14px; font-weight:600; color:var(--text); margin:22px 0 8px;}

@media (max-width: 880px){
  .navlinks{display:none;}
  .burger{display:block;}
  .hero-inner, .about-grid, .contact-wrap{grid-template-columns:1fr;}
  .segments, .plans, .about-values{grid-template-columns:1fr;}
  .field-row{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr;}
  section{padding:72px 0;}
}
