/* ==========================================================================
   TAMreach — Design tokens
   ========================================================================== */
:root {
  --c-orange: #f7941d;
  --c-coral: #f4443f;
  --c-magenta: #d6248f;
  --c-purple: #9b26b6;

  --gradient-brand: linear-gradient(100deg, var(--c-orange) 0%, var(--c-coral) 38%, var(--c-magenta) 68%, var(--c-purple) 100%);
  --gradient-brand-soft: linear-gradient(100deg, rgba(247,148,29,.14) 0%, rgba(244,68,63,.14) 38%, rgba(214,36,143,.14) 68%, rgba(155,38,182,.14) 100%);

  --bg: #fbfaf9;
  --bg-alt: #f3efec;
  --surface: #ffffff;
  --ink: #16121a;
  --ink-soft: #4b4552;
  --ink-faint: #8a8390;
  --border: #e8e2dd;
  --dark: #100c14;
  --dark-surface: #1a1420;
  --dark-border: #322a3a;
  --dark-ink: #f3eef7;
  --dark-ink-soft: #b7aec2;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 12, 24, .04), 0 1px 1px rgba(20,12,24,.03);
  --shadow-md: 0 12px 32px -12px rgba(30, 10, 40, .18);
  --shadow-lg: 0 30px 60px -20px rgba(30, 10, 40, .28);

  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1180px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; font-size: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section--tight { padding: 44px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-magenta);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gradient-brand);
}
.eyebrow--light { color: #f0c8e6; }

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.section-head p { font-size: 1.05rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease, background .18s ease, color .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  background-repeat: no-repeat;
  background-clip: padding-box;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--c-magenta); color: var(--c-magenta); }
.btn-ghost--light { border-color: var(--dark-border); color: var(--dark-ink); }
.btn-ghost--light:hover { border-color: var(--c-orange); color: var(--c-orange); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-dark { background: #0c0a0e; color: #fff; border-color: #0c0a0e; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 249, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav__logo img { height: 26px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__links a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; align-items: center; gap: 5px; font-family: var(--font-head); font-size: .8rem; font-weight: 600; }
.lang-switch .current { color: var(--ink); }
.lang-switch a { color: var(--ink-faint); }
.lang-switch a:hover { color: var(--c-magenta); }
.lang-switch .sep { color: var(--border); }
.nav__toggle {
  display: none;
  background: none; border: none; padding: 6px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; margin: 5px 0;
  background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav__mobile { display: none; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__actions .btn-ghost { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 24px 22px;
    border-top: 1px solid var(--border);
  }
  .nav__mobile a {
    padding: 12px 4px;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
  }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 84px 0 40px;
  overflow: hidden;
}
.hero__aurora {
  position: absolute;
  inset: -12%;
  z-index: 0;
  filter: blur(85px) saturate(1.5) hue-rotate(var(--hue, 0deg));
  pointer-events: none;
  transition: filter .3s ease-out;
}
.hero__aurora span {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.hero__aurora span:nth-child(1) { width: 400px; height: 400px; top: -60px; left: 6%; background: var(--c-orange); opacity: .42; }
.hero__aurora span:nth-child(2) { width: 380px; height: 380px; top: -30px; right: 2%; background: var(--c-magenta); opacity: .4; }
.hero__aurora span:nth-child(3) { width: 320px; height: 320px; top: 160px; left: 34%; background: var(--c-purple); opacity: .32; }
.hero__aurora span:nth-child(4) { width: 260px; height: 260px; top: 60px; right: 28%; background: var(--c-coral); opacity: .34; }
@media (max-width: 720px) {
  .hero__aurora { inset: -6% -30%; }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero__copy h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  margin-bottom: 22px;
}
.hero__copy p.lead { font-size: 1.15rem; max-width: 480px; }
.hero__cta-row { display: flex; align-items: center; gap: 18px; margin: 30px 0 34px; flex-wrap: wrap; }

.hero-form {
  display: flex;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  max-width: 460px;
  flex-wrap: wrap;
}
.hero-form input {
  flex: 1 1 120px;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 14px;
  font-size: .93rem;
  color: var(--ink);
}
.hero-form input::placeholder { color: var(--ink-faint); }
.hero-form .btn { flex-shrink: 0; }

.hero__stats { display: flex; gap: 30px; margin-top: 8px; flex-wrap: wrap; }
.hero__stats div strong { display: block; font-family: var(--font-head); font-size: 1.35rem; }
.hero__stats div span { font-size: .82rem; color: var(--ink-faint); }

/* pipeline diagram */
.pipeline {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.pipeline__row {
  display: flex;
  align-items: center;
  gap: 0;
}
.pipeline__node {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  position: relative;
  animation: floaty 5s ease-in-out infinite;
}
.pipeline__node:nth-child(odd) { animation-delay: .4s; }
.pipeline__node .ic {
  width: 34px; height: 34px; margin: 0 auto 10px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
}
.pipeline__node .ic svg { width: 18px; height: 18px; }
.pipeline__node b { display: block; font-family: var(--font-head); font-size: .82rem; font-weight: 600; }
.pipeline__connector {
  flex: 0 0 auto;
  width: 28px;
  height: 2px;
  background: var(--gradient-brand);
  position: relative;
  opacity: .55;
}
.pipeline__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
  font-size: .82rem;
  color: var(--ink-faint);
}
.pipeline__foot .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--c-magenta); font-weight: 600;
}
.pipeline__foot .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-coral);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .35; transform: scale(1.5);} }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-5px);} }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .pipeline__row { flex-direction: column; }
  .pipeline__connector { width: 2px; height: 20px; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  background: var(--bg-alt);
}
.marquee-label {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-faint);
  margin-bottom: 18px;
  font-weight: 500;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll-x 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gradient-brand); }

