    :root {
      --navy:      #0b0e1a;
      --navy-mid:  #111527;
      --navy-card: #161c30;
      --navy-line: rgba(245,200,0,0.15);
      --yellow:    #f5c800;
      --yellow-lt: #ffe55c;
      --yellow-dim:rgba(245,200,0,0.08);
      --text:      #f0f3fa;
      --muted:     #a8b3cc;
      --border:    rgba(255,255,255,0.09);
      --ease:      cubic-bezier(.22,1,.36,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      font-weight: 300;
      background: var(--navy);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── Grain texture ── */
    body::after {
      content: '';
      position: fixed; inset: 0; z-index: 9000;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: .028;
    }

    /* ── Background video ── */
    .background-video-container {
      position: fixed; inset: 0;
      overflow: hidden; z-index: 0; pointer-events: none;
    }
    .background-video-container video {
      width: 100%; height: 100%;
      object-fit: cover;
      position: absolute; inset: 0; z-index: 1;
      transition: opacity 0.9s cubic-bezier(.5,.15,0,1.1);
      will-change: opacity; background: var(--navy);
    }
    .background-video-overlay {
      position: absolute; inset: 0; z-index: 2; pointer-events: none;
      background: linear-gradient(180deg, rgba(11,14,26,.55) 0%, rgba(11,14,26,.75) 100%);
      transition: opacity 0.7s cubic-bezier(.5,.15,0,1.1);
    }

    /* ── Header ── */
    header {
      position: sticky; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(11,14,26,.88);
      backdrop-filter: blur(20px) saturate(160%);
      border-bottom: 1px solid var(--border);
      transition: background .3s;
    }
    .nav-container {
      max-width: 1280px; margin: 0 auto;
      padding: 0 2.5rem;
      display: flex; align-items: center; height: 76px;
      justify-content: space-between;
    }
    .logo { text-decoration: none; display: block; }
    .logo img { height: 64px; width: auto; display: block; object-fit: contain; }

    nav { display: flex; gap: 2.5rem; align-items: center; }
    nav a {
      font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--muted); text-decoration: none; font-weight: 400;
      position: relative; transition: color .2s;
    }
    nav a::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
      height: 1px; background: var(--yellow);
      transform: scaleX(0); transform-origin: left;
      transition: transform .25s var(--ease);
    }
    nav a:hover { color: var(--text); }
    nav a:hover::after { transform: scaleX(1); }

    .cta-header {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: .88rem;
      letter-spacing: .14em; text-transform: uppercase;
      padding: .6rem 1.6rem;
      background: var(--yellow); color: var(--navy);
      border: none; cursor: pointer;
      transition: background .25s, transform .2s, box-shadow .25s;
    }
    .cta-header:hover {
      background: var(--yellow-lt);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px -8px rgba(245,200,0,.4);
    }

    /* ── Hamburger (mobile) ── */
    .hamburger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; width: 36px; height: 36px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span {
      display: block; width: 100%; height: 1.5px;
      background: var(--text); border-radius: 2px;
      transition: transform .3s var(--ease), opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── Mobile nav drawer ── */
    .mobile-nav {
      display: none; position: fixed; inset: 76px 0 0 0; z-index: 99;
      background: rgba(11,14,26,.97); backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 2.5rem;
      border-top: 1px solid var(--border);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--muted); text-decoration: none;
      transition: color .2s;
    }
    .mobile-nav a:hover { color: var(--yellow); }
    .mobile-nav .cta-mobile {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1rem;
      letter-spacing: .16em; text-transform: uppercase;
      padding: .9rem 2.2rem;
      background: var(--yellow); color: var(--navy);
      border: none; cursor: pointer; margin-top: 1rem;
    }

    /* ── Hero ── */
    .hero {
      position: relative;
      min-height: 88vh; height: 88vh;
      width: 100%;
      display: flex; align-items: center;
      z-index: 10;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(var(--navy-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.3) 30%, rgba(0,0,0,.3) 70%, transparent);
      pointer-events: none; z-index: 3;
    }
    .hero__content {
      position: relative; z-index: 4;
      display: flex; flex-direction: column; gap: 2.4rem;
      max-width: 1280px; margin: 0 auto;
      padding: 0 2.5rem; width: 100%;
    }

    /* Hero entrance animations */
    @keyframes heroIn {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero__eyebrow   { animation: heroIn .8s var(--ease) .15s both; }
    .hero__headline  { animation: heroIn .9s var(--ease) .32s both; }
    .hero__subheadline { animation: heroIn .8s var(--ease) .52s both; }
    .hero__actions   { animation: heroIn .8s var(--ease) .68s both; }
    .hero__kpis      { animation: heroIn .8s var(--ease) .84s both; }

    .hero__eyebrow {
      display: inline-flex; align-items: center; gap: 1rem;
      font-size: .72rem; letter-spacing: .35em; text-transform: uppercase;
      color: var(--yellow); font-weight: 500;
    }
    .hero__eyebrow::before {
      content: ''; width: 40px; height: 1px; background: var(--yellow);
    }
    .hero__headline {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 800; line-height: .95;
      letter-spacing: -.01em; color: var(--text);
      max-width: 820px; text-transform: uppercase;
    }
    .hero__headline em { font-style: normal; color: var(--yellow); }
    .hero__subheadline {
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      color: var(--muted); max-width: 520px;
      font-weight: 300; line-height: 1.7;
    }
    .hero__actions { display: flex; align-items: center; gap: 1.2rem; }
    .hero__cta {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1rem;
      letter-spacing: .16em; text-transform: uppercase;
      padding: 1rem 2.4rem;
      background: var(--yellow); color: var(--navy);
      border: none; cursor: pointer;
      transition: background .25s, transform .2s, box-shadow .25s;
    }
    .hero__cta:hover {
      background: var(--yellow-lt); transform: translateY(-2px);
      box-shadow: 0 12px 28px -10px rgba(245,200,0,.45);
    }
    .hero__cta-ghost {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600; font-size: 1rem;
      letter-spacing: .16em; text-transform: uppercase;
      padding: 1rem 2rem;
      background: transparent;
      border: 1px solid rgba(255,255,255,.15);
      color: var(--muted); cursor: pointer;
      transition: border-color .25s, color .25s;
    }
    .hero__cta-ghost:hover { border-color: var(--yellow); color: var(--text); }

    /* ── Hero KPIs ── */
    .hero__kpis {
      display: flex; gap: 0;
      border-top: 1px solid var(--border);
      padding-top: 2rem; margin-top: .4rem;
    }
    .kpi {
      display: flex; flex-direction: column;
      padding-right: 2.5rem; margin-right: 2.5rem;
      border-right: 1px solid var(--border);
    }
    .kpi:last-child { border-right: none; }
    .kpi__value {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.6rem; font-weight: 800;
      line-height: 1; color: var(--yellow); letter-spacing: -.01em;
    }
    .kpi__desc {
      font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--muted); margin-top: .4rem; font-weight: 400;
    }

    /* ── Section common ── */
    .section-wrap {
      max-width: 1280px; margin: 0 auto;
      padding: 7rem 2.5rem;
      position: relative; z-index: 5;
    }
    .section-label {
      display: inline-flex; align-items: center; gap: .8rem;
      font-size: .7rem; letter-spacing: .35em; text-transform: uppercase;
      color: var(--yellow); font-weight: 500; margin-bottom: 1.4rem;
    }
    .section-label::before {
      content: ''; width: 28px; height: 1px; background: var(--yellow);
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      font-weight: 800; text-transform: uppercase;
      letter-spacing: .01em; line-height: 1;
      color: var(--text); margin-bottom: 3.5rem;
    }
    .section-title em { font-style: normal; color: var(--yellow); }

    /* ── Über uns ── */
    #ueber-uns { background: var(--navy-mid); }
    .ueber-uns__grid {
      display: grid; grid-template-columns: 1fr 1.6fr;
      gap: 6rem; align-items: start;
    }
    .ueber-uns__sticky { position: sticky; top: 100px; }
    .ueber-uns__text {
      display: flex; flex-direction: column; gap: 1.4rem;
      opacity: 0; transform: translateY(40px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }
    .ueber-uns__text p {
      font-size: .95rem; color: var(--muted);
      line-height: 1.9; font-weight: 300;
    }
    .ueber-uns__text p:first-child {
      font-size: 1.05rem; color: var(--text); font-weight: 300;
    }

    /* ── Leistungen ── */
    #leistungen { background: var(--navy); }
    .leistungen__header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap;
    }
    .leistungen__header .section-title { margin-bottom: 0; }
    .leistungen__count {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 5rem; font-weight: 800;
      color: rgba(245,200,0,.08); line-height: 1;
      letter-spacing: -.03em;
    }
    .leistungen__grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border); border: 1px solid var(--border);
    }
    .leistungen-card {
      background: var(--navy-card);
      padding: 2.6rem 2rem;
      display: flex; flex-direction: column; gap: 1.1rem;
      position: relative; overflow: hidden;
      opacity: 0; transform: translateY(40px);
      transition: opacity .7s var(--ease), transform .7s var(--ease), background .3s;
      cursor: default;
    }
    .leistungen-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 2px; background: var(--yellow);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s var(--ease);
    }
    .leistungen-card:hover { background: rgba(22,28,50,.95); }
    .leistungen-card:hover::before { transform: scaleX(1); }
    .leistungen-card__num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3.5rem; font-weight: 800;
      color: rgba(245,200,0,.1); line-height: 1;
      position: absolute; top: 1.4rem; right: 1.4rem;
      letter-spacing: -.02em; transition: color .3s;
    }
    .leistungen-card:hover .leistungen-card__num { color: rgba(245,200,0,.2); }
    .card-icon {
      width: 36px; height: 36px;
      color: var(--yellow); flex-shrink: 0;
    }
    .card-icon svg { width: 100%; height: 100%; }
    .leistungen-card__title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.3rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .03em; color: var(--text);
    }
    .leistungen-card__desc {
      font-size: .87rem; color: var(--muted); line-height: 1.75; font-weight: 300;
    }
    .leistungen-card__list {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: .5rem;
    }
    .leistungen-card__list li {
      font-size: .82rem; color: var(--muted);
      padding-left: 1.1rem; position: relative;
      line-height: 1.55; font-weight: 300;
    }
    .leistungen-card__list li::before {
      content: '—'; position: absolute; left: 0;
      color: var(--yellow); font-size: .7rem; top: .1em;
    }
    .leistungen-card__list li b { color: var(--text); font-weight: 500; }

    /* ── KPI strip ── */
    .kpi-strip {
      background: var(--yellow);
      padding: 3rem 2.5rem;
      position: relative; z-index: 5;
    }
    .kpi-strip__inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
    }
    .extra-kpi {
      display: flex; flex-direction: column; align-items: center;
      text-align: center;
      border-right: 1px solid rgba(11,14,26,.15); padding-right: 2rem;
      opacity: 0; transform: translateY(30px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }
    .extra-kpi:last-child { border-right: none; }
    .extra-kpi__value {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3.5rem; font-weight: 800;
      color: var(--navy); line-height: 1; letter-spacing: -.02em;
    }
    .extra-kpi__desc {
      font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
      color: rgba(11,14,26,.6); margin-top: .4rem; font-weight: 500;
    }

    /* ── Vorteile ── */
    #vorteile { background: var(--navy-mid); }
    .vorteile__grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1px; background: var(--border); border: 1px solid var(--border);
    }
    .vorteil-card {
      background: var(--navy-mid);
      padding: 2.8rem 2.5rem;
      display: flex; align-items: flex-start; gap: 2rem;
      position: relative; overflow: hidden;
      opacity: 0; transform: translateY(40px);
      transition: opacity .7s var(--ease), transform .7s var(--ease), background .3s;
    }
    .vorteil-card:hover { background: rgba(17,21,39,.95); }
    .vorteil-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3rem; font-weight: 800;
      color: var(--yellow); line-height: 1;
      flex-shrink: 0; width: 2.8rem; opacity: .4;
      transition: opacity .3s;
    }
    .vorteil-card:hover .vorteil-num { opacity: 1; }
    .vorteil-card__icon {
      width: 28px; height: 28px;
      color: var(--yellow); display: block; margin-bottom: .7rem;
    }
    .vorteil-card__icon svg { width: 100%; height: 100%; }
    .vorteil-card__title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .04em;
      color: var(--text); margin-bottom: .5rem;
    }
    .vorteil-card__desc {
      font-size: .87rem; color: var(--muted); line-height: 1.75; font-weight: 300;
    }

    /* ── Kontakt ── */
    #kontakt { background: var(--navy); }
    .kontakt-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: start;
    }
    .kontakt-info__title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.8rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .04em;
      color: var(--text); margin-bottom: 1rem; line-height: 1.1;
    }
    .kontakt-info p {
      font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem;
    }
    .kontakt-details {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: .9rem 1.8rem;
      align-items: baseline;
    }
    .kontakt-detail { display: contents; }
    .kontakt-detail__label {
      font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
      color: var(--yellow); font-weight: 500; white-space: nowrap;
    }
    .kontakt-detail__val { font-size: .9rem; color: var(--muted); }

    .kontakt-form-section {
      opacity: 0; transform: translateY(40px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }
    .kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
    .kontakt-form label {
      display: block;
      font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
      color: var(--yellow); font-weight: 500; margin-bottom: .4rem;
    }
    .kontakt-form input,
    .kontakt-form textarea {
      width: 100%;
      background: rgba(255,255,255,.03);
      border: 1px solid var(--border); color: var(--text);
      padding: .85rem 1rem;
      font-family: 'Barlow', sans-serif; font-size: .9rem; font-weight: 300;
      outline: none; transition: border-color .25s, background .25s;
    }
    .kontakt-form input::placeholder,
    .kontakt-form textarea::placeholder { color: var(--muted); opacity: .5; }
    .kontakt-form input:focus,
    .kontakt-form textarea:focus {
      border-color: var(--yellow); background: var(--yellow-dim);
    }
    .kontakt-form textarea { min-height: 110px; resize: vertical; }
    .kontakt-form button {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: .95rem;
      letter-spacing: .18em; text-transform: uppercase;
      padding: 1rem 2.4rem;
      background: var(--yellow); color: var(--navy);
      border: none; cursor: pointer; align-self: flex-start;
      transition: background .25s, transform .2s, box-shadow .25s;
    }
    .kontakt-form button:hover {
      background: var(--yellow-lt); transform: translateY(-1px);
      box-shadow: 0 8px 24px -8px rgba(245,200,0,.4);
    }
    .kontakt-form button:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
    .form-success {
      display: none; padding: 1rem 1.2rem;
      border: 1px solid rgba(245,200,0,.35);
      background: var(--yellow-dim); color: var(--yellow-lt);
      font-size: .85rem; letter-spacing: .04em; margin-top: .5rem;
    }
    .form-error {
      display: none; padding: 1rem 1.2rem;
      border: 1px solid rgba(220,60,60,.4);
      background: rgba(220,60,60,.08); color: #f08080;
      font-size: .85rem; letter-spacing: .04em; margin-top: .5rem;
    }
    .datenschutz-check {
      display: flex; align-items: flex-start; gap: .75rem;
      margin-top: .25rem;
    }
    .datenschutz-check input[type="checkbox"] {
      width: 16px; height: 16px; flex-shrink: 0; margin-top: .15rem;
      accent-color: var(--yellow); cursor: pointer;
    }
    .datenschutz-check label {
      font-size: .82rem; color: var(--muted); letter-spacing: 0;
      text-transform: none; font-weight: 300; cursor: pointer;
    }
    .datenschutz-check label a {
      color: var(--yellow); text-decoration: underline;
    }

    /* ── Footer ── */
    footer {
      background: var(--navy-card);
      border-top: 1px solid var(--border);
      padding: 2.5rem; position: relative; z-index: 5;
    }
    .footer-inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      gap: 1.5rem; flex-wrap: wrap;
    }
    .footer-logo img {
      height: 34px; width: auto; display: block; object-fit: contain; opacity: .8;
    }
    .footer-copy { font-size: .78rem; color: var(--muted); }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a {
      font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--muted); text-decoration: none; transition: color .2s;
    }
    .footer-links a:hover { color: var(--yellow); }

    /* ── Modals ── */
    .modal-overlay {
      display: none; position: fixed; z-index: 1000; inset: 0;
      background: rgba(11,14,26,.85); backdrop-filter: blur(8px);
    }
    .modal-overlay.open { display: flex; align-items: center; justify-content: center; }
    .modal-box {
      background: var(--navy-card); border: 1px solid var(--border);
      max-width: 560px; width: 90%;
      padding: 3rem 2.5rem; position: relative;
      max-height: 85vh; overflow-y: auto;
    }
    .modal-box h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.8rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: .04em;
      color: var(--text); margin-bottom: 1.5rem;
    }
    .modal-box p { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
    .modal-box p b { color: var(--text); font-weight: 500; }
    .modal-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      background: none; border: none; color: var(--muted);
      font-size: 1.4rem; cursor: pointer; line-height: 1; transition: color .2s;
    }
    .modal-close:hover { color: var(--yellow); }

    /* ── Scroll-to-top ── */
    .scroll-top {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
      width: 44px; height: 44px;
      background: var(--yellow); color: var(--navy);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .3s, transform .3s;
    }
    .scroll-top.visible { opacity: 1; pointer-events: auto; }
    .scroll-top:hover { transform: translateY(-3px); }
    .scroll-top svg { width: 18px; height: 18px; }

    /* ── Reveal ── */
    .reveal {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }

    /* ── Responsive ── */
    @media (max-width: 1000px) {
      .leistungen__grid { grid-template-columns: repeat(2,1fr); }
      .kontakt-grid { grid-template-columns: 1fr; gap: 3.5rem; }
      .ueber-uns__grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .ueber-uns__sticky { position: static; }
    }
    @media (max-width: 700px) {
      .nav-container { padding: 0 1.2rem; }
      .nav-container > nav a, .cta-header { display: none; }
      .hamburger { display: flex; }
      .hero__content { padding: 0 1.2rem; }
      .hero__kpis { flex-direction: column; gap: 1.5rem; border-top: none; padding-top: 0; }
      .kpi { border-right: none; padding-right: 0; margin-right: 0; }
      .section-wrap { padding: 4.5rem 1.2rem; }
      .leistungen__grid { grid-template-columns: 1fr; }
      .vorteile__grid { grid-template-columns: 1fr; }
      .kpi-strip { padding: 2.5rem 1.2rem; }
      .kpi-strip__inner { grid-template-columns: 1fr; gap: 2rem; }
      .extra-kpi { border-right: none; padding-right: 0; }
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
      footer { padding-bottom: calc(2.5rem + env(safe-area-inset-bottom)); }
      .scroll-top { bottom: 1.2rem; right: 1.2rem; }
    }
