:root {
  /* Helles App-Design (abgeleitet aus css/app.css der Meistro-App) */
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --card: #ffffff;
  --card-2: #f8fafc;
  --text: #18181b;
  --muted: #52525b;
  --brand: #2563eb;
  --brand-2: #3b82f6;
  --brand-ink: #ffffff;
  --brand-tint: #eff6ff;
  --accent: #16a34a;
  --border: #e4e4e7;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 20px rgba(15,23,42,0.08);
  --shadow-lg: 0 24px 60px rgba(15,23,42,0.14);
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1120px;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-y: scroll; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Icons */
[data-icon] { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
[data-icon] svg { display: block; }

/* ───────────── Header ───────────── */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 10px; background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: var(--brand-ink); font-weight: 800; font-size: 1.05rem;
}
.brand-name { font-size: 1.15rem; letter-spacing: 0.2px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); font-size: 1.08rem; font-weight: 500; transition: color .15s; }
.nav a:hover, .nav a.active { color: var(--brand); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border); color: var(--text);
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
}
.nav-toggle [data-icon] { pointer-events: none; }

/* ───────────── Buttons ───────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 11px; font-weight: 600; font-size: 0.97rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .05s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: var(--brand-ink); box-shadow: 0 2px 8px rgba(37,99,235,0.25); }
.btn-primary:hover { background: #1d4ed8; box-shadow: 0 4px 14px rgba(37,99,235,0.32); }
.btn-ghost { border-color: var(--border); color: var(--text); background: #fff; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-tint); }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }

/* ───────────── Hero ───────────── */
.hero { padding: 100px 0 80px; background: radial-gradient(1100px 480px at 50% -14%, rgba(37,99,235,0.12), transparent 70%); }
.hero-inner { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  padding: 6px 14px; border: 1px solid #dbeafe; border-radius: 999px;
  color: var(--brand); font-size: 0.85rem; font-weight: 600; background: var(--brand-tint);
}
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); line-height: 1.08; margin: 0 0 20px; letter-spacing: -0.5px; }
.hero .lead { font-size: clamp(1.05rem, 2.3vw, 1.32rem); color: var(--muted); max-width: 660px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-visual { margin: 54px auto 0; max-width: 980px; }
.hero-visual .shot-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: #f9fafb;
}
.hero-visual .shot-bar { border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
.hero-visual img { width: 100%; height: auto; display: block; }

/* Page hero (Unterseiten) */
.page-hero { padding: 72px 0 40px; background: radial-gradient(1000px 380px at 50% -22%, rgba(37,99,235,0.10), transparent 70%); text-align: center; }
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 14px 0 14px; letter-spacing: -0.5px; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* ───────────── Statement-Band (prominent) ───────────── */
.band {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 55%, #1e3a8a 100%);
  color: #fff; padding: 76px 0; text-align: center;
}
.band .band-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  padding: 6px 15px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  color: #fff; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.25);
}
.band h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem); line-height: 1.1; letter-spacing: -0.6px;
  margin: 0 auto 20px; max-width: 900px; color: #fff;
}
.band h2 .u { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.5); text-underline-offset: 6px; }
.band h2.band-italic { font-style: italic; }
.band p { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: rgba(255,255,255,0.92); max-width: 760px; margin: 0 auto 30px; }
.band .btn-white { background: #fff; color: #1d4ed8; box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.band .btn-white:hover { background: #f1f5ff; }

/* ───────────── Vorstellung (Person) ───────────── */
.vorstellung {
  display: flex; align-items: center; gap: 28px; justify-content: center;
  max-width: 680px; margin: 0 auto; text-align: left;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 30px; box-shadow: var(--shadow);
}
.vorstellung img { width: 130px; height: auto; border-radius: 14px; border: 1px solid var(--border); box-shadow: var(--shadow-md); flex: none; }
.vorstellung .v-name { font-size: 1.25rem; font-weight: 700; margin: 0 0 6px; }
.vorstellung .v-story { color: var(--muted); margin: 10px 0 0; font-size: 0.95rem; line-height: 1.55; }
.vorstellung .v-bio { color: var(--text); margin: 12px 0 0; font-size: 1rem; font-weight: 500; }
@media (max-width: 600px) { .vorstellung { flex-direction: column; text-align: center; padding: 24px; } }

/* ───────────── Sections ───────────── */
section { scroll-margin-top: 80px; }
.section { padding: 80px 0; border-top: 1px solid var(--border); }
.section.alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 0 0 12px; letter-spacing: -0.3px; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.08rem; }