/* ==========================================================================
   Founder
   ========================================================================== */
.founder {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: 56px;
  align-items: center;
}
.founder__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 8%; }
.founder__badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(16,12,20,.72);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: .82rem;
}
.founder__badge b { display: block; font-family: var(--font-head); font-size: .92rem; }
.founder__copy p { font-size: 1.02rem; color: var(--ink); }
.founder__copy p:first-of-type { font-size: 1.12rem; }
@media (max-width: 860px) {
  .founder { grid-template-columns: 1fr; }
  .founder__photo { max-width: 320px; }
}

/* ==========================================================================
   Bento / service cards
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand-soft);
  color: var(--c-magenta);
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { font-size: .95rem; margin-bottom: 0; }
.card__tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-purple);
  background: var(--gradient-brand-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.card--link { display: block; margin-top: 18px; font-size: .88rem; font-weight: 600; color: var(--c-magenta); }
@media (max-width: 980px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .bento { grid-template-columns: 1fr; } }

/* ==========================================================================
   Dark section (problem/solution)
   ========================================================================== */
.dark {
  background: var(--dark);
  color: var(--dark-ink);
  position: relative;
  overflow: hidden;
}
.dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 40%, transparent 100%);
}
.dark h2, .dark h3 { color: #fff; }
.dark p { color: var(--dark-ink-soft); }
.dark .section-head p { color: var(--dark-ink-soft); }
.dark .container { position: relative; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.split-col h3 { font-size: 1.05rem; margin-bottom: 18px; }
.check-list li, .cross-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-border);
  font-size: .95rem;
  color: var(--dark-ink-soft);
}
.check-list li b, .cross-list li b { color: var(--dark-ink); font-weight: 500; }
.check-list li svg, .cross-list li svg { flex-shrink: 0; margin-top: 3px; width: 17px; height: 17px; }
.cross-list li svg { color: #ef6a63; }
.check-list li svg { color: #52e3a4; }
.solution-card {
  margin-top: 28px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ==========================================================================
   Lead magnet
   ========================================================================== */
.magnet {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.magnet::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: var(--gradient-brand);
  filter: blur(90px);
  opacity: .18;
}
.magnet__list { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 0; }
.magnet__list li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink-soft); align-items: center; }
.magnet__list li svg { width: 16px; height: 16px; color: var(--c-magenta); flex-shrink: 0; }
.magnet__panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}
@media (max-width: 860px) { .magnet { grid-template-columns: 1fr; padding: 30px 24px; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-item__q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-item__q .plus::before, .faq-item__q .plus::after {
  content: ""; position: absolute; background: var(--ink); transition: transform .25s ease, opacity .25s ease;
}
.faq-item__q .plus::before { width: 10px; height: 1.5px; }
.faq-item__q .plus::after { width: 1.5px; height: 10px; }
.faq-item.is-open .faq-item__q .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-item__q .plus { background: var(--gradient-brand); border-color: transparent; }
.faq-item.is-open .faq-item__q .plus::before, .faq-item.is-open .faq-item__q .plus::after { background: #fff; }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item__a-inner { padding: 0 4px 24px; font-size: .96rem; max-width: 720px; white-space: pre-line; }
.faq-item__a-inner p { color: var(--ink-soft); margin: 0 0 .8em; }

.faq-group-title {
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-purple);
  margin: 40px 0 4px;
}
.faq-group-title:first-child { margin-top: 0; }

/* ==========================================================================
   CTA band / Footer
   ========================================================================== */
.cta-band {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band p { color: rgba(255,255,255,.88); margin: 0; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--c-magenta); border-color: #fff; }
@media (max-width: 720px) { .cta-band { padding: 34px 26px; } }

.footer { background: var(--dark); color: var(--dark-ink-soft); padding: 70px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.3fr .8fr .8fr .9fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--dark-border); }
.footer__brand img { height: 24px; margin-bottom: 16px; }
.footer__brand p {
  max-width: 260px;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-head);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer a { font-size: .92rem; transition: color .15s ease; }
.footer a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .82rem; flex-wrap: wrap; gap: 12px; }
.footer__socials { display: flex; gap: 14px; }
.footer__socials a { width: 34px; height: 34px; border: 1px solid var(--dark-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer__socials a:hover { border-color: var(--c-magenta); }
.footer__socials svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; align-items: flex-start; } }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { padding: 64px 0 20px; text-align: center; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); max-width: 760px; margin: 0 auto 18px; }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.article-visual {
  width: 100%; max-width: 340px; aspect-ratio: 16/10;
  margin: 0 auto 28px;
  background: var(--gradient-brand-soft);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.article-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ==========================================================================
   Services detail page
   ========================================================================== */
.service-block { padding: 70px 24px; border-top: 1px solid var(--border); }
.service-block:first-of-type { border-top: none; }
.service-block__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.service-block__grid.rev { direction: rtl; }
.service-block__grid.rev > * { direction: ltr; }
.step-list { display: flex; flex-direction: column; gap: 4px; }
.step {
  display: flex; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step__num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--gradient-brand-soft);
  color: var(--c-magenta);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: .88rem;
}
.step h4 { font-size: 1rem; margin: 0 0 4px; }
.step p { font-size: .92rem; margin: 0; }
@media (max-width: 860px) { .service-block__grid, .service-block__grid.rev { grid-template-columns: 1fr; direction: ltr; } }

