/* ═══ RESET & BASE ═══ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

    :root {
      /* Colors */
      --g:       #2d9e4f;
      --g2:      #38c062;
      --g3:      #1a7a38;
      --glow:    rgba(45, 158, 79, 0.15);
      --black:   #080c09;
      --dark:    #0d120e;
      --card:    #101510;
      --card2:   #141a15;
      --border:  rgba(45, 158, 79, 0.15);
      --border2: rgba(255, 255, 255, 0.07);
      --text:    #d8e8da;
      --muted:   #6a846c;
      --white:   #ffffff;
      /* Typography */
      --F: 'Bricolage Grotesque', sans-serif;
      --B: 'Inter', sans-serif;
      /* Spacing scale */
      --space-xs:  0.5rem;   /*  8px */
      --space-sm:  0.75rem;  /* 12px */
      --space-md:  1rem;     /* 16px */
      --space-lg:  1.5rem;   /* 24px */
      --space-xl:  2rem;     /* 32px */
      --space-2xl: 3rem;     /* 48px */
      --space-3xl: 4rem;     /* 64px */
      --space-4xl: 6rem;     /* 96px */
      /* Radii */
      --r-sm:  6px;
      --r-md:  10px;
      --r-lg:  14px;
      --r-xl:  18px;
      --r-pill: 50px;
    }

    body {
      font-family: var(--B);
      background: var(--black);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; }
    ul, ol { list-style: none; }
    button { font-family: inherit; }

    /* ═══ SKIP LINK (Accessibility) ═══ */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 1rem;
      background: var(--g);
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: var(--r-md);
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      z-index: 9999;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 1rem; }

    /* ═══ NAVIGATION ═══ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      background: rgba(8, 12, 9, 0.90);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border2);
      transition: background 0.3s;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: var(--F);
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -0.02em;
    }
    .nav-logo-mark {
      width: 32px; height: 32px;
      background: var(--g);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; color: #fff; font-weight: 800;
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }
    .nav-links a {
      color: var(--muted);
      font-size: 0.875rem;
      font-weight: 400;
      text-decoration: none;
      padding: 0.25rem 0;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 1px;
      background: var(--g2);
      transform: scaleX(0);
      transition: transform 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-actions { display: flex; gap: 0.5rem; align-items: center; }

    .btn-ghost {
      color: var(--text);
      font-size: 0.875rem;
      font-weight: 400;
      padding: 0.45rem 1rem;
      border: 1px solid var(--border2);
      border-radius: var(--r-md);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }

    .btn-green {
      background: var(--g);
      color: #fff;
      font-size: 0.875rem;
      font-weight: 600;
      padding: 0.5rem 1.25rem;
      border-radius: var(--r-md);
      text-decoration: none;
      border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      white-space: nowrap;
      display: inline-flex; align-items: center; gap: 0.35rem;
    }
    .btn-green:hover {
      background: var(--g2);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(45,158,79,0.3);
    }
    .btn-green:focus-visible,
    .btn-ghost:focus-visible { outline: 2px solid var(--g2); outline-offset: 2px; }

    /* ═══ HERO ═══ */
    #hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 9rem 5% 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-canvas {
      position: absolute; inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .hero-canvas::before {
      content: '';
      position: absolute;
      top: -15%; left: 50%;
      transform: translateX(-50%);
      width: min(1000px, 130vw);
      height: 700px;
      background: radial-gradient(ellipse at center, rgba(45,158,79,0.13) 0%, transparent 65%);
    }
    .hero-canvas::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(45,158,79,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,158,79,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
    }

    .hero-inner { position: relative; z-index: 1; max-width: 820px; }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(45,158,79,0.09);
      border: 1px solid rgba(45,158,79,0.28);
      color: #72d48a;
      font-size: 0.75rem;
      font-weight: 500;
      padding: 0.38rem 1.1rem;
      border-radius: var(--r-pill);
      letter-spacing: 0.06em;
      margin-bottom: var(--space-xl);
      animation: fadeUp 0.55s ease both;
    }
    .eyebrow-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #72d48a;
      animation: blink 2s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.3; transform: scale(1.5); }
    }

    .hero-h1 {
      font-family: var(--F);
      font-size: clamp(2.6rem, 5.5vw, 5rem);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -0.035em;
      color: var(--white);
      margin-bottom: var(--space-lg);
      animation: fadeUp 0.55s 0.08s ease both;
    }
    .hero-h1 .accent  { color: var(--g2); }
    .hero-h1 .outline {
      -webkit-text-stroke: 1.5px rgba(255,255,255,0.28);
      color: transparent;
    }

    .hero-lead {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto var(--space-2xl);
      font-weight: 300;
      line-height: 1.78;
      animation: fadeUp 0.55s 0.16s ease both;
    }

    .hero-cta {
      display: flex;
      gap: var(--space-md);
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: var(--space-md);
      animation: fadeUp 0.55s 0.24s ease both;
    }

    .btn-primary-lg {
      background: var(--g);
      color: #fff;
      font-family: var(--B);
      font-size: 1rem;
      font-weight: 600;
      padding: 0.9rem 2.2rem;
      border-radius: var(--r-lg);
      text-decoration: none;
      border: none; cursor: pointer;
      display: inline-flex; align-items: center; gap: 0.45rem;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      line-height: 1;
    }
    .btn-primary-lg:hover {
      background: var(--g2);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(45,158,79,0.3);
    }
    .btn-primary-lg:focus-visible { outline: 2px solid var(--g2); outline-offset: 2px; }

    .btn-secondary-lg {
      color: var(--text);
      font-size: 1rem;
      font-weight: 400;
      padding: 0.9rem 2.2rem;
      border-radius: var(--r-lg);
      text-decoration: none;
      border: 1px solid var(--border2);
      display: inline-flex; align-items: center; gap: 0.45rem;
      transition: border-color 0.2s, color 0.2s;
      line-height: 1;
    }
    .btn-secondary-lg:hover { border-color: rgba(255,255,255,0.22); color: var(--white); }
    .btn-secondary-lg:focus-visible { outline: 2px solid var(--g2); outline-offset: 2px; }

    .hero-subtext {
      font-size: 0.76rem;
      color: var(--muted);
      animation: fadeUp 0.55s 0.3s ease both;
    }

    .trust-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-xl);
      flex-wrap: wrap;
      margin-top: var(--space-3xl);
      padding-top: var(--space-2xl);
      border-top: 1px solid var(--border2);
      animation: fadeUp 0.55s 0.36s ease both;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
    .trust-check {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(45,158,79,0.18);
      border: 1px solid rgba(45,158,79,0.38);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.6rem;
      color: var(--g2);
      flex-shrink: 0;
      font-weight: 700;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ═══ LOGOS BAR ═══ */
    .logos-bar {
      padding: var(--space-2xl) 5%;
      background: var(--dark);
      border-top: 1px solid var(--border2);
      border-bottom: 1px solid var(--border2);
    }
    .logos-label {
      text-align: center;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: var(--space-lg);
    }
    .logos-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-lg);
      flex-wrap: wrap;
    }
    .logo-chip {
      font-family: var(--F);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.05em;
      color: rgba(255,255,255,0.2);
      text-transform: uppercase;
      padding: 0.4rem 0.9rem;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--r-sm);
      transition: color 0.2s, border-color 0.2s;
      cursor: default;
    }
    .logo-chip:hover { color: rgba(255,255,255,0.42); border-color: rgba(255,255,255,0.14); }

    /* ═══ STATS ═══ */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--card);
    }
    .stat-cell {
      padding: var(--space-2xl) var(--space-xl);
      text-align: center;
      border-right: 1px solid var(--border2);
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
    .stat-cell:last-child { border-right: none; }
    .stat-cell:hover { background: var(--card2); }
    .stat-cell::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--g2);
      transition: width 0.4s ease;
    }
    .stat-cell:hover::after { width: 60%; }

    .stat-value {
      font-family: var(--F);
      font-size: 2.75rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stat-value em { font-style: normal; color: var(--g2); }
    .stat-desc { font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.4; }
    .stat-tag {
      display: inline-block;
      font-size: 0.66rem;
      font-weight: 600;
      color: var(--g2);
      background: rgba(45,158,79,0.1);
      border: 1px solid rgba(45,158,79,0.2);
      border-radius: var(--r-pill);
      padding: 0.14rem 0.55rem;
      margin-top: 0.5rem;
    }

    /* ═══ SECTION SHELL ═══ */
    .section { padding: var(--space-4xl) 5%; }
    .section-alt { background: var(--dark); }
    .section-card { background: var(--card); }
    .inner { max-width: 1120px; margin: 0 auto; }

    .eyebrow-tag {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--g2);
      margin-bottom: 0.75rem;
    }

    .section-h2 {
      font-family: var(--F);
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      font-weight: 800;
      line-height: 1.07;
      letter-spacing: -0.025em;
      color: var(--white);
      margin-bottom: var(--space-md);
    }
    .section-lead {
      font-size: 0.97rem;
      color: var(--muted);
      max-width: 540px;
      line-height: 1.78;
      font-weight: 300;
      margin-bottom: var(--space-3xl);
    }

    /* ═══ USP CARDS ═══ */
    .usp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }
    .usp-card {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: var(--r-lg);
      padding: var(--space-xl);
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .usp-card:hover {
      border-color: var(--border);
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }
    .usp-icon-wrap {
      width: 44px; height: 44px;
      background: rgba(45,158,79,0.12);
      border: 1px solid rgba(45,158,79,0.2);
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.15rem;
      margin-bottom: var(--space-lg);
    }
    .usp-title {
      font-family: var(--F);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.55rem;
    }
    .usp-desc {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.72;
      font-weight: 300;
    }
    .usp-kpi {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: var(--space-md);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--g2);
      background: rgba(45,158,79,0.08);
      border: 1px solid rgba(45,158,79,0.15);
      padding: 0.22rem 0.7rem;
      border-radius: var(--r-pill);
    }

    /* ═══ TABS ═══ */
    .tab-bar {
      display: flex;
      border: 1px solid var(--border2);
      border-radius: var(--r-lg);
      overflow: hidden;
      margin-bottom: var(--space-2xl);
      width: fit-content;
      max-width: 100%;
    }
    .tab-btn {
      padding: 0.78rem 1.6rem;
      background: transparent;
      border: none;
      border-right: 1px solid var(--border2);
      color: var(--muted);
      font-family: var(--B);
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s;
    }
    .tab-btn:last-child { border-right: none; }
    .tab-btn[aria-selected="true"] { background: rgba(45,158,79,0.12); color: var(--g2); }
    .tab-btn:hover:not([aria-selected="true"]) { background: rgba(255,255,255,0.03); color: var(--text); }
    .tab-btn:focus-visible { outline: 2px solid var(--g2); outline-offset: -2px; }

    .tab-panel { display: none; }
    .tab-panel[aria-hidden="false"] {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    .panel-h3 {
      font-family: var(--F);
      font-size: 1.65rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: var(--space-md);
    }
    .panel-p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.78;
      font-weight: 300;
      margin-bottom: var(--space-lg);
    }
    .panel-feats { display: flex; flex-direction: column; gap: 0.6rem; }
    .panel-feat {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.875rem;
      color: var(--text);
    }
    .feat-check {
      display: inline-flex; align-items: center; justify-content: center;
      width: 19px; height: 19px; flex-shrink: 0;
      background: rgba(45,158,79,0.14);
      border: 1px solid rgba(45,158,79,0.35);
      border-radius: 50%;
      color: var(--g2);
      font-size: 0.62rem;
      font-weight: 700;
    }

    /* Mock UI cards */
    .mock-ui {
      background: var(--card2);
      border: 1px solid var(--border2);
      border-radius: var(--r-lg);
      padding: var(--space-lg);
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    .mock-row {
      background: var(--dark);
      border: 1px solid var(--border2);
      border-radius: var(--r-md);
      padding: 0.82rem 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .mock-ic {
      width: 30px; height: 30px;
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem;
      flex-shrink: 0;
    }
    .ic-g  { background: rgba(45,158,79,0.18); }
    .ic-y  { background: rgba(234,179,8,0.18); }
    .ic-r  { background: rgba(239,68,68,0.18); }
    .ic-b  { background: rgba(59,130,246,0.18); }
    .mock-label { font-size: 0.82rem; font-weight: 500; color: var(--text); }
    .mock-sub   { font-size: 0.72rem; color: var(--muted); }
    .mock-badge {
      margin-left: auto;
      font-size: 0.68rem;
      font-weight: 600;
      padding: 0.13rem 0.55rem;
      border-radius: var(--r-pill);
      white-space: nowrap;
    }
    .badge-ok  { background: rgba(45,158,79,0.12); color: var(--g2); border: 1px solid rgba(45,158,79,0.22); }
    .badge-wait{ background: rgba(234,179,8,0.12); color: #eab308;  border: 1px solid rgba(234,179,8,0.22); }

    /* ═══ COMPARISON TABLE ═══ */
    .compare-wrap {
      overflow-x: auto;
      border: 1px solid var(--border2);
      border-radius: var(--r-xl);
      overflow: hidden;
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
    }
    .compare-table thead th {
      padding: 1.1rem 1.5rem;
      font-family: var(--F);
      font-size: 0.85rem;
      font-weight: 700;
      text-align: left;
      background: var(--card2);
      border-bottom: 1px solid var(--border2);
      white-space: nowrap;
    }
    .compare-table thead th:nth-child(2) {
      color: var(--g2);
      background: rgba(45,158,79,0.06);
    }
    .compare-table thead th:nth-child(3) { color: var(--muted); }
    .compare-table tbody td {
      padding: 0.9rem 1.5rem;
      font-size: 0.86rem;
      border-bottom: 1px solid var(--border2);
      color: var(--muted);
      vertical-align: middle;
    }
    .compare-table tbody td:first-child { color: var(--text); font-weight: 400; }
    .compare-table tbody td:nth-child(2) { background: rgba(45,158,79,0.03); }
    .compare-table tbody tr:last-child td { border-bottom: none; }
    .compare-table tbody tr:hover td { background: rgba(255,255,255,0.012); }
    .compare-table tbody tr:hover td:nth-child(2) { background: rgba(45,158,79,0.045); }
    .c-yes  { color: var(--g2); font-weight: 600; }
    .c-no   { color: rgba(255,255,255,0.2); }
    .c-part { color: #eab308; }

    /* ═══ MODULE GRID ═══ */
    .mod-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border2);
      border: 1px solid var(--border2);
      border-radius: var(--r-xl);
      overflow: hidden;
    }
    .mod-card {
      background: var(--black);
      padding: 2.2rem 1.8rem;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
    .mod-card:hover { background: var(--card); }
    .mod-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--g), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .mod-card:hover::after { opacity: 1; }
    .mod-num {
      font-family: var(--F);
      font-size: 2.2rem;
      font-weight: 800;
      color: rgba(45,158,79,0.1);
      line-height: 1;
      margin-bottom: var(--space-lg);
    }
    .mod-title {
      font-family: var(--F);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.55rem;
      color: var(--white);
    }
    .mod-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

    /* ═══ FAQ ═══ */
    .faq-list { max-width: 720px; }
    .faq-item { border-bottom: 1px solid var(--border2); }
    .faq-trigger {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.35rem 0;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--B);
      font-size: 0.97rem;
      font-weight: 500;
      color: var(--text);
      text-align: left;
      gap: var(--space-md);
      transition: color 0.2s;
    }
    .faq-trigger:hover { color: var(--white); }
    .faq-trigger:focus-visible { outline: 2px solid var(--g2); outline-offset: 2px; border-radius: 4px; }
    .faq-icon {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
      color: var(--muted);
      transition: background 0.2s, color 0.2s, transform 0.3s;
    }
    .faq-item[open] .faq-icon {
      background: rgba(45,158,79,0.12);
      color: var(--g2);
      transform: rotate(45deg);
    }
    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.78;
      font-weight: 300;
    }
    .faq-item[open] .faq-body { max-height: 220px; padding-bottom: 1.35rem; }

    /* ═══ TESTIMONIALS ═══ */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-lg);
    }
    .testi-card {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: var(--r-xl);
      padding: var(--space-xl);
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .testi-card:hover {
      border-color: rgba(45,158,79,0.25);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }
    .testi-stars {
      color: var(--g2);
      font-size: 0.85rem;
      margin-bottom: var(--space-md);
      letter-spacing: 0.08em;
    }
    .testi-quote {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.78;
      font-weight: 300;
      font-style: italic;
      margin-bottom: var(--space-lg);
    }
    .testi-author { display: flex; align-items: center; gap: 0.8rem; }
    .testi-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--g3);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--F);
      font-weight: 800;
      font-size: 0.8rem;
      color: #fff;
      flex-shrink: 0;
    }
    .testi-name {
      font-family: var(--F);
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--white);
    }
    .testi-role { font-size: 0.75rem; color: var(--muted); }

    /* ═══ CTA BLOCK ═══ */
    .cta-block {
      text-align: center;
      padding: 7rem 5%;
      position: relative;
      overflow: hidden;
    }
    .cta-glow {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 800px; height: 500px;
      background: radial-gradient(ellipse, rgba(45,158,79,0.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
    .cta-h2 {
      font-family: var(--F);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      line-height: 1.07;
      letter-spacing: -0.025em;
      color: var(--white);
      margin-bottom: var(--space-md);
    }
    .cta-sub {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.78;
      margin-bottom: var(--space-2xl);
    }
    .cta-actions { display: flex; justify-content: center; gap: var(--space-md); flex-wrap: wrap; }
    .cta-footnote { font-size: 0.74rem; color: var(--muted); margin-top: var(--space-md); }

    /* ═══ FOOTER ═══ */
    .site-footer {
      background: var(--black);
      border-top: 1px solid var(--border2);
      padding: var(--space-3xl) 5% var(--space-xl);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr repeat(3, 1fr);
      gap: var(--space-2xl);
      margin-bottom: var(--space-2xl);
    }
    .footer-brand-tagline {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.65;
      max-width: 270px;
      margin-top: 0.75rem;
    }
    .footer-cert {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: var(--space-md);
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--g2);
      background: rgba(45,158,79,0.08);
      border: 1px solid rgba(45,158,79,0.18);
      padding: 0.3rem 0.8rem;
      border-radius: var(--r-sm);
    }
    .footer-col-title {
      font-family: var(--F);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: var(--space-md);
    }
    .footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links a {
      font-size: 0.84rem;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: var(--space-md);
      padding-top: var(--space-xl);
      border-top: 1px solid var(--border2);
    }
    .footer-copy { font-size: 0.76rem; color: var(--muted); }
    .footer-legal { display: flex; gap: var(--space-lg); }
    .footer-legal a {
      font-size: 0.76rem;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-legal a:hover { color: var(--white); }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stats-row  { grid-template-columns: repeat(2, 1fr); }
      .stat-cell:nth-child(2) { border-right: none; }
      .stat-cell:nth-child(3),
      .stat-cell:nth-child(4) { border-top: 1px solid var(--border2); }
    }

    @media (max-width: 860px) {
      .nav-links  { display: none; }
      .usp-grid   { grid-template-columns: 1fr 1fr; }
      .tab-panel[aria-hidden="false"] { grid-template-columns: 1fr; }
      .mod-grid   { grid-template-columns: 1fr 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .tab-bar    { flex-wrap: wrap; width: 100%; border-radius: var(--r-md); }
      .tab-btn    { flex: 1 0 auto; border-radius: 0; }
    }

    @media (max-width: 600px) {
      :root { --space-4xl: 4rem; }
      .usp-grid   { grid-template-columns: 1fr; }
      .mod-grid   { grid-template-columns: 1fr; }
      .stats-row  { grid-template-columns: 1fr; }
      .stat-cell  { border-right: none; border-bottom: 1px solid var(--border2); }
      .footer-grid { grid-template-columns: 1fr; }
      .compare-table thead th,
      .compare-table tbody td { padding: 0.7rem 0.8rem; font-size: 0.8rem; }
      .hero-h1 { font-size: 2.4rem; }
    }

    /* ═══ PRINT ═══ */
    @media print {
      nav, .hero-canvas, .cta-glow { display: none; }
      body { background: #fff; color: #000; }
      a::after { content: " (" attr(href) ")"; font-size: 0.7em; }
    }

/* ════════════════════════════════════════════════════════
   UNTERSEITEN – Zusätzliche Styles
   ════════════════════════════════════════════════════════ */

/* Page Hero (kleiner als Startseite) */
.page-hero { position:relative; padding:calc(var(--nav-h) + var(--space-3xl)) var(--space-md) var(--space-3xl); text-align:center; overflow:hidden; }
.page-hero .hero-h1 { font-size:clamp(2rem,5vw,3.5rem); }

/* Produkt-Split Layout */
.prod-split { display:grid; grid-template-columns:1fr 1fr; gap:var(--space-3xl); align-items:center; }
.prod-split-rev { direction:rtl; }
.prod-split-rev > * { direction:ltr; }
.prod-text { display:flex; flex-direction:column; gap:var(--space-md); }
.prod-mock { flex:1; min-width:280px; }
@media(max-width:768px) {
  .prod-split { grid-template-columns:1fr; }
  .prod-split-rev { direction:ltr; }
}

/* Pricing */
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem; margin-top:var(--space-2xl); }
.price-card { background:var(--card); border:1px solid rgba(45,158,79,.18); border-radius:var(--r-lg); padding:2rem; display:flex; flex-direction:column; gap:1rem; position:relative; transition:border-color .2s,transform .2s; }
.price-card:hover { border-color:var(--g); transform:translateY(-4px); }
.price-card-featured { border-color:var(--g); background:linear-gradient(160deg,rgba(45,158,79,.12),var(--card)); }
.price-card-enterprise { border-style:dashed; }
.price-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--g); color:#fff; font-size:.7rem; font-weight:700; padding:.3rem .9rem; border-radius:var(--r-pill); letter-spacing:.08em; white-space:nowrap; }
.price-tier { font-size:1.1rem; font-weight:700; color:var(--g2); letter-spacing:.06em; text-transform:uppercase; }
.price-amount { font-size:2.5rem; font-weight:800; font-family:var(--ff-head); color:var(--text); }
.price-period { font-size:1rem; font-weight:400; color:var(--muted); }
.price-desc { font-size:.88rem; color:var(--muted); line-height:1.6; }
.price-cta { display:inline-flex; align-items:center; justify-content:center; margin-top:.5rem; }
.price-feats { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.6rem; }
.price-feats li { font-size:.88rem; color:var(--muted); padding-left:1.4rem; position:relative; }
.price-feats li::before { content:'✓'; position:absolute; left:0; color:var(--g); font-weight:700; }

/* Feature table (Preise) */
.feat-table th:not(:first-child), .feat-table td:not(:first-child) { text-align:center; }
.feat-section-row td { background:rgba(45,158,79,.08); color:var(--g2); font-weight:700; font-size:.82rem; letter-spacing:.06em; text-transform:uppercase; padding:.6rem 1rem; }

/* About */
.about-stats-col { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.about-stat { background:var(--card); border:1px solid rgba(45,158,79,.15); border-radius:var(--r-md); padding:1.25rem; }
.about-stat-val { font-size:1.8rem; font-weight:800; font-family:var(--ff-head); color:var(--g2); }
.about-stat-lbl { font-size:.82rem; color:var(--muted); margin-top:.25rem; }

/* Kontakt */
.contact-split { display:grid; grid-template-columns:1fr 1fr; gap:var(--space-3xl); align-items:start; }
@media(max-width:768px) { .contact-split { grid-template-columns:1fr; } }
.contact-cards { display:flex; flex-direction:column; gap:1rem; margin-top:2rem; }
.contact-card { display:flex; gap:1rem; align-items:flex-start; background:var(--card); border:1px solid rgba(45,158,79,.15); border-radius:var(--r-md); padding:1.25rem; }
.contact-icon { font-size:1.5rem; flex-shrink:0; }
.contact-card-title { font-weight:700; color:var(--text); margin-bottom:.3rem; }
.contact-card-sub { font-size:.88rem; color:var(--muted); line-height:1.6; }
.contact-link { color:var(--g2); text-decoration:none; font-weight:600; }
.contact-link:hover { text-decoration:underline; }
.contact-form-wrap { background:var(--card); border:1px solid rgba(45,158,79,.18); border-radius:var(--r-lg); padding:2rem; }
.contact-form-title { font-size:1.2rem; font-weight:700; font-family:var(--ff-head); color:var(--text); margin-bottom:1.5rem; }
.form-group { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1.1rem; }
.form-label { font-size:.88rem; font-weight:600; color:var(--text); }
.form-label span { color:var(--g2); }
.form-input { background:rgba(255,255,255,.04); border:1px solid rgba(45,158,79,.25); border-radius:var(--r-md); padding:.75rem 1rem; color:var(--text); font-size:.95rem; font-family:var(--ff-body); transition:border-color .2s; width:100%; box-sizing:border-box; }
.form-input:focus { outline:none; border-color:var(--g); }
.form-input::placeholder { color:var(--muted); }
.form-textarea { resize:vertical; min-height:120px; }
select.form-input option { background:var(--dark); color:var(--text); }
.form-privacy { font-size:.78rem; color:var(--muted); text-align:center; margin-top:.75rem; }
.form-privacy a { color:var(--g2); }

/* ════════════════════════════════════════════════════════
   NAVIGATION DROPDOWNS & MOBILE NAV
   ════════════════════════════════════════════════════════ */
.nav-link { color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 500; padding: .4rem .5rem; border-radius: var(--r-sm); transition: color .2s; }
.nav-link:hover, .nav-link:focus { color: var(--text); }
.nav-link-btn { background: none; border: none; color: var(--muted); font-size: .9rem; font-weight: 500; cursor: pointer; padding: .4rem .5rem; border-radius: var(--r-sm); display: flex; align-items: center; gap: .3rem; transition: color .2s; }
.nav-link-btn:hover, .nav-link-btn:focus { color: var(--text); outline: none; }
.nav-chevron { font-size: .65rem; transition: transform .2s; }
.nav-has-dropdown { position: relative; }
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px); background: var(--dark); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: 0 16px 48px rgba(0,0,0,.6); min-width: 520px; opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s, visibility .18s; pointer-events: none; z-index: 200; }
.nav-dropdown-narrow { min-width: 280px; }
.nav-dropdown-inner { display: grid; grid-template-columns: 1fr 200px; gap: 0; }
.nav-dropdown-narrow .nav-dropdown-inner { grid-template-columns: 1fr; }
.nav-dropdown-col { padding: 1.25rem; }
.nav-dropdown-col-cta { background: rgba(45,158,79,.06); border-left: 1px solid var(--border); border-radius: 0 var(--r-lg) var(--r-lg) 0; display: flex; align-items: center; }
.nav-dropdown-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .75rem; padding: 0 .5rem; }
.nav-dropdown-item { display: flex; align-items: flex-start; gap: .75rem; padding: .6rem .5rem; border-radius: var(--r-md); text-decoration: none; color: var(--text); font-size: .88rem; transition: background .15s; margin-bottom: .15rem; }
.nav-dropdown-item:hover { background: rgba(45,158,79,.1); }
.nav-dropdown-item strong { display: block; font-weight: 600; }
.nav-dropdown-item small { color: var(--muted); font-size: .8rem; }
.nav-di-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.nav-dd-cta-box { padding: .5rem; width: 100%; }
.nav-dd-cta-title { font-weight: 700; font-size: 1rem; font-family: var(--F); color: var(--text); margin-bottom: .4rem; }
.nav-dd-cta-sub { font-size: .82rem; color: var(--muted); line-height: 1.5; }
/* Burger */
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile nav */
.mobile-nav { position: fixed; inset: 68px 0 0 0; background: var(--dark); z-index: 99; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); }
.mobile-nav[aria-hidden="false"] { transform: none; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.mobile-nav ul a { display: block; padding: .75rem 1rem; font-size: 1.1rem; font-weight: 600; color: var(--text); text-decoration: none; border-radius: var(--r-md); transition: background .15s; }
.mobile-nav ul a:hover { background: rgba(45,158,79,.1); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: .75rem; }
@media(max-width:960px) { .nav-links, .nav-actions { display: none; } .nav-burger { display: flex; } }
@media(min-width:961px) { .mobile-nav { display: none; } }

/* ════════════════════════════════════════════════════════
   PAGE HERO SMALL
   ════════════════════════════════════════════════════════ */
.page-hero-sm { padding-top: calc(var(--nav-h, 68px) + 3rem); padding-bottom: 3rem; }
.page-hero-sm .hero-h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }

/* ════════════════════════════════════════════════════════
   FORM ROW
   ════════════════════════════════════════════════════════ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:520px) { .form-row { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════
   BLOG
   ════════════════════════════════════════════════════════ */
.blog-featured-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; margin-top: var(--space-2xl); }
@media(max-width:768px) { .blog-featured-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.blog-card:hover { border-color: var(--g); transform: translateY(-3px); }
.blog-card-featured { grid-row: 1 / 3; }
@media(max-width:768px) { .blog-card-featured { grid-row: auto; } }
.blog-card-img { background: linear-gradient(135deg, rgba(45,158,79,.15), rgba(56,192,98,.08)); min-height: 160px; position: relative; }
.blog-card-featured .blog-card-img { min-height: 220px; }
.blog-card-img-inner { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1rem; }
.blog-cat-tag { background: rgba(45,158,79,.25); color: var(--g2); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .75rem; border-radius: var(--r-pill); }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.blog-cat-badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--g2); }
.blog-card-title { font-size: 1.15rem; font-weight: 700; font-family: var(--F); line-height: 1.35; }
.blog-card-title a { text-decoration: none; color: var(--text); transition: color .2s; }
.blog-card-title a:hover { color: var(--g2); }
.blog-card-featured .blog-card-title { font-size: 1.4rem; }
.blog-card-excerpt { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.blog-card-meta { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted); flex-wrap: wrap; }
.blog-meta-sep { color: rgba(106,132,108,.4); }
.blog-read-more { color: var(--g2); font-size: .88rem; font-weight: 600; text-decoration: none; margin-top: auto; display: inline-flex; align-items: center; gap: .3rem; }
.blog-read-more:hover { text-decoration: underline; }
.blog-filter-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.blog-filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
.blog-filter-btn { background: none; border: 1px solid var(--border); color: var(--muted); font-size: .82rem; font-weight: 600; padding: .4rem .9rem; border-radius: var(--r-pill); cursor: pointer; transition: all .15s; }
.blog-filter-btn.active, .blog-filter-btn:hover { background: rgba(45,158,79,.15); border-color: var(--g); color: var(--g2); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.25rem; }
.blog-card-sm { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); transition: border-color .2s, transform .2s; }
.blog-card-sm:hover { border-color: var(--g); transform: translateY(-2px); }
.blog-card-sm-inner { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.blog-card-sm-title { font-size: 1rem; font-weight: 700; font-family: var(--F); line-height: 1.4; }
.blog-card-sm-title a { text-decoration: none; color: var(--text); transition: color .2s; }
.blog-card-sm-title a:hover { color: var(--g2); }
.blog-card-sm-excerpt { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ════════════════════════════════════════════════════════
   FOOTER EXTRAS
   ════════════════════════════════════════════════════════ */
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(45,158,79,.12); border: 1px solid var(--border); border-radius: var(--r-md); color: var(--muted); text-decoration: none; font-size: .8rem; font-weight: 700; transition: all .2s; }
.footer-social-link:hover { background: rgba(45,158,79,.25); color: var(--g2); border-color: var(--g); }
.footer-brand { display: flex; flex-direction: column; }

/* ════════════════════════════════════════════════════════
   LEGAL CONTENT
   ════════════════════════════════════════════════════════ */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; font-weight: 700; font-family: var(--F); color: var(--text); margin-top: 2.5rem; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-top: 1.5rem; margin-bottom: .5rem; }