/* ───────────── Feature-Highlights (Startseite) ───────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); transition: box-shadow .15s, transform .15s, border-color .15s;
}
.feature:hover { border-color: #bfdbfe; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature .ico {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand-tint); color: var(--brand); margin-bottom: 16px;
}
.feature h3 { margin: 0 0 8px; font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* ───────────── Screenshot-Galerie ───────────── */
.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.shot {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s, border-color .15s;
}
.shot:hover { transform: translateY(-3px); border-color: #bfdbfe; box-shadow: var(--shadow-md); }
.shot-frame { background: #f9fafb; padding: 0; }
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #f3f4f6; border-bottom: 1px solid var(--border); }
.shot-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.shot-bar .r { background: #ef4444; } .shot-bar .y { background: #f59e0b; } .shot-bar .g { background: #22c55e; }
.shot-bar span { margin-left: 10px; color: var(--muted); font-size: 0.8rem; }
.shot img { width: 100%; height: auto; display: block; }
.shot-cap { padding: 18px 22px; }
.shot-cap h3 { margin: 0 0 4px; font-size: 1.08rem; }
.shot-cap p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.shot.featured { max-width: 940px; margin: 0 auto; box-shadow: var(--shadow-lg); }
@media (max-width: 760px) { .shots { grid-template-columns: 1fr; } }

/* ───────────── Rundgang (Modul-Tour) ───────────── */
.rundgang { display: grid; grid-template-columns: 230px 1fr; gap: 48px; align-items: start; }
.toc { position: sticky; top: 90px; }
.toc h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); margin: 18px 0 8px; }
.toc h4:first-child { margin-top: 0; }
.toc a { display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-radius: 8px; color: var(--muted); font-size: 0.92rem; }
.toc a:hover { color: var(--brand); background: var(--brand-tint); }
.toc a [data-icon] { color: var(--brand); flex: none; }

.mgroup { margin-bottom: 8px; }
.mgroup-title { display: flex; align-items: center; gap: 12px; margin: 48px 0 28px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.mgroup:first-child .mgroup-title { margin-top: 0; }
.mgroup-title .ico { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: var(--brand-tint); color: var(--brand); flex: none; }
.mgroup-title h2 { margin: 0; font-size: 1.5rem; }

.mrow { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; margin-bottom: 56px; scroll-margin-top: 90px; }
.mrow:last-child { margin-bottom: 0; }
.mrow.rev .mrow-media { order: 2; }
.mrow-text h3 { font-size: 1.4rem; margin: 0 0 12px; letter-spacing: -0.3px; }
.mrow-text > p { color: var(--muted); margin: 0 0 18px; font-size: 1.02rem; }
.mrow-text ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.mrow-text li { display: flex; gap: 11px; align-items: flex-start; color: var(--text); font-size: 0.96rem; }
.mrow-text li [data-icon] { color: var(--accent); flex: none; margin-top: 2px; }
.mrow-media img { width: 100%; height: auto; display: block; }

@media (max-width: 920px) {
  .rundgang { grid-template-columns: 1fr; }
  .toc { position: static; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 4px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
  .mrow { grid-template-columns: 1fr; gap: 22px; }
  .mrow.rev .mrow-media { order: 0; }
}

/* ───────────── Funktionskatalog (gruppiert) ───────────── */
.cat { margin-bottom: 56px; }
.cat:last-child { margin-bottom: 0; }
.cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.cat-head .ico {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-tint); color: var(--brand); flex: none;
}
.cat-head h2 { font-size: 1.4rem; margin: 0; }
.cat-head .cat-sub { color: var(--muted); font-size: 0.95rem; margin: 2px 0 0; }
.cat-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.cat-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px;
  box-shadow: var(--shadow);
}
.cat-item .chk { color: var(--accent); flex: none; margin-top: 1px; }
.cat-item .t { font-weight: 600; font-size: 0.98rem; }
.cat-item .d { color: var(--muted); font-size: 0.9rem; margin-top: 2px; }

/* ───────────── Steps (Vorgehen) ───────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative;
  box-shadow: var(--shadow);
}
.step .num {
  position: absolute; top: 22px; right: 24px; font-size: 2.4rem; font-weight: 800;
  color: rgba(37,99,235,0.12); line-height: 1;
}
.step .ico {
  display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-tint); color: var(--brand); margin-bottom: 18px;
}
.step h3 { margin: 0 0 8px; font-size: 1.18rem; }
.step p { margin: 0; color: var(--muted); }

/* ───────────── Pricing ───────────── */
.pricing { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: stretch; }
.price-card {
  background: linear-gradient(160deg, #f0f6ff, #ffffff); border: 1px solid #cfe0fb;
  border-radius: var(--radius-lg); padding: 36px; text-align: center; box-shadow: var(--shadow-md);
}
.price-card .amount { font-size: 3rem; font-weight: 800; letter-spacing: -1px; color: var(--brand); }
.price-card .amount small { font-size: 1.1rem; color: var(--muted); font-weight: 600; }
.price-card .price-sub { color: var(--muted); margin: 8px 0 24px; }
.benefits { display: grid; gap: 14px; align-content: start; }
.benefit {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px;
  box-shadow: var(--shadow);
}
.benefit .ico { color: var(--accent); flex: none; margin-top: 2px; }
.benefit .t { font-weight: 600; }
.benefit .d { color: var(--muted); font-size: 0.94rem; margin-top: 2px; }

/* ───────────── Case Studies ───────────── */
.cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.case {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.case-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.case-top .ico {
  display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 13px;
  background: var(--brand-tint); color: var(--brand); flex: none;
}
.case-top h3 { margin: 0; font-size: 1.25rem; }
.case-top .tag { color: var(--brand); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.case .block { margin-bottom: 16px; }
.case .block .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.case .block p { margin: 0; color: var(--text); font-size: 0.97rem; }
.case ul { margin: 4px 0 0; padding-left: 0; list-style: none; display: grid; gap: 8px; }
.case ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 0.95rem; }
.case ul li .ico { color: var(--accent); flex: none; margin-top: 2px; }
.case .cost {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center; color: var(--accent); font-weight: 600; font-size: 0.95rem;
}

/* ───────────── CTA / Contact ───────────── */
.cta { padding: 88px 0; text-align: center; border-top: 1px solid var(--border); background: var(--bg-soft); }
.cta h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 0 0 12px; }
.cta p { color: var(--muted); margin: 0 0 28px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.contact-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; text-align: center; box-shadow: var(--shadow);
}
.contact-card .ico {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: var(--brand-tint); color: var(--brand); margin: 0 auto 16px;
}
.contact-card h3 { margin: 0 0 6px; }
.contact-card p { color: var(--muted); margin: 0 0 14px; }

/* ───────────── Anbieter-Block (Kontakt) ───────────── */
.anbieter {
  text-align: center; max-width: 420px; margin: 40px auto 0;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.anbieter .ico { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); margin-bottom: 14px; }
.anbieter .anbieter-lead { margin: 0 0 8px; font-weight: 600; font-size: 1.05rem; }
.anbieter address { font-style: normal; color: var(--muted); line-height: 1.6; }
.anbieter address a { color: var(--brand); }

/* ───────────── Prosa (Impressum/Datenschutz) ───────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--brand); }
.prose ul { padding-left: 20px; }

/* ───────────── Fussnote ───────────── */
.fn { color: var(--muted); font-size: 0.82rem; max-width: 640px; margin: 22px auto 0; text-align: center; line-height: 1.5; }
.fn .star { color: var(--brand); }

/* ───────────── Lightbox ───────────── */
.shot-frame img { cursor: zoom-in; }
.lb-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  background: rgba(15, 23, 42, 0.82); backdrop-filter: blur(4px); padding: 28px;
}
.lb-overlay.open { display: flex; }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; max-width: 96vw; }
.lb-figure img {
  max-width: 96vw; max-height: 84vh; border-radius: 12px;
  border: 1px solid var(--border); box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  cursor: zoom-out; animation: lbIn .18s ease; background: #fff;
}
.lb-cap {
  color: #e8ecf2; margin-top: 16px; text-align: center; font-size: 0.95rem;
  line-height: 1.45; max-width: 860px; padding: 0 14px;
}
.lb-count {
  position: absolute; top: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: #e8ecf2; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  padding: 5px 14px; border-radius: 999px;
}
@keyframes lbIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
.lb-btn {
  position: absolute; z-index: 2;
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; cursor: pointer; border: none;
  background: rgba(255,255,255,0.95); color: #18181b;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45); transition: background .15s, transform .05s;
}
.lb-btn:hover { background: #fff; }
.lb-btn:active { transform: scale(0.93); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 18px; top: 50%; margin-top: -24px; }
.lb-next { right: 18px; top: 50%; margin-top: -24px; }
.lb-prev svg { transform: scaleX(-1); }
@media (max-width: 600px) {
  .lb-btn { width: 42px; height: 42px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-figure img { max-height: 76vh; }
}
body.lb-open { overflow: hidden; }

/* ───────────── Nach-oben-Pfeil (floating) ───────────── */
.to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; border: none; cursor: pointer;
  background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(37,99,235,0.40);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .15s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: #1d4ed8; }
.to-top:active { transform: scale(0.93); }
.to-top svg { transform: rotate(-90deg); }
body.lb-open .to-top { display: none; }
@media (max-width: 600px) { .to-top { bottom: 18px; right: 18px; width: 44px; height: 44px; } }

/* ───────────── Datenschutz-Banner (von unten) ───────────── */
.privacy-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 960;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 -8px 28px rgba(15,23,42,0.12);
  transform: translateY(110%); transition: transform .4s cubic-bezier(.16,.8,.3,1);
  padding: 16px 0;
}
.privacy-banner.show { transform: translateY(0); }
.privacy-inner { display: flex; align-items: center; gap: 20px; justify-content: space-between; flex-wrap: wrap; }
.privacy-inner p { margin: 0; color: var(--muted); font-size: 0.92rem; max-width: 780px; line-height: 1.5; }
.privacy-inner a { color: var(--brand); }
.privacy-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 640px) { .privacy-inner { flex-direction: column; align-items: stretch; } .privacy-actions .btn { width: 100%; justify-content: center; } }

/* ───────────── Footer ───────────── */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0 32px; background: var(--bg-soft); }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { max-width: 280px; }
.footer-brand .brand { margin-bottom: 10px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 9px; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.88rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ───────────── Responsive ───────────── */
@media (max-width: 760px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: absolute; top: 66px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav.open { max-height: 360px; }
  .nav a { padding: 14px 24px; border-top: 1px solid var(--border); }
  .nav .btn { margin: 12px 24px; justify-content: center; }
  .pricing { grid-template-columns: 1fr; }
}