/* ==========================================================================
   Industries grid
   ========================================================================== */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry-card .ic {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  color: #fff; margin-bottom: 14px;
}
.industry-card .ic svg { width: 20px; height: 20px; }
.industry-card b { font-family: var(--font-head); font-size: .95rem; font-weight: 600; display: block; }
@media (max-width: 980px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .industry-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Careers
   ========================================================================== */
.job-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.job-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.job-card__tags span {
  font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  padding: 5px 11px; border-radius: var(--radius-pill);
  background: var(--bg-alt); color: var(--ink-soft);
}
.job-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.job-card > p { font-size: .95rem; }
.job-card__list { margin: 10px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.job-card__list li { display: flex; gap: 9px; font-size: .89rem; color: var(--ink-soft); align-items: flex-start; }
.job-card__list li svg { width: 15px; height: 15px; color: var(--c-magenta); flex-shrink: 0; margin-top: 3px; }
.job-card .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 860px) { .job-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Podcast page
   ========================================================================== */
.podcast-hero {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: center;
  background: var(--dark); color: #fff;
  border-radius: var(--radius-lg);
  padding: 46px;
}
.podcast-hero .cover {
  aspect-ratio: 1; border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.podcast-hero .cover svg { width: 30%; height: 30%; color: #fff; opacity: .9; }
.podcast-hero .cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.podcast-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.podcast-hero p { color: var(--dark-ink-soft); }
.subscribe-row { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.subscribe-row a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--dark-border); font-size: .88rem; font-weight: 500;
}
.subscribe-row a:hover { border-color: var(--c-orange); }
.subscribe-row svg { width: 16px; height: 16px; }
@media (max-width: 820px) { .podcast-hero { grid-template-columns: 1fr; padding: 30px; } .podcast-hero .cover { max-width: 180px; } }

.cal-embed {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.cal-embed iframe { display: block; }

.podcast-note {
  text-align: center;
  max-width: 720px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* Live podcast episode list (fetched from RSS at runtime) */
.podcast-episodes { display: flex; flex-direction: column; gap: 24px; }
.podcast-loading, .podcast-error { text-align: center; padding: 50px 20px; color: var(--ink-faint); }
.podcast-error .btn { margin-top: 14px; }
.podcast-featured {
  display: grid; grid-template-columns: .85fr 1.15fr;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.podcast-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.podcast-featured img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; }
.podcast-featured__media {
  width: 100%; height: 100%; min-height: 220px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.podcast-featured__media svg { width: 34%; height: 34%; }
.podcast-featured__body { padding: 30px 32px; display: flex; flex-direction: column; justify-content: center; }
.podcast-featured__body h3 { font-size: 1.25rem; margin: 10px 0 8px; line-height: 1.3; }
.podcast-featured__body p { font-size: .92rem; }
.podcast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.podcast-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.podcast-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.podcast-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.podcast-card__media {
  width: 100%; aspect-ratio: 1;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.podcast-card__media svg { width: 42%; height: 42%; }
.podcast-card__body { padding: 16px 18px 20px; }
.podcast-card__body h4 { font-size: .95rem; margin: 8px 0 0; line-height: 1.35; }
@media (max-width: 860px) {
  .podcast-featured { grid-template-columns: 1fr; }
  .podcast-featured img { min-height: 200px; }
  .podcast-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .podcast-grid { grid-template-columns: 1fr; } }

.episode-placeholder {
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  color: var(--ink-faint);
}
.episode-placeholder svg { width: 34px; height: 34px; margin: 0 auto 14px; color: var(--c-magenta); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; }
.contact-info-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px;
}
.contact-info-card + .contact-info-card { margin-top: 18px; }
.contact-info-card .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--gradient-brand-soft); color: var(--c-magenta); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.contact-info-card .ic svg { width: 19px; height: 19px; }
.contact-info-card h4 { font-size: .98rem; margin-bottom: 6px; }
.contact-info-card p { font-size: .92rem; margin: 0; }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px; }
.form-card iframe { display: block; border-radius: var(--radius-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg);
  outline: none; color: var(--ink);
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--c-magenta); }
.field textarea { resize: vertical; min-height: 120px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.25rem; margin-top: 2em; }
.legal p, .legal li { color: var(--ink-soft); font-size: .96rem; }
.legal li { margin-bottom: 6px; }

/* ==========================================================================
   Package tiers (Leistungen)
   ========================================================================== */
.tier-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 26px; }
.tier {
  padding: 8px 17px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ==========================================================================
   Blog article scene animations
   ========================================================================== */
@keyframes sceneFloatA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(3px,-7px); } }
@keyframes sceneFloatB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-5px,5px); } }
@keyframes scenePulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.14); opacity: .7; } }
@keyframes sceneSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes sceneBlink { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes sceneDash { to { stroke-dashoffset: 0; } }

.scene { width: 78%; max-width: 210px; overflow: visible; }
.blog-featured__media .scene { width: 62%; max-width: 260px; }
.scene .fa { animation: sceneFloatA 5s ease-in-out infinite; animation-delay: var(--d, 0s); transform-box: fill-box; transform-origin: center; }
.scene .fb { animation: sceneFloatB 6s ease-in-out infinite; animation-delay: var(--d, 0s); transform-box: fill-box; transform-origin: center; }
.scene .pu { animation: scenePulse 2.6s ease-in-out infinite; animation-delay: var(--d, 0s); transform-box: fill-box; transform-origin: center; }
.scene .sp { animation: sceneSpin 18s linear infinite; transform-box: fill-box; transform-origin: center; }
.scene .bl { animation: sceneBlink 2.2s ease-in-out infinite; animation-delay: var(--d, 0s); }
.scene .dash { stroke-dasharray: 6 5; stroke-dashoffset: 40; animation: sceneDash 3.5s linear infinite; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-note {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: .85rem;
  color: var(--ink-faint);
  margin-bottom: 44px;
}
.blog-featured {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 0;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  margin-bottom: 56px;
  overflow: hidden;
}
.blog-featured__media {
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  min-height: 240px;
  overflow: hidden;
}
.blog-featured__media svg { width: 64px; height: 64px; color: #fff; opacity: .9; }
.blog-featured__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-featured__body { padding: 30px 34px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__body h2 { font-size: 1.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__media {
  aspect-ratio: 16/10;
  background: var(--gradient-brand-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-card__media svg { width: 30px; height: 30px; color: var(--c-magenta); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__body { padding: 22px; }
.blog-card h3 { font-size: 1.04rem; margin-bottom: 8px; }
.blog-card p { font-size: .88rem; }
.blog-meta { display: flex; gap: 8px; align-items: center; font-size: .76rem; color: var(--ink-faint); margin-top: 14px; }
.blog-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); }
@media (max-width: 980px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* stagger helper */
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }
