/* Extracted from predict-maas.html */
/* === PREDICT-MAAS SPECIFIC: TABBED CONTENT === */
      .pm-tabs {
        padding: 6rem 0;
        background: #f8fafc;
      }
      .pm-tabs__header {
        text-align: center;
        margin-bottom: 3rem;
      }
      .pm-tabs__label {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #1a8a5c;
        margin-bottom: 1rem;
      }
      .pm-tabs__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #111827;
        margin: 0;
      }
      .pm-tabs__nav {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: 3rem;
        padding: 0 1rem;
      }
      .pm-tabs__btn {
        padding: 0.7rem 1.4rem;
        border: 1px solid #e5e7eb;
        border-radius: 6px;
        background: #e8f4fd;
        font-family: 'Manrope', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: #111827;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .pm-tabs__btn:hover {
        border-color: #66ff7e;
        background: #d1ecf9;
        color: #111827;
      }
      .pm-tabs__btn.active {
        background: #66ff7e;
        border-color: #66ff7e;
        color: #111;
      }
      .pm-tabs__panel {
        display: none;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
      }
      .pm-tabs__panel.active { display: block; }
      .pm-tabs__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
      .pm-tabs__content h3 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 1rem;
      }
      .pm-tabs__content p {
        color: #4b5563;
        line-height: 1.7;
        margin-bottom: 1rem;
      }
      .pm-tabs__content ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
      }
      .pm-tabs__content ul li {
        color: #374151;
        padding: 0.75rem 1rem;
        position: relative;
        background: #f0f4f8;
        border-radius: 8px;
        border-left: 3px solid #66ff7e;
        font-size: 0.95rem;
        line-height: 1.5;
        transition: background 0.2s ease, transform 0.2s ease;
      }
      .pm-tabs__content ul li:hover {
        background: #e8f4fd;
        transform: translateX(4px);
      }
      .pm-tabs__content ul li::before {
        display: none;
      }
      .pm-tabs__visual {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .pm-tabs__visual svg {
        width: 100%;
        max-width: 416px;
        height: auto;
      }
      @media (max-width: 768px) {
        .pm-tabs__grid { grid-template-columns: 1fr; gap: 2rem; }
        .pm-tabs__visual { order: -1; }
      }

      /* === HEATMAP PREDICTION === */
      .pm-heatmap {
        padding: 6rem 0;
        background: #f0fdf4;
      }
      .pm-heatmap__inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }
      .pm-heatmap__label {
        display: inline-block;
        font-family: 'Manrope', sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #1a8a5c;
        margin-bottom: 1rem;
      }
      .pm-heatmap__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 700;
        color: #111827;
        line-height: 1.2;
        margin: 0 0 1.5rem 0;
      }
      .pm-heatmap__text {
        font-family: 'Manrope', sans-serif;
        font-size: 1.05rem;
        color: #4b5563;
        line-height: 1.7;
        margin-bottom: 2rem;
      }
      .pm-heatmap__features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .pm-heatmap__feature {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
      }
      .pm-heatmap__feature-icon {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        background: #111827;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .pm-heatmap__feature h4 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #111827;
        margin: 0 0 0.3rem 0;
      }
      .pm-heatmap__feature p {
        font-family: 'Manrope', sans-serif;
        font-size: 0.9rem;
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
      }
      .pm-heatmap__visual {
        position: relative;
      }
      .pm-heatmap__visual img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        filter: drop-shadow(0 8px 30px rgba(102, 255, 126, 0.15));
        animation: heatmapFloat 6s ease-in-out infinite;
      }
      @keyframes heatmapFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
      }
      @media (max-width: 768px) {
        .pm-heatmap__inner { grid-template-columns: 1fr; gap: 2rem; }
        .pm-heatmap__visual { order: -1; }
      }

      /* === ZIGZAG === */
      .pm-zigzag {
        padding: 6rem 0;
        background: #fafafa;
      }
      .pm-zigzag__header {
        text-align: center;
        margin-bottom: 4rem;
        padding: 0 2rem;
      }
      .pm-zigzag__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #111;
      }
      .pm-zigzag__layout {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        align-items: center;
      }
      .pm-zigzag__col {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .pm-zigzag__center {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .pm-zigzag__center img {
        width: 100%;
        max-width: 340px;
        height: auto;
        animation: floatY 4s ease-in-out infinite;
        filter: drop-shadow(0 8px 24px rgba(102,255,126,0.15));
      }
      .pm-zigzag__card {
        background: #fff;
        border-radius: 16px;
        padding: 1.8rem;
        position: relative;
        overflow: hidden;
        border: 1px solid #e8ecf0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .pm-zigzag__card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.08);
      }
      .pm-zigzag__card-blob {
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(102,255,126,0.08);
        top: -30px;
        right: -30px;
        transition: transform 0.4s ease;
      }
      .pm-zigzag__card:hover .pm-zigzag__card-blob {
        transform: scale(1.5);
      }
      .pm-zigzag__card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
      }
      .pm-zigzag__card h4 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 0.5rem;
      }
      .pm-zigzag__card p {
        color: #555;
        line-height: 1.6;
        font-size: 0.9rem;
      }
      .pm-zigzag__card-tags {
        display: flex;
        gap: 0.4rem;
        flex-wrap: wrap;
        margin-top: 0.75rem;
      }
      .pm-zigzag__card-tag {
        font-size: 0.7rem;
        font-weight: 600;
        padding: 0.25rem 0.6rem;
        border-radius: 6px;
        background: #e8f4fd;
        color: #111;
      }
      @media (max-width: 900px) {
        .pm-zigzag__layout {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        .pm-zigzag__center { order: -1; }
        .pm-zigzag__center img { max-width: 260px; }
      }

      /* === CTA BANNER === */
      .pm-cta-banner {
        position: relative;
        padding: 5rem 2rem;
        background: #111;
        overflow: hidden;
      }
      .pm-cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(102,255,126,0.08) 0%, transparent 70%);
      }
      .pm-cta-banner__inner {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
      }
      .pm-cta-banner__text {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 1rem;
      }
      .pm-cta-banner__sub {
        color: #aaa;
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 2rem;
      }
      .pm-cta-banner__btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.9rem 2rem;
        background: #66ff7e;
        color: #111;
        font-weight: 700;
        border-radius: 50px;
        text-decoration: none;
        transition: transform 0.2s, box-shadow 0.2s;
      }
      .pm-cta-banner__btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102,255,126,0.3);
      }

      /* === STICKY SCROLL: Was Ask Your Dashboard konkret leistet === */
      .pm-sticky {
        padding: 7rem 0;
        background: #ffffff;
        position: relative;
        overflow: hidden;
      }
      .pm-sticky::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at 20% 30%, rgba(74,222,128,0.06) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 70%, rgba(74,222,128,0.04) 0%, transparent 40%);
        pointer-events: none;
      }
      .pm-sticky__header {
        text-align: center;
        margin-bottom: 4rem;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
      }
      .pm-sticky__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #111;
      }
      .pm-sticky__subtext {
        color: #555;
        font-size: 1.05rem;
        margin-top: 0.75rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }
      .pm-sticky__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
      }
      .pm-sticky__grid--bottom-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
        margin: 1.5rem auto 0;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
      }
      .pm-sticky__step {
        padding: 2rem;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 2px 12px rgba(0,0,0,0.03);
      }
      .pm-sticky__step::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(74,222,128,0.12) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
      }
      .pm-sticky__step:hover {
        border-color: rgba(74,222,128,0.5);
        box-shadow: 0 8px 32px rgba(74,222,128,0.12), 0 2px 8px rgba(0,0,0,0.04);
        transform: translateY(-6px);
      }
      .pm-sticky__step-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
        flex-shrink: 0;
      }
      .pm-sticky__step-num img {
        width: 40px;
        height: 40px;
        object-fit: contain;
      }
      .pm-sticky__step h4 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 0.6rem;
      }
      .pm-sticky__step p {
        color: #555;
        font-size: 0.88rem;
        line-height: 1.7;
      }
      @media (max-width: 768px) {
        .pm-sticky__grid { grid-template-columns: 1fr; }
        .pm-sticky__grid--bottom-row { grid-template-columns: 1fr; }
      }

      /* === GLASMORPHISM CARDS === */
      .pm-glass {
        padding: 6rem 0;
        background: #f8fafc;
        background-image:
          linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
        background-size: 24px 24px;
      }
      .pm-glass__header {
        text-align: center;
        margin-bottom: 3rem;
        padding: 0 2rem;
      }
      .pm-glass__label {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #111;
        background: #e8f4fd;
        padding: 0.35rem 0.9rem;
        border-radius: 6px;
        margin-bottom: 1rem;
      }
      .pm-glass__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #111;
      }
      .pm-glass__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
      }
      .pm-glass__grid-bottom {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
        margin: 1.5rem auto 0;
        padding: 0 2rem;
      }
      .pm-glass__card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 2rem;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      }
      .pm-glass__card::before {
        content: '';
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(102,255,126,0.15);
        top: -30px;
        right: -30px;
        transition: transform 0.4s ease;
        pointer-events: none;
      }
      .pm-glass__card:hover {
        transform: translateY(-4px);
        border-color: rgba(102,255,126,0.5);
        box-shadow: 0 8px 32px rgba(102,255,126,0.1), 0 2px 8px rgba(0,0,0,0.04);
      }
      .pm-glass__card:hover::before {
        transform: scale(1.8);
      }
      .pm-glass__card-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
      }
      .pm-glass__card-icon img {
        width: 40px;
        height: 40px;
        object-fit: contain;
      }
      .pm-glass__card h4 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 0.5rem;
      }
      .pm-glass__card p {
        color: #555;
        font-size: 0.9rem;
        line-height: 1.6;
      }
      @media (max-width: 768px) {
        .pm-glass__grid { grid-template-columns: 1fr; }
        .pm-glass__grid-bottom { grid-template-columns: 1fr; }
      }

      /* === NUMBERED STEPS === */
      .pm-steps {
        padding: 5rem 0 2rem;
        background: #ffffff;
        position: relative;
        overflow: hidden;
      }
      .pm-steps__header {
        text-align: center;
        margin-bottom: 2.5rem;
        padding: 0 2rem;
        position: relative;
      }
      .pm-steps__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #111;
      }
      .pm-steps__subtext {
        color: #555;
        font-size: 1.05rem;
        margin-top: 0.75rem;
      }
      .pm-steps__list {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        position: relative;
      }
      @media (max-width: 900px) {
        .pm-steps__list {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 540px) {
        .pm-steps__list {
          grid-template-columns: 1fr;
        }
      }
      .pm-steps__item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.75rem 1.5rem;
        background: #eafff0;
        border-radius: 14px;
        border: 1px solid rgba(102,255,126,0.3);
        transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
        position: relative;
        overflow: hidden;
      }
      .pm-steps__item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #66ff7e;
        transform: scaleX(0);
        transition: transform 0.3s ease;
      }
      .pm-steps__item:hover {
        border-color: #66ff7e;
        background: #d9ffe6;
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(102,255,126,0.18), 0 4px 12px rgba(0,0,0,0.06);
      }
      .pm-steps__item:hover::after {
        transform: scaleX(1);
      }
      .pm-steps__icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.75rem;
        opacity: 0.85;
        transition: opacity 0.3s, transform 0.3s;
      }
      .pm-steps__item:hover .pm-steps__icon {
        opacity: 1;
        transform: scale(1.1);
      }
      .pm-steps__num {
        display: none;
      }
      .pm-steps__item h4 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 0.4rem;
        line-height: 1.3;
      }
      .pm-steps__item p {
        color: #666;
        font-size: 0.82rem;
        line-height: 1.55;
        margin: 0;
      }
      /* Connector arrow to widgets below */
      .pm-steps__connector {
        display: flex;
        justify-content: center;
        padding: 1.5rem 0 0;
        position: relative;
      }
      .pm-steps__connector svg {
        width: 24px;
        height: 24px;
        color: #66ff7e;
        animation: bounceDown 1.5s ease-in-out infinite;
      }
      @keyframes bounceDown {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(6px); }
      }

      /* === DASHBOARD WIDGETS === */
      .pm-widgets {
        max-width: 1200px;
        margin: 3rem auto 0;
        padding: 0 2rem;
      }
      .pm-widgets__tabs {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 2rem;
        flex-wrap: wrap;
      }
      .pm-widgets__tab {
        padding: 0.5rem 1.2rem;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        background: #fff;
        color: #555;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.25s ease;
      }
      .pm-widgets__tab:hover {
        border-color: #66ff7e;
        color: #111;
      }
      .pm-widgets__tab.active {
        background: #111;
        color: #66ff7e;
        border-color: #111;
      }
      .pm-widgets__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
      }
      .pm-widget {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      }
      .pm-widget::before {
        content: '';
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgba(102,255,126,0.1);
        top: -25px;
        right: -25px;
        transition: transform 0.4s ease;
        pointer-events: none;
      }
      .pm-widget:hover {
        transform: translateY(-4px);
        border-color: rgba(102,255,126,0.5);
        box-shadow: 0 8px 24px rgba(102,255,126,0.08), 0 2px 8px rgba(0,0,0,0.04);
      }
      .pm-widget:hover::before {
        transform: scale(2);
      }
      .pm-widget--wide {
        grid-column: span 2;
      }
      .pm-widget__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.75rem;
      }
      .pm-widget__title {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        color: #555;
        text-transform: uppercase;
        letter-spacing: 0.03em;
      }
      .pm-widget__badge {
        font-size: 0.7rem;
        font-weight: 600;
        padding: 0.2rem 0.6rem;
        border-radius: 6px;
        background: #e8f4fd;
        color: #111;
      }
      .pm-widget__badge--green {
        background: rgba(102,255,126,0.15);
        color: #0a6e2a;
      }
      .pm-widget__value {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: #111;
        line-height: 1.1;
        margin-bottom: 0.25rem;
      }
      .pm-widget__change {
        font-size: 0.8rem;
        color: #16a34a;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.3rem;
      }
      .pm-widget__change--down {
        color: #dc2626;
      }
      .pm-widget__chart {
        margin-top: 1rem;
        position: relative;
      }
      .pm-widget__chart canvas {
        display: block;
        max-width: 100%;
      }
      .pm-widget__legend {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 0.75rem;
      }
      .pm-widget__legend-item {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.75rem;
        color: #555;
      }
      .pm-widget__legend-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
      }
      .pm-widget__toggle {
        display: flex;
        gap: 0.3rem;
        margin-top: 0.5rem;
      }
      .pm-widget__toggle-btn {
        padding: 0.25rem 0.6rem;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        background: #fff;
        color: #777;
        font-size: 0.7rem;
        cursor: pointer;
        transition: all 0.2s;
      }
      .pm-widget__toggle-btn.active {
        background: #111;
        color: #66ff7e;
        border-color: #111;
      }
      @media (max-width: 1024px) {
        .pm-widgets__grid { grid-template-columns: repeat(2, 1fr); }
        .pm-widget--wide { grid-column: span 2; }
      }
      @media (max-width: 640px) {
        .pm-widgets__grid { grid-template-columns: 1fr; }
        .pm-widget--wide { grid-column: span 1; }
      }

      /* === ANIMATED COUNTER === */
      .pm-counter {
        padding: 5rem 0;
        background: #111;
      }
      .pm-counter__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
        text-align: center;
      }
      .pm-counter__item-value {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        color: #66ff7e;
        margin-bottom: 0.3rem;
      }
      .pm-counter__item-label {
        color: #aaa;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
      @media (max-width: 768px) {
        .pm-counter__grid { grid-template-columns: repeat(2, 1fr); }
      }

