/* Streifenfrei — Fomic-style professional light theme
   One accent: royal blue. Radius: cards 22px · media 18px · buttons pill · chips 12px */

:root {
  --blue: #2367e8;          /* brand royal blue (buttons/icons, AA on white ~4.6) */
  --blue-bright: #2f83f6;   /* brighter accent (dots, highlights) */
  --blue-deep: #1552c4;     /* hover */
  --tint: #eaf1fe;          /* light blue tint */
  --tint-2: #f4f7fc;        /* very light grey-blue section bg */
  --ink: #0c1116;           /* near-black headlines */
  --ink-2: #1c2430;
  --muted: #5b6675;         /* grey body */
  --muted-soft: #8a94a3;
  --line: #e6ebf2;
  --line-soft: #eef2f7;
  --dark: #101722;          /* dark image overlays */
  --white: #fbfcfe;
  --shadow-xs: 0 1px 3px rgba(16, 28, 48, 0.05);
  --shadow-sm: 0 6px 20px -8px rgba(16, 33, 66, 0.12);
  --shadow-md: 0 24px 50px -26px rgba(16, 33, 66, 0.28);
  --shadow-lg: 0 40px 80px -34px rgba(14, 30, 66, 0.35);
  --r-card: 22px;
  --r-img: 18px;
  --r-chip: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: "Figtree", sans-serif; font-weight: 700; margin: 0; letter-spacing: -0.025em; line-height: 1.05; }
::selection { background: var(--blue); color: #fff; }
:where(a, button, input, select, textarea, [tabindex], summary):focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
.nav-inner :focus-visible, .cats :focus-visible, .cta :focus-visible { outline-color: #fff; }

.shell { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.blue { color: var(--blue); }
svg.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- pill badge ---------- */
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); flex: none; }
.pill.on-dark { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; backdrop-filter: blur(6px); }

/* ---------- buttons (Fomic arrow-chip) ---------- */
.btn { display: inline-flex; align-items: center; gap: 12px; border: 0; cursor: pointer; font-family: "Figtree", sans-serif; font-weight: 600; font-size: 15px; transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), box-shadow 0.22s ease, background 0.2s ease, color 0.2s ease; }
.btn-arrow { padding: 7px 8px 7px 22px; border-radius: 999px; background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-arrow .chip { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; transition: transform 0.22s ease, background 0.2s ease; }
.btn-arrow .chip svg { width: 18px; height: 18px; }
.btn-arrow:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-arrow:hover .chip { background: var(--blue-deep); transform: rotate(45deg); }
.btn-blue { padding: 14px 26px; border-radius: 999px; background: var(--blue); color: #fff; box-shadow: 0 14px 30px -12px rgba(35,103,232,0.6); }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn-blue.btn-arrow { padding: 7px 8px 7px 22px; background: var(--white); color: var(--ink); }
.btn-ghost { padding: 13px 24px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--ink); font-weight: 600; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ---------- section base ---------- */
.section { padding: 96px 0; }
.section.tint { background: var(--tint-2); }
.head { max-width: 720px; }
.head.center { margin: 0 auto; text-align: center; }
.head .pill { margin-bottom: 22px; }
.head h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; }
.head p { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.section-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 52px; flex-wrap: wrap; }

/* ---------- hero ---------- */
.hero-wrap { padding: 14px; }
.hero { position: relative; border-radius: 30px; overflow: hidden; min-height: 88vh; display: flex; flex-direction: column; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,23,34,0.55) 0%, rgba(16,23,34,0.2) 32%, rgba(16,23,34,0.5) 72%, rgba(16,23,34,0.82) 100%); }

