/* =========================================================
   ThinkBusiness – Design System
   KI-gesteuertes Unternehmen | Gunnar Sieg, Erding
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --bg: #0a0e1a;
  --bg-soft: #111729;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --surface-line: #e6eaf2;

  --ink: #0d1426;
  --ink-soft: #44506b;
  --ink-mute: #6b7793;

  --brand: #5b6bff;
  --brand-deep: #3b46d6;
  --brand-glow: #8a7bff;
  --accent: #19d3a2;
  --accent-deep: #0fae85;

  --gradient-hero: radial-gradient(1200px 600px at 80% -10%, rgba(138, 123, 255, 0.35), transparent 60%),
                   radial-gradient(900px 500px at 0% 20%, rgba(25, 211, 162, 0.22), transparent 55%),
                   linear-gradient(160deg, #0a0e1a 0%, #121a33 55%, #0a0e1a 100%);
  --gradient-brand: linear-gradient(135deg, var(--brand) 0%, var(--brand-glow) 50%, var(--accent) 120%);

  /* Typo */
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 16px rgba(13, 20, 38, 0.06);
  --shadow: 0 18px 50px rgba(13, 20, 38, 0.10);
  --shadow-glow: 0 24px 70px rgba(91, 107, 255, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark {
  background: var(--gradient-hero);
  color: #fff;
}
.section--soft { background: var(--surface-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--accent); }
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.section--dark .lead { color: rgba(255,255,255,0.78); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 + .lead { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 30px 80px rgba(91,107,255,0.45); }
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--outline {
  border: 1.5px solid var(--surface-line);
  color: var(--ink);
  background: #fff;
}
.btn--outline:hover { border-color: var(--brand); color: var(--brand-deep); transform: translateY(-3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--surface-line);
  transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.brand__logo {
  height: 34px;
  width: auto;
  display: block;
}
.brand__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  flex: none;
  display: block;
}
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-glow);
  flex: none;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand b { font-weight: 800; }
.brand span { color: var(--brand-glow); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a {
  padding: 9px 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--brand-deep); background: var(--surface-soft); }
.nav__links a.active { color: var(--brand-deep); }
.nav__links a.nav__cta { color: #fff; }

.nav__cta { margin-left: 12px; padding: 11px 22px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--gradient-hero);
  color: #fff;
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero .lead { margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 26px;
}
.badge-pill .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(25,211,162,0.22);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__trust div { font-size: 0.88rem; color: rgba(255,255,255,0.62); }
.hero__trust b { display: block; font-size: 1.5rem; color: #fff; font-weight: 800; letter-spacing: -0.02em; }

/* Hero Orchestrator-Card */
.orchestrator {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.orchestrator__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px; margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.orchestrator__avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient-brand);
  display: grid; place-items: center; font-weight: 800; flex: none;
}
.orchestrator__head small { color: rgba(255,255,255,0.6); font-size: 0.8rem; display:block; }
.orchestrator__head strong { font-size: 0.98rem; }
.agent-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0;
}
.agent-row__icon {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  font-size: 1rem;
}
.agent-row__label { flex: 1; font-size: 0.92rem; font-weight: 600; }
.agent-row__bar {
  width: 78px; height: 6px; border-radius: 6px;
  background: rgba(255,255,255,0.12); overflow: hidden; flex: none;
}
.agent-row__fill {
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, var(--brand-glow), var(--accent));
  width: 0; transition: width 1.4s var(--ease);
}
.agent-row__pct { width: 42px; text-align: right; font-size: 0.82rem; font-weight: 700; color: var(--accent); flex: none; }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--surface-line);
  box-shadow: var(--shadow-sm);
}
.stat__num {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label { color: var(--ink-mute); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(91,107,255,0.4); }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(91,107,255,0.14), rgba(25,211,162,0.14));
  color: var(--brand-deep);
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card__tag {
  display: inline-block;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(25,211,162,0.12);
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 16px;
}

/* Pillar card numbered */
.pillar { position: relative; overflow: hidden; }
.pillar__num {
  position: absolute; top: 18px; right: 22px;
  font-size: 3.2rem; font-weight: 800;
  color: var(--surface-soft);
  line-height: 1; z-index: 0;
}
.pillar > * { position: relative; z-index: 1; }

/* ---------- Feature list ---------- */
.feature-list { display: grid; gap: 14px; }
.feature-list li {
  display: flex; gap: 13px; align-items: flex-start;
  color: var(--ink-soft); font-size: 0.98rem;
}
.feature-list .tick {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  background: rgba(25,211,162,0.14); color: var(--accent-deep);
  display: grid; place-items: center; margin-top: 2px;
}
.feature-list .tick svg { width: 14px; height: 14px; }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--media-right { direction: ltr; }

