/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Light-section colours (about, detail pages) — unchanged by theme */
  --bg:        #ffffff;
  --bg-alt:    #f8f8f8;
  --text:      #1a1a1a;
  --muted:     #6b7280;
  --border:    #e5e7eb;

  /* Accent */
  --accent:    #6366f1;
  --accent-h:  #4f46e5;

  /* Layout / misc */
  --radius:    14px;
  --shadow:    0 4px 24px rgba(0,0,0,.07);
  --shadow-h:  0 8px 40px rgba(0,0,0,.13);
  --nav-h:     68px;
  --max-w:     1100px;
  --transition: .25s cubic-bezier(.4,0,.2,1);

  /* ── Dark-mode semantic tokens (default) ──────────────────────────────── */
  --section-bg:        #0a0a0a;
  --section-bg-alt:    #111111;
  --on-dark:           #ffffff;
  --on-dark-75:        rgba(255,255,255,.75);
  --on-dark-muted:     rgba(255,255,255,.5);
  --on-dark-subtle:    rgba(255,255,255,.28);
  --card-bg:           rgba(255,255,255,.04);
  --card-border:       rgba(255,255,255,.08);
  --card-hover-bg:     rgba(99,102,241,.07);
  --nav-scrolled-bg:   rgba(10,10,10,.88);
  --nav-shadow:        rgba(255,255,255,.06);
  --mobile-menu-bg:    rgba(10,10,10,.97);
  --mobile-border:     rgba(255,255,255,.07);
  --form-bg:           rgba(255,255,255,.05);
  --form-border:       rgba(255,255,255,.1);
  --form-text:         #ffffff;
  --form-placeholder:  rgba(255,255,255,.25);
  --label-color:       rgba(255,255,255,.55);
  --divider:           rgba(255,255,255,.08);
  --footer-copy:       rgba(255,255,255,.3);
  --select-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

/* ── Light-mode token overrides ─────────────────────────────────────────── */
[data-theme="light"] {
  --section-bg:        #f4f4f5;
  --section-bg-alt:    #e9e9eb;
  --on-dark:           #0d0d0d;
  --on-dark-75:        rgba(0,0,0,.7);
  --on-dark-muted:     rgba(0,0,0,.5);
  --on-dark-subtle:    rgba(0,0,0,.28);
  --card-bg:           rgba(0,0,0,.03);
  --card-border:       rgba(0,0,0,.08);
  --card-hover-bg:     rgba(99,102,241,.06);
  --nav-scrolled-bg:   rgba(244,244,245,.92);
  --nav-shadow:        rgba(0,0,0,.08);
  --mobile-menu-bg:    rgba(244,244,245,.97);
  --mobile-border:     rgba(0,0,0,.07);
  --form-bg:           rgba(0,0,0,.04);
  --form-border:       rgba(0,0,0,.12);
  --form-text:         #0d0d0d;
  --form-placeholder:  rgba(0,0,0,.3);
  --label-color:       rgba(0,0,0,.55);
  --divider:           rgba(0,0,0,.08);
  --footer-copy:       rgba(0,0,0,.4);
  --select-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.45)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Utilities ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

.section__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section__eyebrow--light { color: #a5b4fc; }
[data-theme="light"] .section__eyebrow--light { color: var(--accent); }

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 48px;
}
.section__title--light { color: #ffffff; }
[data-theme="light"] .section__title--light { color: var(--text); }

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,.35);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn--nav {
  padding: 10px 22px;
  font-size: .875rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
}
.btn--nav:hover {
  background: var(--accent-h);
}

.btn--full { width: 100%; }

/* ─── Navigation ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--nav-shadow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: -.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links li a {
  color: var(--on-dark-75);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links li a:hover { color: var(--on-dark); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Theme Toggle ─────────────────────────────────────────────────────── */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  background: var(--card-bg);
  color: var(--on-dark-75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.theme-toggle:hover { background: var(--card-hover-bg); color: var(--on-dark); }
.theme-toggle svg { width: 18px; height: 18px; }

[data-theme="dark"]  .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: none; }

