    :root {
        --primary: #00D9A3;
        --primary-dark: #00B88A;
        --bg-dark: #0f0f0f;
        --bg-darker: #0a0a0a;
        --bg-light: #f8f9fa;
        --text-white: #ffffff;
        --text-dim: #9ca3af;
        --text-dark: #1a1a1a;
        --text-mid: #4a4a4a;
        --border-glow: rgba(0,217,163,0.4);
        --radius-lg: 1rem;
        --radius-md: 0.75rem;
    }

    body.page-template-page-ki-loesungen-full {
        background: #000;
        font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
    }

    .section-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 3rem 1.5rem 4rem;
    }
    @media (min-width: 768px) {
        .section-inner {
            padding: 4rem 1.5rem 5rem;
        }
    }

    /* ============================================
       HERO SECTION
    ============================================ */
    .hero-wrapper {
        background: radial-gradient(circle at 20% 20%, rgba(0,217,163,0.08) 0%, rgba(255,255,255,0) 70%), #f8f9fa;
        color: var(--text-dark);
        padding: 5rem 1.5rem 6rem;
        box-shadow: inset 0 0 200px rgba(0, 217, 163, 0.05);
    }

    .hero-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0,1fr) minmax(0,420px);
        gap: 2.5rem;
        align-items: start;
    }
    @media (max-width: 900px) {
        .hero-inner {
            grid-template-columns: 1fr;
        }
    }

    .highlight-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: radial-gradient(circle at left top, rgba(0,217,163,0.15) 0%, rgba(255,255,255,0) 60%);
        background-color: rgba(0,217,163,0.1);
        border: 1px solid rgba(0,217,163,0.4);
        border-radius: 999px;
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.2;
        margin-bottom: 1rem;
        box-shadow: 0 10px 30px rgba(0,217,163,0.2);
    }
    .highlight-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--primary);
        box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    }

    .hero-headline {
        font-size: clamp(2rem, 1rem + 2vw, 2.8rem);
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: -0.04em;
        color: var(--text-dark);
        margin: 0 0 1rem 0;
        text-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .hero-headline .accent {
        color: var(--primary);
        text-shadow: 0 0 20px rgba(0,217,163,0.3);
        display: inline-block;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--text-mid);
        max-width: 52ch;
        margin-bottom: 1.5rem;
    }

    .hero-bullets {
        display: grid;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .hero-bullet-row {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        color: var(--text-dark);
        font-size: 0.95rem;
        line-height: 1.4;
        font-weight: 500;
    }
    .check-icon {
        width: 1.4rem;
        height: 1.4rem;
        min-width: 1.4rem;
        border-radius: 0.5rem;
        background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
        color: #000;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        line-height: 1;
        box-shadow: 0 10px 30px rgba(0,217,163,0.3);
        border: 1px solid rgba(0,0,0,0.1);
    }

    .hero-actions-row {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .call-chip {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        background: #fff;
        border-radius: var(--radius-md);
        border: 1px solid rgba(0,0,0,0.1);
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        line-height: 1.2;
        font-weight: 600;
        color: var(--text-dark);
        text-decoration: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }
    .call-chip:hover {
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        transform: translateY(-2px);
    }
    .call-chip .chip-icon-circle {
        width: 1.6rem;
        height: 1.6rem;
        border-radius: 999px;
        background: radial-gradient(circle at 30% 30%, var(--primary) 0%, var(--primary-dark) 70%);
        box-shadow: 0 5px 15px rgba(0,217,163,0.3);
        color: #000;
        font-weight: 600;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wa-chip {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 60%), linear-gradient(to bottom right, var(--primary), var(--primary-dark));
        border-radius: var(--radius-md);
        padding: 0.75rem 1rem;
        min-width: 200px;
        color: #000;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        line-height: 1.3;
        box-shadow: 0 20px 50px rgba(0,217,163,0.35), 0 0 40px rgba(0,217,163,0.4);
        border: 1px solid rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    .wa-chip:hover {
        transform: translateY(-2px);
        box-shadow: 0 25px 60px rgba(0,217,163,0.45), 0 0 60px rgba(0,217,163,0.6);
    }

    .wa-chip .wa-top {
        font-size: 0.8rem;
        font-weight: 500;
        opacity: 0.8;
        line-height: 1.2;
        color: #000;
    }
    .wa-chip .wa-bottom {
        font-size: 0.9rem;
        line-height: 1.3;
        font-weight: 700;
        color: #000;
    }

    .offer-chip {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: var(--radius-md);
        border: 2px solid var(--primary);
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        line-height: 1.2;
        font-weight: 600;
        color: var(--primary);
        text-decoration: none;
        box-shadow: 0 10px 30px rgba(0,217,163,0.15);
        transition: all 0.3s ease;
        cursor: pointer;
        min-width: 160px;
    }
    .offer-chip:hover {
        background: var(--primary);
        color: #000;
        box-shadow: 0 15px 40px rgba(0,217,163,0.3);
        transform: translateY(-2px);
    }

    .hero-stats {
        display: flex;
        gap: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    .stat-box {
        display: flex;
        flex-direction: column;
    }
    .stat-num {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 0.25rem;
    }
    .stat-label {
        font-size: 0.8rem;
        color: var(--text-mid);
        line-height: 1.3;
    }

    .hero-right {
        position: relative;
    }

    .hero-sidecard {
        background: rgba(255,255,255,0.9);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0,217,163,0.2);
        box-shadow: 0 20px 60px rgba(0,217,163,0.15), 0 10px 30px rgba(0,0,0,0.08);
        padding: 1.25rem 1rem 1rem;
        color: var(--text-dark);
        min-height: 100%;
        backdrop-filter: blur(10px);
    }
    .sidecard-title {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    .sidecard-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        color: var(--text-mid);
        margin-bottom: 1.25rem;
    }
    .sidecard-list {
        display: grid;
        gap: 1rem;
        font-size: 0.9rem;
        color: var(--text-dark);
        line-height: 1.4;
    }
    .sidecard-item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.75rem;
        align-items: flex-start;
    }
    .sidecard-accent {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 0.5rem;
        min-width: 2rem;
        min-height: 2rem;
        font-size: 0.8rem;
        line-height: 1;
        color: #000;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0,217,163,0.3);
    }
    .sidecard-item-text {
        padding-top: 0.35rem;
    }
    .sidecard-item-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.3;
        margin-bottom: 0.2rem;
    }
    .sidecard-item-desc {
        font-size: 0.8rem;
        color: var(--text-mid);
        line-height: 1.3;
    }

    /* ============================================
       PLATFORMS SECTION
    ============================================ */
    .platforms-wrapper {
        background: var(--bg-light);
        border-top: 1px solid rgba(0,0,0,0.05);
        padding: 2.5rem 1.5rem;
    }

    .platforms-inner {
        max-width: 1280px;
        margin: 0 auto;
        text-align: center;
    }

    .platforms-title {
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--text-mid);
        margin-bottom: 1.75rem;
    }

    .platforms-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4rem;
        flex-wrap: wrap;
    }

    .platform-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
        opacity: 0.6;
    }

    .platform-item:hover {
        opacity: 1;
        transform: translateY(-5px);
    }

    .platform-logo-wrapper {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: var(--radius-md);
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        padding: 1rem;
    }

    .platform-item:hover .platform-logo-wrapper {
        border-color: rgba(0,217,163,0.3);
        box-shadow: 0 10px 40px rgba(0,217,163,0.15);
        transform: scale(1.05);
    }

    .platform-logo {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: filter 0.3s ease;
    }

    .platform-name {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-mid);
        transition: color 0.3s ease;
    }

    .platform-item:hover .platform-name {
        color: var(--primary);
    }

    /* ============================================
       SERVICES SECTION (USE CASES)
    ============================================ */
    .services-wrapper {
        background: var(--bg-dark);
        color: var(--text-white);
        position: relative;
        overflow: hidden;
    }
    .services-wrapper::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(0,217,163,0.03) 1px, transparent 1px),
            linear-gradient(rgba(0,217,163,0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: grid-flow 20s linear infinite;
        opacity: 0.3;
    }
    @keyframes grid-flow {
        0% { transform: translate(0, 0); }
        100% { transform: translate(50px, 50px); }
    }

    .section-header-sm {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 0.5rem;
        display: inline-block;
        position: relative;
    }

    .section-header-sm::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.6s ease;
    }

    .section-inner:hover .section-header-sm::after {
        width: 100%;
    }

    .section-title {
        font-size: clamp(1.6rem, 0.8rem + 1.5vw, 2rem);
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-white);
        margin-bottom: 2rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        position: relative;
        z-index: 1;
    }

    .service-card {
        background: rgba(15,15,15,0.6);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--radius-lg);
        padding: 2rem 1.5rem 1.5rem;
        color: var(--text-white);
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transform-style: preserve-3d;
        display: block;
        text-decoration: none;
    }

    .service-card {
        animation: card-breathing 4s ease-in-out infinite;
    }
    @keyframes card-breathing {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
    }

    .service-card:hover {
        animation: none;
        border-color: var(--border-glow);
        box-shadow:
            0 20px 60px rgba(0,217,163,0.3),
            0 0 40px rgba(0,217,163,0.15),
            inset 0 1px 0 rgba(255,255,255,0.1);
        transform: translateY(-8px) scale(1.02);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
            circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0,217,163,0.15) 0%,
            transparent 50%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-number {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 3.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, rgba(0,217,163,0.15) 0%, rgba(0,217,163,0.05) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        transition: all 0.4s ease;
    }

    .service-card:hover .service-number {
        transform: scale(1.1) rotate(5deg);
        background: linear-gradient(135deg, rgba(0,217,163,0.3) 0%, rgba(0,217,163,0.1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-icon-wrapper {
        width: 4.5rem;
        height: 4.5rem;
        position: relative;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: var(--radius-md);
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        box-shadow:
            0 10px 30px rgba(0,217,163,0.3),
            0 0 0 0 rgba(0,217,163,0.4);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .service-card:hover .service-icon-bg {
        box-shadow:
            0 15px 40px rgba(0,217,163,0.5),
            0 0 0 8px rgba(0,217,163,0.2);
        transform: scale(1.05) rotate(5deg);
    }

    .service-icon-bg::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border-radius: var(--radius-md);
        background: inherit;
        transform: translate(-50%, -50%);
        animation: icon-pulse 2s ease-out infinite;
        opacity: 0;
    }

    @keyframes icon-pulse {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.8;
        }
        100% {
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 0;
        }
    }

    .service-icon {
        width: 2.2rem;
        height: 2.2rem;
        position: relative;
        z-index: 2;
        color: #000;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .service-card:hover .service-icon {
        transform: scale(1.15) rotate(-5deg);
    }

    .service-card:nth-child(1) .service-icon {
        animation: float-icon-1 3s ease-in-out infinite;
    }
    .service-card:nth-child(2) .service-icon {
        animation: float-icon-2 3.5s ease-in-out infinite;
    }
    .service-card:nth-child(3) .service-icon {
        animation: float-icon-3 4s ease-in-out infinite;
    }
    .service-card:nth-child(4) .service-icon {
        animation: float-icon-1 3s ease-in-out infinite;
    }
    @keyframes float-icon-1 {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-6px) rotate(3deg); }
    }
    @keyframes float-icon-2 {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-8px) rotate(-3deg); }
    }
    @keyframes float-icon-3 {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-5px) rotate(2deg); }
    }

    .service-title {
        font-size: 1.15rem;
        font-weight: 600;
        line-height: 1.3;
        color: var(--text-white);
        margin-bottom: 0.75rem;
        transition: color 0.3s ease;
    }

    .service-card:hover .service-title {
        color: var(--primary);
    }

    .service-desc {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--text-dim);
        transition: color 0.3s ease;
        margin-bottom: 1.5rem;
    }

    .service-card:hover .service-desc {
        color: rgba(255,255,255,0.9);
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary);
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: auto;
        padding-top: 1rem;
    }

    .service-link-arrow {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .service-card:hover .service-link {
        gap: 0.75rem;
    }

    .service-card:hover .service-link-arrow {
        transform: translateX(4px);
    }

    .service-card::after {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
        border-radius: 50%;
        opacity: 0;
        transition: all 0.6s ease;
        filter: blur(20px);
    }

    .service-card:hover::after {
        opacity: 0.2;
        transform: translate(-20px, -20px);
    }

    @keyframes reveal-up {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .service-card {
        animation: reveal-up 0.6s ease-out backwards, card-breathing 4s ease-in-out infinite 0.6s;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s, 0.7s; }
    .service-card:nth-child(2) { animation-delay: 0.2s, 0.8s; }
    .service-card:nth-child(3) { animation-delay: 0.3s, 0.9s; }
    .service-card:nth-child(4) { animation-delay: 0.4s, 1s; }

    /* ============================================
       BENEFITS SECTION (WARUM SO?)
    ============================================ */
    .benefits-wrapper {
        background: var(--bg-light);
        color: var(--text-dark);
        padding: 4rem 1.5rem 5rem;
    }

    .benefits-wrapper .section-header-sm {
        color: var(--primary);
    }

    .benefits-wrapper .section-title {
        color: var(--text-dark);
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .benefit-card {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.5rem;
        background: #fff;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        border-color: rgba(0,217,163,0.3);
        box-shadow: 0 10px 40px rgba(0,217,163,0.15);
        transform: translateY(-5px);
    }

    .benefit-icon-wrapper {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 16px;
        background: rgba(0,217,163,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .benefit-card:hover .benefit-icon-wrapper {
        background: rgba(0,217,163,0.2);
        transform: scale(1.05);
    }

    .benefit-icon {
        width: 28px;
        height: 28px;
        color: var(--text-dark);
    }

    .benefit-icon-bg {
        display: none;
    }

    .benefit-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .benefit-desc {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--text-mid);
    }

    /* ============================================
       TESTIMONIALS SECTION
    ============================================ */
    .testimonials-wrapper {
        background: var(--bg-dark);
        color: var(--text-white);
        padding: 4rem 1.5rem 5rem;
    }

    .testimonials-intro {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dim);
        max-width: 60ch;
        margin-bottom: 3rem;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .testimonial-card {
        background: rgba(15,15,15,0.6);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--radius-lg);
        padding: 2rem 1.5rem;
        transition: all 0.3s ease;
    }

    .testimonial-card:hover {
        border-color: var(--border-glow);
        box-shadow: 0 10px 40px rgba(0,217,163,0.2);
        transform: translateY(-5px);
    }

    .testimonial-stars {
        display: flex;
        gap: 0.25rem;
        margin-bottom: 1rem;
    }

    .star {
        font-size: 1.1rem;
        color: var(--primary);
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-white);
        margin-bottom: 1.5rem;
    }

    .testimonial-profile {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid var(--primary);
    }

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-name {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-dim);
    }

    /* ============================================
       ABOUT SECTION
    ============================================ */
    .about-wrapper {
        background: var(--bg-light);
        color: var(--text-dark);
        padding: 4rem 1.5rem 5rem;
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 4rem;
        margin-top: 2rem;
    }

    .about-left {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .about-image-wrapper {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .about-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .about-title {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-mid);
        margin-bottom: 0.5rem;
    }

    .about-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--primary);
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }

    .about-link-arrow {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .about-link:hover {
        gap: 0.75rem;
    }

    .about-link:hover .about-link-arrow {
        transform: translateX(4px);
    }

    .about-right {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .values-header {
        margin-bottom: 1.5rem;
    }

    .values-title {
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .values-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-mid);
    }

    .values-list {
        display: grid;
        gap: 1.5rem;
    }

    .value-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.5rem;
        background: #fff;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .value-item:hover {
        border-color: rgba(0,217,163,0.3);
        box-shadow: 0 10px 40px rgba(0,217,163,0.15);
        transform: translateY(-3px);
    }

    .value-icon-wrapper {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
        background: rgba(0,217,163,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .value-icon {
        width: 24px;
        height: 24px;
        color: var(--text-dark);
    }

    .value-content {
        flex: 1;
    }

    .value-name {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .value-desc {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--text-mid);
    }

    /* ============================================
       REFERENCES SECTION
    ============================================ */
    .references-wrapper {
        background: var(--bg-dark);
        color: var(--text-white);
        padding: 4rem 1.5rem 5rem;
    }

    .references-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .reference-card {
        background: rgba(15,15,15,0.6);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--radius-lg);
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-decoration: none;
        color: var(--text-white);
        transition: all 0.3s ease;
    }

    .reference-card:hover {
        border-color: var(--border-glow);
        box-shadow: 0 10px 40px rgba(0,217,163,0.2);
        transform: translateY(-5px);
    }

    .reference-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .reference-icon-wrapper {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(0,217,163,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reference-icon {
        width: 24px;
        height: 24px;
        color: var(--primary);
    }

    .reference-status {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--primary);
    }

    .status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 0 0 10px var(--primary);
    }

    .reference-content {
        flex: 1;
    }

    .reference-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-white);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .reference-url {
        font-size: 0.85rem;
        line-height: 1.5;
        color: var(--text-dim);
    }

    .reference-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary);
        transition: all 0.3s ease;
    }

    .reference-link-arrow {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .reference-card:hover .reference-link {
        gap: 0.75rem;
    }

    .reference-card:hover .reference-link-arrow {
        transform: translateX(4px);
    }

    /* ============================================
       PACKAGES SECTION
    ============================================ */
    .section--packages {
        background: var(--bg-light);
        color: var(--text-dark);
        padding: 4rem 1.5rem 5rem;
    }

    .section--packages .section-header-sm {
        color: var(--primary);
    }

    .section--packages .section-title {
        color: var(--text-dark);
    }

    .grid {
        display: grid;
        gap: 2rem;
    }

    .grid--4 {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .plan {
        background: #fff;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: var(--radius-lg);
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .plan:hover {
        border-color: rgba(0,217,163,0.3);
        box-shadow: 0 10px 40px rgba(0,217,163,0.15);
        transform: translateY(-5px);
    }

    .plan__head {
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding-bottom: 1rem;
    }

    .plan__title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .plan__tag {
        font-size: 0.85rem;
        color: var(--text-mid);
        font-weight: 500;
    }

    .plan__features {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .plan__features li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--text-dark);
    }

    .plan__features .i {
        width: 20px;
        height: 20px;
        min-width: 20px;
        color: var(--primary);
        margin-top: 2px;
    }

    .plan__foot {
        padding-top: 1rem;
        border-top: 1px solid rgba(0,0,0,0.08);
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        width: 100%;
    }

    .btn-primary {
        background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
        color: #000;
        box-shadow: 0 5px 20px rgba(0,217,163,0.3);
    }

    .btn-primary:hover {
        box-shadow: 0 10px 30px rgba(0,217,163,0.4);
        transform: translateY(-2px);
    }

    .btn-outline {
        background: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
    }

    .btn-outline:hover {
        background: var(--primary);
        color: #000;
    }

    /* ============================================
       FAQ SECTION
    ============================================ */
    .section--faq {
        background: var(--bg-dark);
        color: var(--text-white);
        padding: 4rem 1.5rem 5rem;
    }

    .accordion {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .accordion__item {
        background: rgba(15,15,15,0.6);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .accordion__item:hover {
        border-color: var(--border-glow);
    }

    .accordion__item[open] {
        border-color: var(--primary);
        box-shadow: 0 5px 20px rgba(0,217,163,0.2);
    }

    .accordion__title {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-white);
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }

    .accordion__title::-webkit-details-marker {
        display: none;
    }

    .accordion__title::after {
        content: '+';
        font-size: 1.5rem;
        color: var(--primary);
        transition: transform 0.3s ease;
    }

    .accordion__item[open] .accordion__title::after {
        content: '−';
        transform: rotate(180deg);
    }

    .accordion__content {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-dim);
    }

    .accordion__content p {
        margin: 0;
    }

    /* ============================================
       CTA SECTION
    ============================================ */
    .section--cta {
        background: var(--bg-light);
        padding: 4rem 1.5rem 5rem;
    }

    .cta {
        background: #fff;
        border-radius: var(--radius-lg);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    .cta--split {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 0;
    }

    .cta__content {
        padding: 3rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
    }

    .cta__title {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-dark);
    }

    .cta__text {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-mid);
    }

    .cta__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cta__actions .btn {
        width: auto;
        min-width: 160px;
    }

    .cta__media {
        position: relative;
        min-height: 300px;
    }

    .cta__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* ============================================
       COMPLIANCE SECTION
    ============================================ */
    .section--compliance {
        background: var(--bg-dark);
        color: var(--text-white);
        padding: 4rem 1.5rem 5rem;
    }

    .grid--3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .card {
        background: rgba(15,15,15,0.6);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--radius-lg);
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        transition: all 0.3s ease;
    }

    .card:hover {
        border-color: var(--border-glow);
        box-shadow: 0 10px 40px rgba(0,217,163,0.2);
        transform: translateY(-5px);
    }

    .card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(0,217,163,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card__icon .i {
        width: 24px;
        height: 24px;
        color: var(--primary);
    }

    .card__title {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-white);
        line-height: 1.3;
    }

    .card__text {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--text-dim);
    }

    /* ============================================
       TABS SECTION
    ============================================ */
    .section--tabs {
        background: var(--bg-light);
        color: var(--text-dark);
        padding: 4rem 1.5rem 5rem;
    }

    .tabs {
        background: #fff;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .tabs__nav {
        display: flex;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        background: var(--bg-light);
    }

    .tabs__btn {
        flex: 1;
        padding: 1rem 1.5rem;
        background: transparent;
        border: none;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-mid);
        cursor: pointer;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }

    .tabs__btn:hover {
        color: var(--text-dark);
        background: rgba(0,0,0,0.02);
    }

    .tabs__btn.is-active {
        color: var(--primary);
        border-bottom-color: var(--primary);
        background: #fff;
    }

    .tabs__panels {
        padding: 2rem;
    }

    .tabs__panel {
        display: none;
    }

    .tabs__panel.is-active {
        display: block;
    }

    .tabs__panel p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-mid);
        margin-bottom: 1rem;
    }

    .tabs__panel .list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .tabs__panel .list li {
        padding-left: 1.5rem;
        position: relative;
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--text-mid);
    }

    .tabs__panel .list li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--primary);
        font-weight: 700;
    }
    
    /* Modal Styles */
    .custom-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(6px);
        z-index: 999999;
        overflow: hidden;
    }
    
    .custom-modal-overlay.active {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .custom-modal-content {
        position: relative;
        background: white;
        border-radius: 16px;
        max-width: 700px;
        width: 90%;
        max-height: 85vh;
        overflow-y: auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        margin: auto;
    }
    
    .custom-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 28px;
        font-weight: bold;
        color: #000;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        transition: all 0.2s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .custom-modal-close:hover {
        background: #000;
        color: white;
        transform: scale(1.1);
    }
    
    .custom-modal-form-wrapper {
        padding: 60px 30px 30px;
    }
    
    .custom-modal-form-wrapper h2 {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        color: #1a1a1a;
    }
    
    /* Mobile */
    @media (max-width: 768px) {
        .custom-modal-overlay.active {
            align-items: flex-start !important;
        }
        
        .custom-modal-content {
            max-width: 100%;
            width: 100%;
            min-height: 100vh;
            border-radius: 0;
            max-height: none;
        }
        
        .custom-modal-close {
            position: fixed;
            background: #00D9A3;
            color: #000;
            top: 10px;
            right: 10px;
            width: 50px;
            height: 50px;
            font-size: 32px;
            z-index: 1000001;
        }
        
        .custom-modal-form-wrapper {
            padding: 1.5rem 1rem 2rem;
            overflow-y: auto;
            max-height: calc(100vh - 3rem);
        }
    }
    /* ============================================
       FOOT CTA SECTION
    ============================================ */
    .section--footcta {
        background: var(--bg-dark);
        color: var(--text-white);
        padding: 4rem 1.5rem 5rem;
    }

    .footcta {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .footcta__title {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-white);
    }

    .footcta__text {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text-dim);
    }

    .footcta .btn {
        width: auto;
        min-width: 200px;
    }

    /* ============================================
       NOTICE (NOSCRIPT)
    ============================================ */
    .notice {
        padding: 1rem 1.5rem;
        border-radius: var(--radius-md);
        margin: 2rem 1.5rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .notice--info {
        background: rgba(0,217,163,0.1);
        border: 1px solid rgba(0,217,163,0.3);
        color: var(--text-dark);
    }

    /* ============================================
       SVG ICONS SYSTÈME
    ============================================ */
    .i {
        display: inline-block;
        width: 1em;
        height: 1em;
        stroke-width: 0;
        stroke: currentColor;
        fill: currentColor;
    }

    /* Définition des icônes SVG */
    svg.i use {
        pointer-events: none;
    }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 768px) {
        .hero-stats {
            gap: 1.5rem;
        }
        .stat-num {
            font-size: 1.5rem;
        }
        .hero-actions-row {
            flex-direction: column;
        }
        .call-chip,
        .wa-chip,
        .offer-chip {
            width: 100%;
            min-width: 100%;
        }
        .platforms-wrapper {
            padding: 2rem 1.5rem;
        }
        .platforms-grid {
            gap: 2.5rem;
        }
        .platform-logo-wrapper {
            width: 65px;
            height: 65px;
        }
        .services-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .service-card {
            padding: 1.5rem 1.25rem;
        }
        .service-icon-wrapper {
            width: 4rem;
            height: 4rem;
        }
        .service-number {
            font-size: 2.5rem;
        }
        .benefits-grid,
        .testimonials-grid,
        .references-grid {
            grid-template-columns: 1fr;
        }
        .about-grid {
            gap: 2rem;
        }
        .cta--split {
            grid-template-columns: 1fr;
        }
        .cta__media {
            min-height: 250px;
        }
        .tabs__nav {
            flex-direction: column;
        }
        .tabs__btn {
            border-bottom: none;
            border-left: 3px solid transparent;
        }
        .tabs__btn.is-active {
            border-left-color: var(--primary);
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .hero-inner {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        .grid--4 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* ============================================
       ANIMATIONS DONNÉES
    ============================================ */
    [data-animate] {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    [data-animate].animated {
        opacity: 1;
        transform: translateY(0);
    }

    [data-animate="fade-up"] {
        animation: reveal-up 0.6s ease-out forwards;
    }

    [data-delay="80"] {
        animation-delay: 0.08s;
    }

    [data-delay="100"] {
        animation-delay: 0.1s;
    }

    [data-delay="160"] {
        animation-delay: 0.16s;
    }

    [data-delay="200"] {
        animation-delay: 0.2s;
    }

    [data-delay="300"] {
        animation-delay: 0.3s;
    }

