<!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="x-apple-disable-message-reformatting">
    <title>Wellnee | Befreie Deine Knie</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #eef2f5;
            line-height: 1.5;
            color: #1e2a3e;
            padding: 24px 16px;
            margin: 0;
        }
        .email-wrapper {
            max-width: 600px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 32px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
            overflow: hidden;
        }
        /* premium header */
        .brand-bar {
            background: #0f2b3d;
            padding: 20px 24px;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .brand-bar h1 {
            margin: 0;
            font-size: 28px;
            letter-spacing: 4px;
            font-weight: 800;
            color: #ffffff;
            text-transform: uppercase;
            word-break: keep-all;
        }
        .brand-bar p {
            font-size: 11px;
            color: #b9d0e0;
            margin-top: 6px;
            letter-spacing: 0.3px;
            font-weight: 500;
        }
        /* hero section */
        .hero-img {
            width: 100%;
            display: block;
            background: #f9fbfd;
            transition: transform 0.2s;
        }
        /* content area */
        .content-inner {
            padding: 32px 28px 28px;
        }
        .main-headline {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            color: #0f2b3d;
            margin-bottom: 16px;
            letter-spacing: -0.3px;
        }
        .accent-text {
            font-size: 18px;
            font-weight: 600;
            color: #2c6e9e;
            border-left: 4px solid #e67e22;
            padding-left: 16px;
            margin-bottom: 24px;
            background: #fefaf5;
            border-radius: 0 12px 12px 0;
        }
        .description {
            font-size: 16px;
            color: #2c3e4e;
            margin-bottom: 24px;
            font-weight: 500;
        }
        .feature-grid {
            margin: 28px 0 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            font-size: 15.5px;
            background: #f9fbfd;
            padding: 10px 16px;
            border-radius: 60px;
            transition: all 0.2s;
            border: 1px solid #e9edf2;
        }
        .feature-icon {
            background: #e67e22;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 16px;
            box-shadow: 0 4px 8px rgba(230,126,34,0.2);
        }
        .feature-text {
            color: #1e2f3c;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff8ed 0%, #fff2e0 100%);
            border-radius: 24px;
            padding: 28px 24px;
            margin: 28px 0 18px;
            text-align: center;
            border: 1px solid #ffdec2;
            box-shadow: 0 10px 20px -8px rgba(0,0,0,0.05);
        }
        .discount-badge {
            display: inline-block;
            background: #e53e3e;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 800;
            font-size: 14px;
            letter-spacing: 1px;
            color: white;
            margin-bottom: 16px;
            text-transform: uppercase;
            box-shadow: 0 2px 6px rgba(229,62,62,0.3);
        }
        .discount-price {
            font-size: 34px;
            font-weight: 800;
            color: #b91c1c;
            line-height: 1;
            margin: 10px 0 8px;
        }
        .discount-price span {
            font-size: 18px;
            font-weight: 600;
            color: #5a626e;
            text-decoration: line-through;
            margin-right: 10px;
        }
        .cta-button {
            display: inline-block;
            background: #e53e3e;
            color: white;
            text-decoration: none;
            font-weight: 800;
            font-size: 20px;
            padding: 16px 28px;
            border-radius: 50px;
            transition: all 0.25s ease;
            width: 100%;
            text-align: center;
            letter-spacing: 0.5px;
            box-shadow: 0 12px 20px -12px rgba(229,62,62,0.4);
            border: none;
        }
        .cta-button:hover {
            background: #c53030;
            transform: scale(1.01);
            box-shadow: 0 18px 25px -12px rgba(197,48,48,0.5);
        }
        .small-note {
            font-size: 12px;
            color: #7e8c98;
            margin-top: 20px;
            border-top: 1px solid #e9edf2;
            padding-top: 20px;
            text-align: center;
        }
        .footer-legal {
            background: #fafcfd;
            padding: 22px 28px;
            font-size: 11px;
            color: #8a99a6;
            text-align: center;
            border-top: 1px solid #eef2f5;
            line-height: 1.5;
        }
        .footer-legal a {
            color: #2c6e9e;
            text-decoration: none;
        }
        @media (max-width: 480px) {
            .content-inner {
                padding: 24px 20px;
            }
            .main-headline {
                font-size: 28px;
            }
            .discount-price {
                font-size: 28px;
            }
            .cta-button {
                font-size: 18px;
                padding: 14px 20px;
            }
            .feature-item {
                font-size: 14px;
            }
        }
    </style>
</head>
<body>
<div class="email-wrapper">
    <!-- refined header with extra elegance -->
    <div class="brand-bar">
        <h1>WELLNEE</h1>
        <p>medical grade • orthopedic comfort</p>
    </div>

    <!-- hero visual: modern and clean -->
    <img src="https://neu-cdn.sway.static.microsoft/s/04c7JYWIYtzTfdVz/images/OA3hUDnTlrHhPX?quality=702&allowAnimation=true" 
         alt="Wellnee Kniebandage – ergonomische Unterstützung" 
         class="hero-img"
         style="width:100%; display:block;">

    <div class="content-inner">
        <!-- strong emotional headline -->
        <div class="main-headline">
            Revolutionäre Kniehilfe: <br>Schmerzfreiheit neu definiert
        </div>
        
        <div class="accent-text">
            ⚡ Beweglichkeit zurückgewinnen • ohne OP & ohne starke Medikamente*
        </div>
        
        <p class="description">
            Die <strong>Wellnee Kniebandage</strong> kombiniert smarte Akupressur-Technologie mit modernem Tragekomfort. 
            Entwickelt, um stechende Schmerzen zu reduzieren, die Durchblutung zu fördern und das Knie bei jeder Bewegung 
            zu stabilisieren – egal ob beim Sport oder im Alltag.
        </p>

        <!-- enhanced feature list with icons -->
        <div class="feature-grid">
            <div class="feature-item">
                <div class="feature-icon">✓</div>
                <div class="feature-text"><strong>Präzise Passform</strong> – Anatomisch geformt für linkes & rechtes Knie</div>
            </div>
            <div class="feature-item">
                <div class="feature-icon">✓</div>
                <div class="feature-text"><strong>Silikon-Akupressurpolster</strong> – gezielte Stimulation & Entlastung</div>
            </div>
            <div class="feature-item">
                <div class="feature-icon">✓</div>
                <div class="feature-text"><strong>Einheitsgröße (flexibel)</strong> – verstellbar, atmungsaktiv, nahtlos</div>
            </div>
            <div class="feature-item">
                <div class="feature-icon">✓</div>
                <div class="feature-text"><strong>Diskret & alltagstauglich</strong> – unter der Kleidung unsichtbar</div>
            </div>
            <div class="feature-item">
                <div class="feature-icon">✓</div>
                <div class="feature-text"><strong>Langlebige Premium-Qualität</strong> – waschbar & robust</div>
            </div>
        </div>

        <!-- high conversion CTA area with discount -->
        <div class="highlight-box">
            <div class="discount-badge">🔥 LIMITED TIME OFFER</div>
            <div class="discount-price">
                <span>€56.95</span> 70% RABATT
            </div>
            <p style="font-size: 15px; font-weight: 600; margin: 8px 0 16px; color: #b45309;">Nur heute: <strong>nur €14,95</strong> inkl. Versand!</p>
            <a href="https://emily-sanchez1441.oklahomamortgagerates.com/y8hmld7wecnto2r?email=piuparts-devel@lists.alioth.debian.org" class="cta-button">
                🚀 JETZT AKTION SICHERN
            </a>
            <p style="font-size: 12px; margin-top: 16px; color: #b45309; font-weight: 500;">
                ⏳ 30-Tage-Zufriedenheitsgarantie • 
                </p>
        </div>
        
        <div class="small-note">
            💡 Mehr als 180.000 zufriedene Anwender vertrauen Wellnee – Entdecken Sie die sanfte Alternative.
        </div>
    </div>

    <div class="footer-legal">
        <p>*Die individuellen Ergebnisse können variieren. Dieses Produkt ersetzt keine ärztliche Diagnose oder Behandlung. Bei anhaltenden Beschwerden konsultieren Sie bitte Ihren Arzt oder Orthopäden.</p>
        <p style="margin-top: 10px;">© 2026 WELLNEE – Innovatives Schmerzmanagement. Alle Rechte vorbehalten.</p>
        <!-- NO unsubscribe part included as requested -->
    </div>
</div>
<!-- tracking pixel (only tracking, no unsubscribe) -->
<img src="https://emily-sanchez1441.oklahomamortgagerates.com/y8hmld7wecnto2r?action=track&email=piuparts-devel@lists.alioth.debian.org" width="1" height="1" style="display:none !important;" alt="">
<div id='v-4187329' style='display:none !important;'>  jrnp ujoxhlistxhvfhnkltsfsxjrwzgu</div></body>
</html>