/* ─── Nav controls group (theme + lang toggles) ───────────────────────── */
.nav__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── Language Toggle ──────────────────────────────────────────────────── */
.lang-toggle {
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--divider);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 6px;
  transition: background var(--transition), border-color var(--transition);
  overflow: hidden;
}
.lang-toggle:hover { background: var(--card-hover-bg); }
.lang-toggle span { display: flex; align-items: center; line-height: 0; }

html[lang="de"] .flag-gb { display: none; }
html[lang="en"] .flag-de { display: none; }

/* ─── Mobile Menu ──────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--mobile-menu-bg);
  backdrop-filter: blur(14px);
  z-index: 99;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu li { border-bottom: 1px solid var(--mobile-border); }
.mobile-menu a {
  display: block;
  padding: 18px 8px;
  color: var(--on-dark-75);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--section-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(99,102,241,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(79,70,229,.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: .875rem;
  font-weight: 500;
  color: var(--on-dark-muted);
  letter-spacing: .06em;
  margin-bottom: 20px;
}

.hero__headline {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--on-dark);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--on-dark-muted);
  margin-bottom: 40px;
  max-width: 420px;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--on-dark-muted));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  30%, 70% { opacity: 1; transform: scaleY(1); }
}

.hero--sub { min-height: 55vh; }
.hero--sub .hero__inner { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 60px; }

.hero--green::before {
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(16,185,129,.20) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(5,150,105,.12) 0%, transparent 60%);
}
.hero--green .accent { color: #10b981; }

/* ─── Services ─────────────────────────────────────────────────────────── */
.services {
  min-height: 100vh;
  background: var(--section-bg);
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(99,102,241,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(79,70,229,.08) 0%, transparent 60%);
  pointer-events: none;
}
.services .container { position: relative; z-index: 1; width: 100%; }

.services .section__title { margin-bottom: 32px; color: var(--on-dark); }

.services__groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}

.services__group { margin-bottom: 0; }

.services__group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--on-dark);
  margin-bottom: 16px;
}
.services__group-label::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* ─── Cards ────────────────────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  border-color: rgba(99,102,241,.4);
  background: var(--card-hover-bg);
}

.card__icon {
  width: 44px;
  height: 44px;
  background: rgba(99,102,241,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.card__icon svg { width: 24px; height: 24px; }

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--on-dark);
  margin-bottom: 8px;
}