/* ---------- Agents table (cards) ---------- */
.agent-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.agent-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.agent-card__emoji { font-size: 1.5rem; flex: none; }
.agent-card__body { flex: 1; min-width: 0; }
.agent-card__body strong { display: block; font-size: 0.98rem; }
.agent-card__body small { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.agent-card__ring {
  --p: 0;
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.78rem; font-weight: 800; color: #fff;
  background:
    radial-gradient(closest-side, var(--bg-soft) 70%, transparent 71% 100%),
    conic-gradient(var(--accent) calc(var(--p) * 1%), rgba(255,255,255,0.12) 0);
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step__num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient-brand); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price {
  background: #fff; border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg); padding: 36px 30px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price--featured {
  border: 1.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-brand) border-box;
  box-shadow: var(--shadow-glow);
  position: relative;
}
.price--featured::before {
  content: "Beliebt";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-brand); color: #fff;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
}
.price h3 { font-size: 1.25rem; }
.price__desc { color: var(--ink-mute); font-size: 0.92rem; margin: 6px 0 20px; }
.price__amount { font-size: 2.3rem; font-weight: 800; letter-spacing: -0.03em; }
.price__amount span { font-size: 0.95rem; font-weight: 600; color: var(--ink-mute); }
.price ul { display: grid; gap: 12px; margin: 24px 0 28px; }
.price li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; color: var(--ink-soft); }
.price li .tick { width: 21px; height: 21px; border-radius: 50%; flex: none; background: rgba(25,211,162,0.14); color: var(--accent-deep); display: grid; place-items: center; margin-top: 2px; }
.price li .tick svg { width: 12px; height: 12px; }
.price .btn { margin-top: auto; width: 100%; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(138,123,255,0.4), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { margin: 0 auto 30px; color: rgba(255,255,255,0.82); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--brand);
  transition: transform .3s; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Brand showcase ---------- */
.brand-hero {
  border-radius: var(--radius-lg);
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 340px;
}
.brand-hero--flipsoc { background: linear-gradient(150deg, #0e4f6e, #12a3c4 90%); }
.brand-hero--maha { background: linear-gradient(150deg, #1f3a1d, #3f8c33 90%); }
.brand-hero__tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-bottom: 10px; }
.brand-hero h3 { font-size: 1.9rem; margin-bottom: 10px; }
.brand-hero p { color: rgba(255,255,255,0.85); font-size: 0.98rem; }
.brand-hero__stats { display: flex; gap: 24px; margin-top: 22px; }
.brand-hero__stats b { display: block; font-size: 1.4rem; }
.brand-hero__stats span { font-size: 0.8rem; opacity: 0.8; }

/* ---------- Values ---------- */
.value { text-align: left; }
.value__icon { font-size: 1.8rem; margin-bottom: 12px; }
.value h3 { font-size: 1.1rem; margin-bottom: 6px; }
.value p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 0; max-width: 820px; margin-inline: auto; }
.tl-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--surface-line);
}
.tl-item:last-child { border-bottom: none; }
.tl-when { font-weight: 800; color: var(--brand-deep); }
.tl-what strong { display: block; margin-bottom: 4px; }
.tl-what span { color: var(--ink-mute); font-size: 0.9rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info .item { display: flex; gap: 15px; align-items: flex-start; }
.contact-info .item .ic {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, rgba(91,107,255,0.14), rgba(25,211,162,0.14));
  color: var(--brand-deep); display: grid; place-items: center;
}
.contact-info .item small { color: var(--ink-mute); display: block; font-size: 0.82rem; }
.contact-info .item strong { font-size: 1.02rem; }
.contact-info .item a { color: var(--ink); }
.contact-info .item a:hover { color: var(--brand-deep); }

form.tb-form { background: #fff; border: 1px solid var(--surface-line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--surface-line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--surface-soft);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.82rem; color: var(--ink-mute); margin-top: 8px; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(70% 70% at 50% 20%, #000 30%, transparent 80%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid .brand { margin-bottom: 18px; }
.footer-about p { font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.66); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: #fff; }

/* ---------- Brand lockup ---------- */
.brand-lockup { text-align: center; }
.brand-lockup img {
  height: 64px;
  width: auto;
  margin: 0 auto 22px;
  display: block;
}
.brand-lockup p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 30ch;
  margin: 0 auto;
}
.brand-lockup p span {
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-lockup small {
  display: block;
  margin-top: 14px;
  color: var(--ink-mute);
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 720px) {
  .brand-lockup img { height: 46px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid--3, .grid--4, .price-grid, .steps { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .agent-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .nav__links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg-soft);
    padding: 18px 22px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-150%);
    transition: transform .35s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { color: #fff; padding: 13px 14px; }
  .nav__links a.active { color: var(--accent); }
  .nav__cta { margin: 8px 0 0; }
  .nav__links a.nav__cta { color: #fff; }
  .nav__toggle { display: flex; }
  .brand__logo { height: 28px; }
  .brand__icon { width: 36px; height: 36px; }
  .grid--3, .grid--4, .price-grid, .steps, .grid--2 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 26px; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .brand-hero { padding: 30px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
