    :root {
      --surface: rgba(255, 255, 255, 0.82);
      --bg: #f6f8ff;
      --card: #ffffffcc;
      --text: #142246;
      --muted: #5c6a8a;
      --blue: #7ea8ff;
      --blue-soft: #e8efff;
      --pink: #ee87bc;
      --pink-soft: #fff1f7;
      --lavender: #bda7f2;
      --line: rgba(126, 168, 255, .18);
      --shadow: 0 14px 38px rgba(20, 34, 70, .08);
    }

    * {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(126, 168, 255, .18), transparent 30%),
        radial-gradient(circle at top right, rgba(238, 135, 188, .16), transparent 28%),
        linear-gradient(180deg, #fbfcff, #f3f6ff);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    main a:not(.cta) {
      color: var(--blue);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid rgba(126, 168, 255, 0.4);
      transition: all 0.2s ease;
    }

    main a:not(.cta):hover {
      color: var(--pink);
      border-bottom-color: var(--pink);
    }

    img {
      max-width: 100%;
      display: block
    }

    h2 {
      text-align: center;
    }

    .container {
      max-width: 1120px;
      margin: auto;
      padding: 10px
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-top: 18px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800
    }

    .logo span {
      font-size: 22px;
    }

    .logo img {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      box-shadow: 0 10px 24px rgba(20, 34, 70, .15);
    }

    .logo small {
      display: block;
      color: var(--muted);
      font-weight: 650;
      font-size: .9rem;
      margin-top: -5px;
    }

    nav {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--muted);
      font-weight: 700;
      font-size: .95rem
    }

    nav a:hover {
      color: var(--text)
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      color: var(--text);
      background: transparent;
      border: none;
      cursor: pointer;
    }

    .menu-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(20, 34, 70, 0.08);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(3px);
      z-index: 40;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease;
    }

    .hero {
      text-align: center;
      padding: 0
    }

    h1 {
      font-size: clamp(2.6rem, 5vw, 4.8rem);
      line-height: 1.02;
      letter-spacing: -.04em;
      margin: 0 0 14px
    }

    .hero p {
      max-width: 780px;
      margin: 0 auto 5px;
      color: var(--muted);
      font-size: 1.08rem
    }

    .cta {
      display: inline-block;
      margin: 5px 3px;
      padding: 12px 22px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--blue), var(--lavender), var(--pink));
      color: white;
      font-weight: 850;
      text-decoration: none;
      box-shadow: 0 12px 28px rgba(238, 135, 188, .22);
    }

    .cta.secondary {
      background: white;
      color: var(--text);
      border: 1px solid var(--line);
      box-shadow: var(--shadow)
    }

    .hero-image {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero-image,
    .inline-image {
      margin-top: 4px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 255, 255, .7);
      background: rgba(255, 255, 255, .4);
    }

    .hero-image img,
    .inline-image img {
      width: 100%;
      display: block
    }

    .image-caption {
      padding: 10px 14px;
      color: var(--muted);
      font-weight: 700;
      font-size: .92rem;
      background: rgba(255, 255, 255, .5);
      text-align: center;
    }

    .card {
      background: var(--card);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, .72);
      border-radius: 24px;
      padding: 16px;
      margin: 10px 0;
      box-shadow: var(--shadow);
    }

    .card h2 {
      margin: 5px 0 0 0;
    }

    .card-inko .grid {
      grid-template-columns: .6fr 1fr;
    }

    .card-inko h3 {
      text-align: center;
      margin: 3px 0;
      padding: 10px;
      background: yellowgreen;
      color: white;
      width: auto;
      font-size: 22px;
    }

    .card-inko .cta {
      display: block;
      text-align: center;
      width: fit-content;
      margin: 28px auto 4px;
      font-size: 20px;
    }

    .title-with-icon {
      display: flex;
      align-items: center;
      /* vertikal */
      justify-content: center;
      /* horizontal */
      gap: 10px;
      text-align: center;
    }

    .title-with-icon svg {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }

    .title-with-icon h2 {
      margin: 0 !important;
    }

    svg.together {
      color: green;
    }

    .soft {
      background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 241, 247, .88))
    }

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

    .space-grid {
      display: grid;
      /* grid-template-columns: 1.05fr .95fr; */
      gap: 20px;
      align-items: stretch
    }

    .knowledge-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(244, 247, 255, .86));
      position: relative;
      overflow: clip;
    }

    .knowledge-card:before {
      content: "";
      position: absolute;
      left: -10%;
      bottom: -24%;
      width: 54%;
      height: 58%;
      background: linear-gradient(135deg, rgba(126, 168, 255, .13), rgba(238, 135, 188, .10));
      clip-path: polygon(0 0, 100% 22%, 78% 100%, 0 100%);
      border-radius: 32px
    }

    .knowledge-card>* {
      position: relative;
      z-index: 1
    }

    .knowledge-intro {
      color: var(--muted);
      margin-top: 0
    }

    .qa-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 18px
    }

    .qa-item {
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px;
      box-shadow: 0 8px 22px rgba(20, 34, 70, .04);
      scroll-margin-top: 90px;
    }

    .qa-item:target {
      outline: 2px solid var(--blue);
      box-shadow: 0 0 0 4px rgba(126, 168, 255, .15);
    }

    .qa-item.full {
      grid-column: 1/-1;
      background: linear-gradient(135deg, rgba(255, 241, 247, .76), rgba(232, 239, 255, .62))
    }

    .qa-item h3 {
      margin: 0 0 8px;
      font-size: 1.08rem;
      line-height: 1.25;
      color: var(--text)
    }

    .qa-item p {
      margin: 6px 0;
      color: #33415f
    }

    .qa-item:target {
      outline: 2px solid var(--blue);
      box-shadow: 0 0 0 4px rgba(126, 168, 255, .15);
    }

    .qa-item .hero-image img {
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .qa-kicker {
      display: inline-block;
      margin-bottom: 10px;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .78);
      border: 1px solid var(--line);
      font-size: .82rem;
      font-weight: 850;
      color: #405276
    }

    .faq-group {
      display: grid;
      gap: 14px;
      margin-top: 14px;
    }

    .faq-group h3 {
      text-align: center;
      margin: 0;
      font-size: 1.25rem;
    }

    .faq-group h4 {
      margin: 0;
      font-size: 1rem;
      color: var(--text);
    }

    .faq-group+.faq-group {
      padding-top: 10px;
      border-top: 1px solid var(--line);
    }

    details summary {
      cursor: pointer;
      font-weight: 700;
      font-size: 18px;
    }

    .cost-note {
      margin-top: 14px;
      padding: 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, .76);
      border-left: 4px solid var(--pink);
      color: #33415f
    }

    .space-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(244, 247, 255, .84));
      position: relative;
      overflow: hidden
    }

    .space-card:before {
      content: "";
      position: absolute;
      right: -12%;
      bottom: -22%;
      width: 58%;
      height: 62%;
      background: linear-gradient(135deg, rgba(126, 168, 255, .16), rgba(238, 135, 188, .12));
      clip-path: polygon(22% 0, 100% 0, 72% 100%, 0 100%);
      border-radius: 32px
    }

    .space-card>* {
      position: relative;
      z-index: 1
    }

    .space-list {
      display: grid;
      gap: 12px;
      margin-top: 16px
    }

    .space-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      background: rgba(255, 255, 255, .66);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 13px 14px;
      color: #33415f
    }

    .space-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--blue), var(--pink));
      color: white;
      font-weight: 900;
      font-size: .9rem
    }

    .freedom-box {
      background: linear-gradient(135deg, rgba(255, 241, 247, .85), rgba(232, 239, 255, .72));
      border: 1px solid rgba(255, 255, 255, .78);
      border-radius: 22px;
      padding: 20px;
    }

    .freedom-box strong {
      display: block;
      margin-bottom: 6px;
      font-size: 1.08rem
    }

    .perspectives {
      padding: 24px 0 10px
    }

    .perspectives-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 12px
    }

    .perspectives-head h2 {
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.08;
      letter-spacing: -.03em;
      margin: 0 0 10px
    }

    .perspectives-head p {
      margin: 0
    }

    .perspectives-head p,
    .perspectives-head ul {
      color: var(--muted);
    }

    .perspective-wrap {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 112px 1fr;
      gap: 18px;
      align-items: stretch
    }

    .perspective-card {
      position: relative;
      overflow: hidden;
      min-height: 430px;
      border-radius: 30px;
      padding: 24px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid rgba(255, 255, 255, .75);
      box-shadow: var(--shadow)
    }

    .perspective-card:before {
      content: "";
      position: absolute;
      inset: auto -20% -22% 35%;
      height: 55%;
      background: linear-gradient(135deg, rgba(126, 168, 255, .16), rgba(238, 135, 188, .12));
      clip-path: polygon(20% 0, 100% 0, 76% 100%, 0 100%);
      border-radius: 28px
    }

    .perspective-card>* {
      position: relative;
      z-index: 1
    }

    .perspective-card.dl {
      background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(232, 239, 255, .72))
    }

    .perspective-card.ab {
      background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 240, 250, .82));
      box-shadow: 0 18px 46px rgba(238, 135, 188, .12)
    }

    .perspective-image {
      position: relative;
      height: 150px;
      border-radius: 22px;
      margin-bottom: 18px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .72);
      display: flex;
      align-items: end;
    }

    .perspective-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.9);
    }

    .perspective-image:after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(20, 34, 70, 0) 40%, rgba(20, 34, 70, 0.45));
    }

    .perspective-image span {
      position: relative;
      z-index: 1;
      padding: 12px 14px;
      color: white;
      font-weight: 800;
    }

    .perspective-image.dl-img {
      background: linear-gradient(180deg, transparent, rgba(20, 34, 70, .12)), radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .7), transparent 24%), linear-gradient(135deg, #eef4ff, #dfe9ff)
    }

    .perspective-image.ab-img {
      background: linear-gradient(180deg, transparent, rgba(20, 34, 70, .10)), radial-gradient(circle at 75% 20%, rgba(255, 255, 255, .75), transparent 24%), linear-gradient(135deg, #fff5fa, #efe7ff)
    }

    .perspective-card h3 {
      font-size: 1.45rem;
      line-height: 1.18;
      margin: 0 0 10px;
      letter-spacing: -.015em
    }

    .perspective-card p {
      color: var(--muted);
      margin: 0 0 14px
    }

    .perspective-card ul {
      padding-left: 18px;
      margin: 0;
      color: #33415f
    }

    .perspective-card li {
      margin: 8px 0
    }

    .badge {
      display: inline-block;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--line);
      font-size: .82rem;
      font-weight: 800;
      color: #405276;
      margin-bottom: 10px
    }

    .bridge {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 112px
    }

    .bridge:before,
    .bridge:after {
      content: "";
      position: absolute;
      top: 50%;
      width: 42px;
      height: 2px;
      background: linear-gradient(90deg, rgba(126, 168, 255, .35), rgba(238, 135, 188, .35))
    }

    .bridge:before {
      right: 68px
    }

    .bridge:after {
      left: 68px
    }

    .bridge-symbol {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--blue), var(--lavender), var(--pink));
      box-shadow: 0 18px 42px rgba(126, 168, 255, .24), 0 0 0 12px rgba(255, 255, 255, .42);
      color: white;
      font-size: 2rem;
      font-weight: 900;
      border: 7px solid rgba(255, 255, 255, .75)
    }

    .bridge-label {
      position: absolute;
      top: calc(50% + 58px);
      left: 50%;
      transform: translateX(-50%);
      width: 170px;
      text-align: center;
      font-size: .95rem;
      line-height: 1.15;
      font-weight: 950;
      color: #263a63;
      letter-spacing: -.01em
    }

    .unity-card {
      margin-top: 18px;
      margin-bottom: 0;
      text-align: center;
      background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(244, 247, 255, .82))
    }

    .unity-card h2 {
      display: block;
      margin-bottom: 6px
    }

    .unity-card p {
      margin: 5px auto;
      color: var(--muted)
    }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px
    }

    .testimonial-card {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--line);
      padding: 12px;
      border-radius: 14px
    }

    .avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: .8rem;
      font-weight: 800;
      color: white;
      background: linear-gradient(135deg, var(--blue), var(--pink));
      box-shadow: 0 6px 14px rgba(20, 34, 70, .15);
      flex-shrink: 0
    }

    .testimonial {
      margin: 0;
      color: #33415f;
      font-style: italic
    }

    .testimonial small {
      display: block;
      color: var(--muted);
      font-style: normal;
      font-size: .8rem;
      margin-top: 4px
    }

    .info-card h3,
    .schedule-card h3,
    .gallery-card h3,
    .contact-card h3 {
      margin: 0 0 10px;
      font-size: 1.16rem;
    }

    .info-card p,
    .schedule-card p,
    .contact-card p,
    .faq-item p,
    .gallery-card p {
      color: var(--muted);
      margin: 0;
    }

    .next-schedules,
    .next-schedules .cta {
      text-align: center;
    }

    .next-schedules .cta {
      display: block;
    }

    .next-schedules ul {
      display: inline-block;
      text-align: left;
      margin-top: 0;
    }

    .split-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 18px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin: 10px 0;
    }

    .gallery-tile {
      position: relative;
      min-height: 96px;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 14px;
      background: linear-gradient(135deg, rgba(232, 239, 255, .9), rgba(255, 241, 247, .9));
      border: 1px solid rgba(255, 255, 255, .72);
    }

    .gallery-tile img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-tile:after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(20, 34, 70, 0) 35%, rgba(20, 34, 70, .42));
    }

    .gallery-tile span {
      position: relative;
      z-index: 1;
      color: white;
      font-weight: 850;
    }

    .schedule-card,
    .gallery-card,
    .contact-card {
      border-radius: 30px;
      padding: 20px;
    }

    .next-date {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255, 255, 255, .68);
      border: 1px solid rgba(126, 168, 255, .16);
      margin: 18px 0;
    }

    .date-badge {
      width: 72px;
      height: 72px;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(126, 168, 255, .24), rgba(245, 154, 194, .24));
      display: grid;
      place-items: center;
      font-weight: 800;
      text-align: center;
      line-height: 1.05;
      color: #35539a;
    }

    .hero-card,
    .glass,
    .faq-item,
    .gallery-card,
    .schedule-card,
    .contact-card,
    .info-card {
      background: var(--surface);
      border: 1px solid rgba(255, 255, 255, 0.65);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .bracelet {
      padding: 3px;
    }

    .bracelet-green,
    .bracelet-red {
      color: white;
    }

    .bracelet-green {
      background-color: green;
    }

    .bracelet-yellow {
      background-color: yellow;
    }

    .bracelet-red {
      background-color: red;
    }


    .hero-card {
      position: relative;
      overflow: hidden;
      padding: 42px;
      border-radius: 36px;
      min-height: 470px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .7)),
        linear-gradient(135deg, rgba(126, 168, 255, .1), rgba(245, 154, 194, .08));
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: auto -8% -18% 34%;
      height: 62%;
      background: linear-gradient(120deg, rgba(126, 168, 255, .16), rgba(245, 154, 194, .14));
      clip-path: polygon(12% 0, 100% 0, 72% 100%, 0 100%);
      border-radius: 42px;
      z-index: 0;
    }

    .reason {
      display: flex;
      align-items: left;
      gap: 7px;
      margin-bottom: 10px;
      width: fit-content;
    }

    .reason svg {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      color: #4CAF50;
    }

    .reason strong {
      vertical-align: bottom;
    }

    .reason:first-child svg {
      transform: scale(1.1);
    }

    .reasons {
      width: fit-content;
      text-align: left;
      width: fit-content;
      max-width: 100%;

      /* Overflow auf Mobilgeräten verhindern */
      margin: 10px auto 0 auto;

      position: relative;
      overflow: hidden;

      backdrop-filter: blur(8px);
      background: rgba(255, 255, 255, 0.55);
      border-radius: 20px;
      padding: 24px 32px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .reasons-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("img/billard.avif") center/cover;
      opacity: 0.38;
      filter: blur(6px);
    }

    .reasons h3 {
      margin-bottom: 5px;
      text-align: center;
    }

    .reasons .cta {
      font-size: 20px;
      text-align: center;
      margin: 0 auto;
      display: block;
    }

    .contact-card .cta {
      border-radius: 15px;
      font-size: 20px;
    }

    .contact-card {
      text-align: center
    }

    .contact-card svg {
      height: 48px;
      display: block;
      text-align: center;
      margin: 0 auto;

    }

    .dont-wait-card {
      text-align: center;
      list-style-position: inside;
    }

    .dont-wait-card .cta {
      margin-bottom: 15px;
    }

    @media(max-width:900px) {
      header {
        align-items: flex-start;
        flex-direction: column
      }

      .grid,
      .testimonials,
      .space-grid,
      .qa-grid {
        grid-template-columns: 1fr
      }

      .grid p {
        margin-bottom: 0;
      }

      .perspective-wrap {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: center
      }

      .perspective-card.dl {
        margin-bottom: -6px;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
        padding-bottom: 30px;
        background: linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(232, 239, 255, .76) 78%, rgba(244, 247, 255, .9) 100%)
      }

      .perspective-card.ab {
        margin-top: -6px;
        border-top-left-radius: 28px;
        border-top-right-radius: 28px
      }

      .perspective-card.ab:after {
        display: none
      }

      .bridge {
        min-height: 76px;
        margin: -14px 0 -8px;
        z-index: 3
      }

      .bridge:before,
      .bridge:after {
        display: none
      }

      .bridge-symbol {
        width: 76px;
        height: 76px;
        font-size: 1.7rem;
        border-width: 5px;
        box-shadow: 0 9px 22px rgba(126, 168, 255, .20), 0 0 0 4px rgba(255, 255, 255, .36)
      }

      .bridge-label {
        top: 61px;
        width: 210px;
        font-size: 1.04rem;
        line-height: 1.1;
        font-weight: 980;
        color: #172b54;
        text-shadow: 0 1px 0 rgba(255, 255, 255, .55)
      }

      .split-grid {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* Menü Mobil */
    @media (max-width: 700px) {
      header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 60;
      }

      header.container {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
      }

      header {
        position: relative;
        z-index: 60;
      }

      body.menu-open {
        overflow: hidden;
      }

      .site-header {
        align-items: stretch;
        gap: 12px;
      }

      .logo {
        align-items: center;
        flex: 1;
        min-width: 0;
      }

      .logo span {
        font-size: 18px;
        line-height: 1.65;
      }

      nav {
        display: none;
      }

      nav.is-open {
        position: fixed;
        inset: 0;
        z-index: 50;

        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 14px;

        padding: 96px 20px 24px;

        background:
          radial-gradient(circle at top left, rgba(126, 168, 255, .18), transparent 35%),
          radial-gradient(circle at top right, rgba(238, 135, 188, .16), transparent 35%),
          linear-gradient(180deg, #fbfcff, #f3f6ff);

        animation: menuFadeIn .2s ease;
      }

      @keyframes menuFadeIn {
        from {
          opacity: 0;
          transform: translateY(10px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      nav.is-open a {
        text-align: center;
        font-size: 1.3rem;
        padding: 16px;
        border-radius: 18px;

        background: rgba(255, 255, 255, .7);
        border: 1px solid var(--line);
        font-weight: 850;
      }

      .menu-toggle {
        margin-left: auto;
        margin-top: -5px;
        z-index: 60;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(20, 34, 70, 0.06);
        border: 1px solid rgba(20, 34, 70, 0.08);
        display: grid;
        place-items: center;
      }

      .menu-toggle[aria-expanded="true"]::before {
        content: "×";
      }

      .menu-toggle[aria-expanded="true"] {
        font-size: 0;
      }

      .menu-toggle[aria-expanded="true"]::before {
        font-size: 34px;
        line-height: 1;
      }

      .menu-toggle:active {
        transform: scale(0.95);
      }

      nav a {
        background: rgba(255, 255, 255, .72);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 12px 14px;
        color: var(--text);
        font-weight: 850;
        box-shadow: 0 6px 16px rgba(20, 34, 70, .05);
      }

      nav.open a {
        display: block;
        padding: 14px 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, .78);
        font-weight: 850;
      }

      .card-inko .grid {
        grid-template-columns: 1fr;
      }

      .card-inko .hero-image {
        margin-bottom: -20px;
      }
      .card-inko h3 {
        margin-top: 15px;
      }
      .card-inko .cta {
        margin-top: 10px;
        width: 100%;
      }
    }

    @media(max-width:520px) {
      .container {
        padding: 6px;
      }

      .logo {
        flex: 1;
        min-width: 0;
      }

      .logo span {
        font-size: 18px;
        line-height: 1.15;
      }

      .logo small {
        font-size: 0.85rem;
        line-height: 2.2;
      }
    }