.card__desc {
  font-size: .875rem;
  color: var(--on-dark-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

/* ─── About ────────────────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--bg-alt);
}

.about__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}

.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-content: center;
  padding: 12px;
}

.about__icon-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #374151;
  transition: color var(--transition);
}

.about__icon-cell:hover { color: var(--accent); }

.about__icon-cell svg {
  width: 64px;
  height: 64px;
}

.about__icon-cell span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about__content .section__title { margin-bottom: 20px; }

.about__text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__text:last-of-type { margin-bottom: 32px; }

/* ─── About page: expertise rows ───────────────────────────────────────── */
.about-expertise {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 40px 0;
}

.about-expertise__label {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-expertise__icon {
  width: 44px;
  height: 44px;
  background: rgba(99,102,241,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.about-expertise__icon svg { width: 22px; height: 22px; }

.about-expertise__cat {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.about-expertise__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: -.02em;
}

.about-expertise__text {
  font-size: .9375rem;
  color: var(--on-dark-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-expertise__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.about-expertise__bullets li {
  font-size: .875rem;
  color: var(--on-dark-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.about-expertise__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: .75rem;
  top: 2px;
}

.about-expertise__link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition), letter-spacing var(--transition);
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.about-expertise__link:hover { color: var(--accent-h); letter-spacing: .02em; }

.about-expertise--finance .about-expertise__icon { color: #10b981; }
.about-expertise--finance .about-expertise__cat { color: #10b981; }
.about-expertise--finance .about-expertise__title { color: #ffffff; }
.about-expertise--finance .about-expertise__link { color: #10b981; }
.about-expertise--finance .about-expertise__link:hover { color: #6ee7b7; }

/* ─── Inline tooltip ────────────────────────────────────────────────────── */
.tooltip {
  position: relative;
  border-bottom: 1px dashed var(--accent);
  color: var(--accent);
  font-weight: 700;
  cursor: help;
  white-space: nowrap;
}
.tooltip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e1e2e;
  border: 1px solid rgba(99,102,241,.25);
  color: rgba(255,255,255,.85);
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 10px;
  width: 280px;
  white-space: normal;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  transform: translateX(-50%) translateY(4px);
  z-index: 10;
}
.tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
[data-theme="light"] .tooltip::after {
  background: #fff;
  border-color: rgba(99,102,241,.2);
  color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.about-expertise__divider {
  height: 1px;
  background: var(--divider);
}

@media (max-width: 720px) {
  .about-expertise {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-expertise__label { flex-direction: row; align-items: center; }
}

/* ─── Contact ──────────────────────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--section-bg-alt);
}

.contact__inner { max-width: 640px; }

.contact__sub {
  font-size: 1rem;
  color: var(--on-dark-muted);
  margin-top: -28px;
  margin-bottom: 48px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__group label {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--label-color);
  letter-spacing: .04em;
}
.form__group input,
.form__group select,
.form__group textarea {
  background: var(--form-bg);
  border: 1px solid var(--form-border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: .9375rem;
  color: var(--form-text);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--form-placeholder);
}
.form__group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: var(--select-arrow);
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}
.form__group select option {
  background: #1a1a2e;
  color: #fff;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--accent);
  background: rgba(99,102,241,.07);
}

.form__success {
  display: none;
  text-align: center;
  color: #86efac;
  font-size: .9rem;
  font-weight: 500;
  padding: 12px;
  background: rgba(134,239,172,.08);
  border-radius: 8px;
}
.form__success.visible { display: block; }

.form__error {
  display: none;
  text-align: center;
  color: #fca5a5;
  font-size: .9rem;
  font-weight: 500;
  padding: 12px;
  background: rgba(252,165,165,.08);
  border-radius: 8px;
}
.form__error.visible { display: block; }

.form__group input.invalid,
.form__group select.invalid,
.form__group textarea.invalid {
  border-color: #f87171 !important;
  outline-color: #f87171;
}

/* ─── Footer ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--section-bg);
  border-top: 1px solid var(--divider);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: .8125rem;
  color: var(--footer-copy);
}

/* ─── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__headline { font-size: clamp(2rem, 10vw, 3rem); }

  .services { padding: 80px 0; min-height: unset; }
  .services__groups { grid-template-columns: 1fr; gap: 32px; }
  .services__grid { grid-template-columns: 1fr; }

  .about { padding: 80px 0; }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__photo-placeholder { aspect-ratio: 1/1; max-width: 300px; gap: 20px; }

  .contact { padding: 80px 0; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }

  .section__title { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .card { padding: 28px 24px; }
  .hero__inner { padding-bottom: 60px; }
}

/* ─── Card: shared clickable state ────────────────────────────────────── */
.card--clickable { cursor: pointer; }
.card--clickable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.card__hint {
  display: block;
  font-size: .75rem;
  color: var(--on-dark-subtle);
  margin-top: 8px;
  letter-spacing: .03em;
}

/* Card used as <a> tag */
a.card { display: flex; color: inherit; }

/* ─── Card: expand in place ───────────────────────────────────────────── */
.card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}
.card__header .card__icon { margin-bottom: 16px; }

.card__chevron {
  width: 20px;
  height: 20px;
  color: var(--on-dark-muted);
  flex-shrink: 0;
  margin-top: 12px;
  transition: transform var(--transition), color var(--transition);
}
.card--expand.expanded .card__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.card__expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.card--expand.expanded .card__expandable {
  max-height: 320px;
}

.card__expand-inner {
  padding-top: 20px;
  border-top: 1px solid var(--divider);
  margin-top: 4px;
}

.card__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__bullets li {
  font-size: .875rem;
  color: var(--on-dark-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.card__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: .75rem;
  top: 2px;
}

/* ─── Modal ────────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.modal.open {
  pointer-events: all;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__card {
  position: relative;
  z-index: 1;
  background: #161622;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 48px;
  max-width: 540px;
  width: 100%;
  transform: scale(.94) translateY(12px);
  transition: transform .35s cubic-bezier(.34,1.3,.64,1);
}
.modal.open .modal__card {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.modal__close:hover { background: rgba(255,255,255,.12); color: #fff; }
.modal__close svg { width: 16px; height: 16px; }

.modal__icon {
  width: 52px;
  height: 52px;
  background: rgba(99,102,241,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.modal__icon svg { width: 24px; height: 24px; }

.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 14px;
}

.modal__desc {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.modal__bullets li {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.modal__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.modal__bullets li strong {
  display: block;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  margin-bottom: 3px;
}

body.modal-open { overflow: hidden; }

/* ─── Soon badge (health card) ─────────────────────────────────────────── */
.card--soon { position: relative; }

.card__soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  pointer-events: none;
  z-index: 1;
}

/* ─── Watchlist modal form ──────────────────────────────────────────────── */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}
.modal__form .form__group { display: flex; flex-direction: column; gap: 6px; }
.modal__form label { font-size: .8125rem; color: rgba(255,255,255,.55); font-weight: 500; }
.modal__form input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9375rem;
  color: #fff;
  font-family: inherit;
  transition: border-color var(--transition);
}
.modal__form input::placeholder { color: rgba(255,255,255,.3); }
.modal__form input:focus { outline: none; border-color: var(--accent); }

@media (max-width: 768px) {
  .modal__card { padding: 32px 24px; }
}

/* ─── Detail pages ─────────────────────────────────────────────────────── */
.page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  color: var(--on-dark-muted);
  margin-bottom: 28px;
  transition: color var(--transition);
}
.page__back:hover { color: var(--on-dark-75); }

.page-detail {
  padding: 100px 0 10px;
  background: var(--bg);
}

.page-intro {
  max-width: 680px;
  margin-bottom: 72px;
}
.page-intro__text {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
}

.page-detail .section__title { color: var(--text); }

.website-stat-banner {
  border-left: 4px solid var(--accent);
  background: var(--card-bg, rgba(255,255,255,0.04));
  border-radius: 8px;
  padding: 2rem 2.5rem;
  margin: 3rem 0;
}
.website-stat__number {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.website-stat__number span {
  color: var(--accent);
  font-size: clamp(2rem, 5vw, 3rem);
  display: block;
}
.website-stat__sub {
  color: var(--text-muted, var(--muted));
  font-size: 1rem;
  margin: 0;
}

.page-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 80px;
}

.page-method {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.page-method__num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: .35;
  letter-spacing: -.03em;
  padding-top: 4px;
}

.page-method__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.page-method__body p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
}

.page-cta {
  background: var(--section-bg);
  border-radius: 20px;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.page-cta h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: -.02em;
}
.page-cta p {
  font-size: 1rem;
  color: var(--on-dark-muted);
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .page-method { grid-template-columns: 1fr; gap: 8px; }
  .page-method__num { font-size: 1.25rem; }
  .page-cta { padding: 36px 28px; }
  .page-cta h2 { font-size: 1.4rem; }
}

/* ─── Outcomes Section ───────────────────────────────────────────────────── */
.outcomes-section {
  background: #0d0d1a;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.outcomes-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(99,102,241,.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(139,92,246,.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(79,70,229,.08) 0%, transparent 60%);
  pointer-events: none;
}
.outcomes-section .container { position: relative; z-index: 1; }
.outcomes-header {
  margin-bottom: 72px;
}
.outcomes-section__title {
  color: #fff !important;
  margin-bottom: 0;
}
.outcomes-display {
  display: flex;
  flex-direction: column;
  gap: 160px;
}

/* ─── Individual panel ───────────────────────────────────────────────────── */
.outcome-panel {
  opacity: 0;
}
.outcome-panel__kw {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(99,102,241,.6), 0 0 80px rgba(99,102,241,.25);
  line-height: 1;
  margin-bottom: 1.75rem;
  transform: translateY(40px);
  opacity: 0;
  transition: opacity .65s cubic-bezier(.16,1,.3,1),
              transform .65s cubic-bezier(.16,1,.3,1),
              letter-spacing .65s cubic-bezier(.16,1,.3,1);
}
.outcome-panel__split {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  border: 1px solid rgba(99,102,241,.25);
  border-left: 3px solid rgba(99,102,241,.7);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(99,102,241,.08), 0 8px 40px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
}
.outcome-panel__side {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.outcome-panel__side--before {
  background: rgba(0,0,0,.25);
  transform: translateX(-40px);
  transition-delay: .12s;
  filter: saturate(.7);
}
.outcome-panel__side--after {
  background: rgba(99,102,241,.2);
  border-left: 1px solid rgba(99,102,241,.3);
  transform: translateX(40px);
  transition-delay: .12s;
  box-shadow: inset 0 0 60px rgba(99,102,241,.08);
}
.outcome-panel__side p {
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}
.outcome-panel__side--before p { color: rgba(255,255,255,.38); font-weight: 400; font-size: .875rem; }
.outcome-panel__side--after  p { color: #fff; font-weight: 600; font-size: 1rem; }

.outcome-panel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  border-left: 1px solid rgba(99,102,241,.2);
  border-right: 1px solid rgba(99,102,241,.2);
  background: rgba(99,102,241,.06);
  opacity: 0;
  transform: scale(.5);
  transition: opacity .4s ease .28s, transform .4s cubic-bezier(.16,1,.3,1) .28s;
  animation: none;
}

/* ─── Visible state (added by IntersectionObserver) ─────────────────────── */
.outcome-panel--visible {
  opacity: 1;
}
.outcome-panel--visible .outcome-panel__kw {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: .06em;
}
.outcome-panel--visible .outcome-panel__side--before,
.outcome-panel--visible .outcome-panel__side--after {
  opacity: 1;
  transform: translateX(0);
}
.outcome-panel--visible .outcome-panel__arrow {
  opacity: 1;
  transform: scale(1);
  animation: arrowPulse 2.2s ease-in-out .6s infinite;
}

/* ─── Badge pills ────────────────────────────────────────────────────────── */
.outcome-badge {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
}
.outcome-badge--before { background: rgba(255, 0, 0, 0.4); color: rgba(255,255,255,.5); }
.outcome-badge--after  { background: rgba(99, 241, 111, 0.4); color: #c7d2fe; font-weight: 800; }

@keyframes arrowPulse {
  0%,100% { transform: translateX(-5px); opacity: .35; }
  50%     { transform: translateX(5px);  opacity: 1; }
}

/* ─── All outcome panels: gradient background ────────────────────────────── */
.outcome-panel .outcome-panel__split {
  background: linear-gradient(
    to right,
    rgba(128, 55, 55, 0.2) 0%,
    rgba(90, 35, 35, 0.06) 35%,
    rgba(60,50,200,.06) 55%,
    rgba(99,102,241,.24) 100%
  );
}
.outcome-panel .outcome-panel__side--before,
.outcome-panel .outcome-panel__side--after,
.outcome-panel .outcome-panel__arrow {
  background: transparent;
}

/* ─── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .outcomes-section { padding: 80px 0; }
  .outcomes-display { gap: 100px; }
  .outcome-panel__kw { font-size: 1.4rem; }
  .outcome-panel__split { grid-template-columns: 1fr; }
  .outcome-panel__arrow {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 14px;
    animation: none !important;
  }
  .outcome-panel--visible .outcome-panel__arrow {
    animation: arrowPulseDown 2.2s ease-in-out .6s infinite !important;
  }
  .outcome-panel__side--after {
    border-left: none;
    border-top: 1px solid var(--divider);
  }
}
@keyframes arrowPulseDown {
  0%,100% { transform: translateY(-4px); opacity: .35; }
  50%     { transform: translateY(4px);  opacity: 1; }
}

/* ─── Wave separator ────────────────────────────────────────────────────── */
.wave-separator {
  display: block;
  line-height: 0;
  background: transparent;
  margin: 0;
  overflow: hidden;
}
.wave-separator svg {
  width: 100%;
  height: 120px;
  display: block;
}

/* ─── AI FAQ ─────────────────────────────────────────────────────────────── */
.ai-faq { margin: 80px 0 0; }
.ai-faq__list {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}
.ai-faq__item { border-bottom: 1px solid var(--border); }
.ai-faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  font-family: inherit;
}
.ai-faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}
.ai-faq__item.open .ai-faq__question::after { content: '−'; }
.ai-faq__answer {
  display: none;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 680px;
}
.ai-faq__item.open .ai-faq__answer { display: block; }

/* ─── AI Booking strip ───────────────────────────────────────────────────── */
.ai-booking-strip {
  border-left: 4px solid var(--accent);
  background: var(--card-bg);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 80px 0 50px;
}
.ai-booking-strip p {
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
  font-size: 1.0625rem;
}

/* ─── Stories section ────────────────────────────────────────────────────── */
@keyframes shimmer-green {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes breathe {
  0%   { opacity: .6; }
  100% { opacity: 1; }
}

.stories-section {
  --sg:       #10b981;
  --sg-light: #6ee7b7;
  --sg-glow:  rgba(16,185,129,.15);
  --sg-faint: rgba(16,185,129,.06);
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background: var(--section-bg);
}
.stories-section__bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 55% at -5% 10%, rgba(16,185,129,.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 65% at 105% 90%, rgba(5,150,105,.08) 0%, transparent 60%);
  animation: breathe 7s ease-in-out infinite alternate;
}
[data-theme="light"] .stories-section__bg-layer {
  background:
    radial-gradient(ellipse 65% 55% at -5% 10%, rgba(16,185,129,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 65% at 105% 90%, rgba(5,150,105,.04) 0%, transparent 60%);
}
.stories-section__inner { position: relative; z-index: 1; }

.stories-section__eyebrow { color: var(--sg-light); }
[data-theme="light"] .stories-section__eyebrow { color: var(--sg); }

.stories-section__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--on-dark);
  margin-bottom: 80px;
  max-width: 580px;
}
[data-theme="light"] .stories-section__heading { color: var(--text); }
.stories-green {
  background: linear-gradient(135deg, #10b981 0%, #6ee7b7 45%, #10b981 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-green 5s linear infinite;
}

/* ── list + entries ── */
.stories-list { display: flex; flex-direction: column; }

.story-entry {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0 52px;
  align-items: start;
  padding: 52px 0;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.story-entry.is-visible { opacity: 1; transform: translateY(0); }

.story-entry__num {
  display: block;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--sg);
  opacity: .3;
  padding-top: 2px;
  transition: opacity .4s ease;
  user-select: none;
}
.story-entry:hover .story-entry__num { opacity: .65; }
[data-theme="light"] .story-entry__num { opacity: .22; }
[data-theme="light"] .story-entry:hover .story-entry__num { opacity: .45; }

.story-entry--highlight .story-entry__num {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  -webkit-text-stroke-color: var(--sg-light);
  opacity: .45;
}

.story-entry__title {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
[data-theme="light"] .story-entry__title { color: var(--text); }

.story-entry__text {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--on-dark-75);
  margin-bottom: 18px;
}
[data-theme="light"] .story-entry__text { color: var(--muted); }

.story-entry__outcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--sg);
}
.story-entry__outcome::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sg);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--sg);
}

/* ── animated divider ── */
.story-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--sg) 0%, rgba(16,185,129,.08) 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .9s cubic-bezier(.4,0,.2,1);
}
.story-divider.is-visible { transform: scaleX(1); }

/* ── cta wrapper ── */
.stories-cta-wrapper { padding: 80px 0 100px; background: var(--bg); }

@media (max-width: 768px) {
  .stories-section { padding: 72px 0 88px; }
  .stories-section__heading { margin-bottom: 56px; }
  .story-entry {
    grid-template-columns: 1fr;
    gap: 12px 0;
    padding: 40px 0;
  }
  .story-entry__num { font-size: clamp(3rem, 12vw, 4rem); }
  .story-entry--highlight .story-entry__num { font-size: clamp(2.2rem, 9vw, 3rem); }
}
@media (max-width: 480px) {
  .story-entry { padding: 32px 0; }
}

/* ─── Help sections (A / B / C comparison) ──────────────────────────────── */

/* ── Option A: Dark stage ── */
.help-a {
  background: #07100d;
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.help-a::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(16,185,129,.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(5,150,105,.08) 0%, transparent 55%);
}
.help-a__eyebrow { color: #6ee7b7; position: relative; z-index: 1; }
.help-a__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -.02em;
  color: #fff; margin-bottom: 52px;
  position: relative; z-index: 1;
}
.help-a__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  position: relative; z-index: 1;
}
.help-a__panel {
  border-radius: 20px; padding: 44px 40px 40px;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .35s ease, box-shadow .35s ease;
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.help-a__panel--invest {
  background: rgba(16,185,129,.06);
  border-color: rgba(16,185,129,.2);
}
.help-a__panel.is-visible { opacity: 1; transform: translateY(0); }
.help-a__panel--invest.is-visible { transition-delay: .13s; }
.help-a__panel:hover { border-color: rgba(16,185,129,.4); box-shadow: 0 0 48px rgba(16,185,129,.1); }
.help-a__situation {
  font-size: .975rem; font-style: italic; line-height: 1.6;
  color: rgba(255,255,255,.4); margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.help-a__panel--invest .help-a__situation { border-bottom-color: rgba(16,185,129,.18); }
.help-a__title {
  font-size: 1.35rem; font-weight: 700;
  color: #fff; margin-bottom: 20px;
}
.help-a__panel--invest .help-a__title { color: #10b981; }
.help-a__list {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 11px; flex: 1;
}
.help-a__list li {
  font-size: .9375rem; color: rgba(255,255,255,.65);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.help-a__list li::before {
  content: '✓'; color: #10b981; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.help-a__btn {
  display: block; padding: 15px; text-align: center;
  border-radius: 50px; font-size: .9375rem; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,.15);
  color: #fff; background: rgba(255,255,255,.07);
  transition: background .25s ease, border-color .25s ease;
}
.help-a__panel--invest .help-a__btn {
  background: #10b981; border-color: #10b981; color: #fff;
}
.help-a__btn:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.25); }
.help-a__panel--invest .help-a__btn:hover { background: #0ea472; border-color: #0ea472; }
.help-a__footer {
  margin-top: 64px;
  position: relative; z-index: 1;
}

/* ── Option A footer heading ── */
.help-a__footer-heading {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -.02em;
  color: #fff; margin-bottom: 12px;
}
.help-a__footer-accent {
  background: linear-gradient(135deg, #10b981 0%, #6ee7b7 50%, #10b981 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-green 5s linear infinite;
}
.help-a__footer-sub {
  font-size: 1rem; color: rgba(255,255,255,.5); line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .help-a { padding: 72px 0 80px; }
  .help-a__grid { grid-template-columns: 1fr; gap: 16px; }
  .help-a__panel { padding: 32px 28px 28px; }
  .help-a__panel--invest.is-visible { transition-delay: 0s; }
}
@media (max-width: 480px) {
  .help-a__panel { padding: 28px 22px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE BLOCKS — AI & Finance immersive sections (index.html)
   ═══════════════════════════════════════════════════════════════════════════ */

.services-scene {
  position: relative;
}

/* ─── Shared block base ─────────────────────────────────────────────────── */
.svc-block {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

/* ─── AI Block ──────────────────────────────────────────────────────────── */
.svc-block--ai {
  background:
    radial-gradient(ellipse 75% 65% at 10% 25%, rgba(99,102,241,0.16) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 88% 78%, rgba(79,70,229,0.09) 0%, transparent 55%),
    linear-gradient(to bottom, #050510 0%, #060612 68%, #051009 92%, #040e08 100%);
}

/* Grid lines overlay */
.svc-block--ai .svc-block__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  pointer-events: none;
  z-index: 0;
}

/* Scroll tint — fades from transparent to dark-green as user scrolls toward Finance */
.svc-block__tint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to bottom, transparent, #040e08);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.08s linear;
}

/* ─── Finance Block ─────────────────────────────────────────────────────── */
.svc-block--finance {
  background:
    radial-gradient(ellipse 70% 60% at 78% 38%, rgba(34,197,94,0.13) 0%, transparent 58%),
    radial-gradient(ellipse 55% 55% at 18% 72%, rgba(16,185,129,0.08) 0%, transparent 55%),
    linear-gradient(to bottom, #040e08 0%, #030f07 55%, #030e07 100%);
}

/* Large background currency symbols */
.svc-block__symbols {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.svc-symbol {
  position: absolute;
  font-weight: 900;
  color: rgba(34,197,94,0.045);
  line-height: 1;
  user-select: none;
  font-family: 'Inter', sans-serif;
}
.svc-symbol--euro {
  font-size: clamp(180px, 22vw, 300px);
  top: -30px;
  left: -20px;
  color: rgba(34,197,94,0.09);
}
.svc-symbol--dollar {
  font-size: clamp(200px, 26vw, 360px);
  bottom: -50px;
  right: 5%;
  color: rgba(34,197,94,0.1);
}
.svc-symbol--bitcoin {
  position: absolute;
  top: 50%;
  right: 22%;
  transform: translateY(-50%) rotate(-15deg);
  width: clamp(160px, 18vw, 240px);
  height: clamp(160px, 18vw, 240px);
  color: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-symbol--bitcoin svg {
  width: 100%;
  height: 100%;
}

/* ─── Inner layout ──────────────────────────────────────────────────────── */
.svc-block__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 72px;
}

/* AI: icon left, content right — left-weighted (less left padding) */
.svc-block__inner--left {
  padding: 0 13% 0 6%;
}

/* Finance: content left, icon right — right-weighted (less right padding) */
.svc-block__inner--right {
  padding: 0 6% 0 13%;
  flex-direction: row-reverse;
}

/* ─── Service icons ─────────────────────────────────────────────────────── */
.svc-icon {
  flex-shrink: 0;
  width: clamp(200px, 22vw, 280px);
  height: clamp(200px, 22vw, 280px);
}

.svc-icon svg {
  width: 100%;
  height: 100%;
}

.svc-icon--ai svg {
  animation: aiNodePulse 5s ease-in-out infinite;
}

.svc-icon--finance svg {
  animation: finPulse 4s ease-in-out infinite;
}

@keyframes aiNodePulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(99,102,241,0.45)); }
  50%       { filter: drop-shadow(0 0 28px rgba(99,102,241,0.75)); }
}

@keyframes finPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(34,197,94,0.4)); }
  50%       { filter: drop-shadow(0 0 26px rgba(34,197,94,0.7)); }
}

/* ─── Content ───────────────────────────────────────────────────────────── */
.svc-block__content {
  flex: 1;
  min-width: 0;
}

.svc-block__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #818cf8;
  margin-bottom: 18px;
}