.legal-content p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.legal-content a { color: var(--g2); }

/* ════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════════════════ */
.kb-animate { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.kb-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .kb-animate { opacity: 1; transform: none; transition: none; } }

/* ════════════════════════════════════════════════════════
   BLOG – FIXES & VERBESSERUNGEN
   ════════════════════════════════════════════════════════ */

/* Featured grid – korrekte Höhen */
.blog-featured-grid {
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  align-items: start;
}
.blog-card-featured {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}
.blog-card-featured .blog-card-img {
  min-height: 260px;
  flex-shrink: 0;
}
.blog-card-featured .blog-card-body {
  flex: 1;
  padding: 2rem;
}
.blog-card-featured .blog-card-title { font-size: 1.5rem; }
.blog-card-featured .blog-card-excerpt { font-size: .95rem; }

/* Seitliche Cards kompakter */
.blog-featured-grid .blog-card:not(.blog-card-featured) .blog-card-img {
  min-height: 130px;
}
.blog-featured-grid .blog-card:not(.blog-card-featured) .blog-card-body {
  padding: 1.25rem;
}

/* Card-Bild: illustrierter Hintergrund */
.blog-card-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1a0f 0%, #112016 50%, #0a1a0e 100%);
}
.blog-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(45,158,79,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(56,192,98,.10) 0%, transparent 50%);
}
.blog-card-img::after {
  content: attr(data-icon);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-size: 3rem;
  opacity: .25;
  pointer-events: none;
}

/* Small cards: vollständige Karte mit Bild */
.blog-card-sm {
  display: flex;
  flex-direction: column;
}
.blog-card-sm-img {
  height: 120px;
  background: linear-gradient(135deg, #0d1a0f, #112016);
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  flex-shrink: 0;
}
.blog-card-sm-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(45,158,79,.2), transparent 70%);
}
.blog-card-sm-img-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  opacity: .3;
}
.blog-card-sm-inner {
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  flex: 1;
}
.blog-card-sm-read {
  color: var(--g2);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.blog-card-sm-read:hover { text-decoration: underline; }

/* Weiterlesen in featured card */
.blog-card-featured .blog-read-more {
  font-size: 1rem;
  margin-top: 1.25rem;
}

/* Responsive */
@media(max-width:900px) {
  .blog-featured-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .blog-card-featured { grid-row: auto; }
}