/* nav pill inside hero */
.nav { position: relative; z-index: 3; margin: 18px; }
.nav-inner { display: flex; align-items: center; gap: 26px; padding: 10px 12px 10px 20px; border-radius: 999px; background: rgba(20,28,40,0.42); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark { width: 36px; height: 36px; border-radius: 11px; background: var(--blue); color: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 6px 16px -6px rgba(35,103,232,0.7); }
.brand-mark svg { width: 21px; height: 21px; }
.brand-name { font-family: "Figtree", sans-serif; font-weight: 800; font-size: 21px; letter-spacing: -0.03em; }
.nav-inner .brand-name { color: #fff; }
.footer-brand .brand-name, .legal-header .brand-name { color: var(--ink); }
.nav-links { display: flex; gap: 26px; align-items: center; font-weight: 500; font-size: 15px; }
.nav-links a { color: rgba(255,255,255,0.86); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 8px 8px 8px 18px; border-radius: 999px; background: rgba(255,255,255,0.12); color: #fff; font-weight: 600; font-size: 14.5px; border: 1px solid rgba(255,255,255,0.16); }
.nav-cta .chip { width: 34px; height: 34px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; }
.nav-cta .chip svg { width: 16px; height: 16px; }
.nav-cta:hover { background: rgba(255,255,255,0.2); }
.menu-btn { display: none; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16); border-radius: 12px; padding: 11px; color: #fff; }
.mobile-nav { display: none; }

.hero-body { position: relative; z-index: 2; margin-top: auto; padding: 0 46px 46px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: end; }
.hero-copy { color: #fff; max-width: 640px; }
.hero-copy .pill { margin-bottom: 22px; }
.hero-copy h1 { font-size: clamp(44px, 6.4vw, 86px); font-weight: 800; letter-spacing: -0.043em; line-height: 0.97; }
.hero-copy p { margin: 20px 0 0; max-width: 46ch; color: rgba(255,255,255,0.86); font-size: 18px; }
.hero-side { display: grid; gap: 14px; justify-items: stretch; }
.hero-inset { position: relative; border-radius: var(--r-img); overflow: hidden; border: 4px solid rgba(255,255,255,0.5); aspect-ratio: 16/10; box-shadow: var(--shadow-lg); }
.hero-inset img { width: 100%; height: 100%; object-fit: cover; }
.hero-book { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 10px 10px 22px; border-radius: 16px; background: var(--white); box-shadow: var(--shadow-md); font-family: "Figtree",sans-serif; font-weight: 600; }
.hero-book .chip { width: 44px; height: 44px; border-radius: 12px; background: var(--blue); color: #fff; display: grid; place-items: center; transition: transform 0.22s ease, background 0.2s; }
.hero-book:hover .chip { background: var(--blue-deep); transform: rotate(45deg); }

/* ---------- why-us tab card ---------- */
.why-card { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 40px; box-shadow: var(--shadow-sm); }
.why-left { display: flex; flex-direction: column; }
.why-ico { width: 54px; height: 54px; border-radius: 15px; background: var(--blue); color: #fff; display: grid; place-items: center; margin-bottom: 24px; }
.why-ico svg { width: 26px; height: 26px; }
.why-left h3 { font-size: 24px; }
.why-left > p { margin: 12px 0 0; color: var(--muted); font-size: 16px; max-width: 40ch; }
.why-tabs { margin-top: auto; display: grid; gap: 0; }
.why-tab { display: flex; align-items: center; gap: 12px; padding: 16px 4px; border-top: 1px solid var(--line); font-weight: 600; font-size: 16px; color: var(--muted); cursor: pointer; transition: color 0.2s; }
.why-tab:last-child { border-bottom: 1px solid var(--line); }
.why-tab::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--line); flex: none; transition: background 0.2s; }
.why-tab.active { color: var(--ink); }
.why-tab.active::before { background: var(--blue); }
.why-media { border-radius: var(--r-img); overflow: hidden; min-height: 340px; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- stats bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 16px; }
.bento .cell { border-radius: var(--r-card); overflow: hidden; position: relative; }
.bento .stat { background: var(--tint); padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.bento .stat b { font-family: "Figtree",sans-serif; font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.bento .stat span { margin-top: 10px; font-weight: 600; font-size: 15px; }
.bento .stat small { margin-top: 8px; color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.bento .stat.blue { background: var(--blue); }
.bento .stat.blue b, .bento .stat.blue span { color: #fff; }
.bento .stat.blue small { color: rgba(255,255,255,0.82); }
.bento .photo img { width: 100%; height: 100%; object-fit: cover; }
.bento .span2 { grid-column: span 2; }
.bento .row2 { grid-row: span 2; }

/* ---------- über/intro big statement ---------- */
.intro h2 { font-size: clamp(28px, 4.4vw, 56px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; max-width: 20ch; }
.intro h2 .fade { color: var(--muted-soft); }
.intro-meta { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 30px; }
.intro-meta small { display: block; color: var(--muted); font-size: 14px; margin-bottom: 6px; }
.intro-meta b { font-family: "Figtree",sans-serif; font-weight: 700; font-size: 19px; }


/* ---------- problem / solution bento ---------- */
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ps-media { border-radius: var(--r-card); overflow: hidden; min-height: 380px; }
.ps-media img { width: 100%; height: 100%; object-fit: cover; }
.ps-card { background: var(--tint-2); border: 1px solid var(--line); border-radius: var(--r-card); padding: 36px; }
.ps-card .pill { margin-bottom: 20px; }
.ps-card p.lead { font-weight: 500; font-size: 16px; color: var(--ink-2); margin: 0 0 22px; }
.ps-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ps-list li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: var(--ink-2); transition: transform 0.28s cubic-bezier(0.16,1,0.3,1), color 0.2s ease; }
.ps-list li:hover { transform: translateX(7px); color: var(--ink); }
.ps-list li svg { width: 20px; height: 20px; color: var(--blue); transition: transform 0.28s cubic-bezier(0.16,1,0.3,1); }
.ps-list li:hover svg { transform: translateX(3px) scale(1.14); }
@media (prefers-reduced-motion: reduce) {
  .ps-list li, .ps-list li svg { transition: none; }
  .ps-list li:hover, .ps-list li:hover svg { transform: none; }
}

/* ---------- ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px; position: relative; }
.step-n { font-family: "Figtree",sans-serif; font-weight: 800; font-size: 15px; color: var(--blue); background: var(--tint); width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 22px; }
.step h3 { font-size: 21px; }
.step p { margin: 10px 0 0; color: var(--muted); font-size: 15.5px; }

/* ---------- reviews ---------- */
.rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rev { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px; display: flex; flex-direction: column; }
.rev-top { display: flex; align-items: flex-start; justify-content: space-between; }
.rev-quote-mark { font-family: Georgia, serif; font-size: 60px; line-height: 0.7; color: var(--blue); opacity: 0.28; }
.rev-ava { width: 54px; height: 54px; border-radius: 14px; background: var(--tint); color: var(--blue); display: grid; place-items: center; font-family: "Figtree",sans-serif; font-weight: 800; font-size: 18px; }
.rev-stars { color: #f5a623; letter-spacing: 3px; font-size: 16px; margin: 20px 0 14px; }
.rev p { font-size: 17px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.rev-foot { margin-top: 26px; }
.rev-foot b { font-family: "Figtree",sans-serif; font-weight: 700; font-size: 16px; display: block; }
.rev-foot small { color: var(--muted); font-size: 14px; }
.rev-note { margin-top: 22px; font-size: 13.5px; color: var(--muted); }
.rev-nav { display: flex; gap: 10px; }
.rev-nav button { width: 52px; height: 52px; border-radius: 14px; border: 1px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.rev-nav button:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post { display: block; }
.post-img { border-radius: var(--r-img); overflow: hidden; aspect-ratio: 4/3; margin-bottom: 18px; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.post:hover .post-img img { transform: scale(1.05); }
.post-meta { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.post-meta .pcat { color: var(--ink-2); font-weight: 600; }
.post h3 { font-size: 21px; transition: color 0.2s; }
.post:hover h3 { color: var(--blue); }

/* ---------- CTA band ---------- */
.cta { position: relative; border-radius: 30px; overflow: hidden; margin: 0 14px; min-height: 460px; display: grid; place-items: center; text-align: center; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,23,34,0.55), rgba(16,23,34,0.65)); }
.cta-inner { position: relative; z-index: 1; color: #fff; padding: 40px; }
.cta-inner .pill { margin-bottom: 24px; }
.cta-inner h2 { font-size: clamp(32px, 5vw, 60px); font-weight: 700; letter-spacing: -0.03em; max-width: 16ch; margin: 0 auto; }
.cta-inner .btn { margin-top: 34px; }

/* ---------- newsletter + footer ---------- */
.foot-wrap { background: var(--tint-2); }
.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--line); }
.newsletter h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; }
.nl-form { display: flex; gap: 10px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 8px 8px 22px; box-shadow: var(--shadow-xs); }
.nl-form input { flex: 1; border: 0; background: transparent; outline: none; font-size: 15px; }
.nl-form button { border: 0; background: var(--blue); color: #fff; font-weight: 600; padding: 12px 24px; border-radius: 999px; cursor: pointer; transition: background 0.2s; }
.nl-form button:hover { background: var(--blue-deep); }
.footer { padding: 60px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .fb { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 30ch; margin: 0 0 22px; }
.footer-brand h5 { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.footer-brand a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 6px; }
.footer-brand .fb-addr { display: block; color: var(--muted); font-size: 14.5px; }
.footer-brand a:hover { color: var(--blue); }
.footer-col h5 { font-family: "Figtree",sans-serif; font-weight: 700; font-size: 17px; margin: 0 0 18px; }
.footer-col a { display: block; color: var(--muted); font-size: 15px; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); background: var(--white); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.socials a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.socials a svg { width: 17px; height: 17px; }

/* ---------- service categories (blue block) ---------- */
.cats { position: relative; margin: 0 14px; border-radius: 30px; overflow: hidden; background: linear-gradient(155deg, #2a6ff0 0%, #1e57cf 52%, #1546ad 100%); color: #fff; padding: 84px 0; }
.cats::before { content: ""; position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(58% 60% at 85% 0%, rgba(130,185,255,0.24), transparent 60%),
  radial-gradient(50% 55% at 0% 100%, rgba(0,216,254,0.16), transparent 60%); }
.cats .shell { position: relative; }
.cats-head { text-align: center; max-width: 820px; margin: 0 auto 52px; }
.cats-head .pill.on-dark { margin-bottom: 20px; }
.cats-head h2 { font-size: clamp(28px, 3.8vw, 46px); font-weight: 700; }
.cats-head p { margin: 16px 0 0; color: rgba(255,255,255,0.82); font-size: 18px; }
.cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 32px 18px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06); cursor: pointer; transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), background 0.25s ease, border-color 0.25s ease; }
.cat:hover { transform: translateY(-5px); background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.32); }
.cat-ico { width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,0.12); display: grid; place-items: center; transition: background 0.25s ease, transform 0.25s ease; }
.cat:hover .cat-ico { background: rgba(255,255,255,0.22); transform: scale(1.06); }
/* "Glanz" light-sweep: clean surfaces catching light (brand motif) */
.cat::after { content: ""; position: absolute; top: 0; left: 0; width: 45%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent); transform: translateX(-180%) skewX(-16deg); opacity: 0; pointer-events: none; }
@keyframes gw-shine { 0% { transform: translateX(-180%) skewX(-16deg); opacity: 0; } 14% { opacity: 1; } 100% { transform: translateX(320%) skewX(-16deg); opacity: 0; } }
@keyframes gw-sweep { to { transform: translateX(125%); } }
@media (prefers-reduced-motion: no-preference) {
  .cat:hover::after { animation: gw-shine 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
  .hero-inset::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(100deg, transparent 34%, rgba(255,255,255,0.42) 50%, transparent 66%); transform: translateX(-125%); animation: gw-sweep 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both; pointer-events: none; }
}
.btn-arrow:active, .btn-blue:active, .nav-cta:active, .hero-book:active, .cta .btn:active { transform: translateY(1px); }
.cat-ico svg { width: 30px; height: 30px; color: #fff; }
.cat span { font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; }
@media (max-width: 1040px) { .cats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .cats { margin: 0 10px; padding: 60px 0; border-radius: 24px; } .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .cat { padding: 26px 14px; } }

/* ---------- legal pages ---------- */
.legal-header { border-bottom: 1px solid var(--line); background: var(--white); }
.legal-header .inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.legal-header .brand { color: var(--ink); }
.legal-header a.back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--ink); }
.legal-header a.back svg { width: 18px; height: 18px; color: var(--blue); }
.legal-header a.back:hover { color: var(--blue); }
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 64px 0 88px; }
.legal-wrap .pill { margin-bottom: 22px; }
.legal-wrap h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; letter-spacing: -0.03em; }
.legal-note { margin: 24px 0 44px; padding: 16px 20px; border-radius: 14px; background: var(--tint); border: 1px solid #d5e3fb; color: var(--ink-2); font-size: 14.5px; }
.legal { color: var(--ink-2); }
.legal h2 { font-family: "Figtree",sans-serif; font-size: 22px; font-weight: 700; margin: 40px 0 12px; letter-spacing: -0.02em; }
.legal h3 { font-family: "Figtree",sans-serif; font-size: 17px; font-weight: 700; margin: 26px 0 8px; }
.legal p { margin: 0 0 14px; font-size: 16px; line-height: 1.7; color: var(--muted); }
.legal p strong, .legal address strong { color: var(--ink); font-weight: 600; }
.legal address { font-style: normal; margin: 0 0 14px; font-size: 16px; line-height: 1.7; color: var(--ink-2); }
.legal a { color: var(--blue); }
.legal a:hover { text-decoration: underline; }
.legal ul { margin: 0 0 16px; padding-left: 22px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.legal ul li { margin-bottom: 6px; }
.legal .ph { background: #fff3cd; border: 1px dashed #e0b73a; border-radius: 6px; padding: 1px 7px; font-size: 0.92em; color: #7a5c05; white-space: nowrap; }

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); transition-delay: var(--d, 0ms); }
  .cascade > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); transition-delay: calc(var(--i, 0) * 55ms); }
  .cascade.in > * { opacity: 1; transform: none; }
  .reveal.in { opacity: 1; transform: none; }
  .hero-copy > *, .hero-side { animation: rise 0.85s cubic-bezier(0.16,1,0.3,1) both; }
  .hero-copy .pill { animation-delay: 0.05s; } .hero-copy h1 { animation-delay: 0.14s; }
  .hero-copy p { animation-delay: 0.26s; } .hero-side { animation-delay: 0.34s; }
  @keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
}

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .why-card { grid-template-columns: 1fr; gap: 28px; }
  .why-media { min-height: 300px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-media { min-height: 300px; }
  .steps { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .newsletter { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .intro-meta { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-body { grid-template-columns: 1fr; }
  .hero-side { max-width: 420px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .shell { width: calc(100% - 36px); }
  .section { padding: 68px 0; }
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-nav { display: none; }
  .mobile-nav.open { display: flex; flex-direction: column; gap: 4px; margin: 0 18px; padding: 12px; border-radius: 18px; background: rgba(20,28,40,0.62); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(16px); position: relative; z-index: 3; }
  .mobile-nav.open a { color: #fff; padding: 11px 14px; font-weight: 600; }
  .hero { min-height: 0; }
  .hero-body { padding: 0 22px 28px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .bento .span2, .bento .row2 { grid-column: auto; grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .intro-meta { grid-template-columns: 1fr 1fr; }
  .nl-form { flex-direction: column; border-radius: 18px; padding: 8px; }
  .nl-form input { padding: 12px 14px; }
  .nl-form button { border-radius: 12px; }
  .section-top { margin-bottom: 34px; }
}