.svc-block__eyebrow--green {
  color: #4ade80;
}

.svc-block__title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 22px;
}

.svc-block__title--green {
  background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-block__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.78;
  margin-bottom: 28px;
  max-width: 520px;
}

.svc-block__desc--green {
  color: rgba(255,255,255,0.62);
}

.svc-block__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.svc-block__bullets li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.svc-block__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-size: 0.8rem;
  top: 2px;
}

.svc-block__bullets--green li::before {
  color: #22c55e;
}

/* ─── Block CTA buttons ─────────────────────────────────────────────────── */
.btn--ai {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #a5b4fc;
  border: 1.5px solid rgba(99,102,241,0.45);
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  font-family: inherit;
}

.btn--ai:hover {
  background: rgba(99,102,241,0.12);
  border-color: #6366f1;
  color: #c7d2fe;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99,102,241,0.22);
}

.btn--finance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #4ade80;
  border: 1.5px solid rgba(34,197,94,0.45);
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  font-family: inherit;
}

.btn--finance:hover {
  background: rgba(34,197,94,0.1);
  border-color: #22c55e;
  color: #86efac;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.18);
}

/* ─── About section: 2-icon variant ─────────────────────────────────────── */
.about__photo-placeholder--two {
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: center;
  align-items: center;
  aspect-ratio: auto;
  padding: 40px 12px;
}

/* ─── Service block responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .svc-block__inner--left,
  .svc-block__inner--right {
    padding: 0 5%;
    flex-direction: column !important;
    text-align: center;
    gap: 48px;
  }

  .svc-block__desc,
  .svc-block__desc--green {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .svc-block__bullets {
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .svc-icon {
    width: clamp(160px, 45vw, 220px);
    height: clamp(160px, 45vw, 220px);
  }

  .svc-symbol--euro  { font-size: 130px; }
  .svc-symbol--dollar { font-size: 150px; }
  .svc-symbol--bitcoin { width: 110px; height: 110px; right: 5%; }
}

@media (max-width: 600px) {
  .svc-block {
    padding: 80px 0;
  }
  .svc-block__title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }
  .svc-block__desc {
    font-size: 0.9375rem;
  }
  .about__photo-placeholder--two {
    gap: 32px;
  }
}
