/* Reset und Basis-Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
}

.expert-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Celebrity Section */
.hero-celebrity {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-celebrity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1200&h=600&fit=crop') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.celebrity-endorsement {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.celebrity-image {
    text-align: center;
}

.celebrity-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    object-fit: cover;
}

.celebrity-content {
    color: white;
}

.celebrity-verification {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.verified-badge {
    background: #27ae60;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-indicator {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
}

.celebrity-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.celebrity-title {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
    font-weight: 300;
}

.celebrity-quote blockquote {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
}

.celebrity-quote blockquote::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    left: -20px;
    top: -20px;
    opacity: 0.3;
}

.celebrity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.scientific-article {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Article Header */
.article-header {
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.journal-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.journal-name {
    background: #667eea;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.article-date {
    color: #6c757d;
    font-size: 14px;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #2c3e50;
}

.article-subtitle p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 25px;
    font-weight: 300;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
}

.author-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 2px;
}

.author-credentials {
    font-size: 12px;
    color: #667eea;
    font-weight: 500;
}

/* Article Sections */
.article-intro,
.personal-story,
.scientific-basis,
.tv-special,
.patient-stories,
.medical-validation,
.cta-section,
.footer-info {
    padding: 40px;
    border-bottom: 1px solid #e9ecef;
}

.lead {
    font-size: 20px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 25px;
    font-weight: 300;
}

p {
    margin-bottom: 20px;
    line-height: 1.7;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.highlight-box p {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Personal Story */
.story-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Scientific Basis */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.ingredient-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ingredient-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.ingredient-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.ingredient-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.study-reference {
    background: rgba(102, 126, 234, 0.1);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.study-reference span {
    display: block;
    color: #6c757d;
}

/* TV Special */
.tv-special-content {
    text-align: center;
}

.tv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tv-stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.tv-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tv-label {
    font-size: 14px;
    opacity: 0.9;
}

.tv-quote {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    font-style: italic;
    font-size: 18px;
    text-align: left;
    margin-top: 30px;
}

.tv-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 500;
    color: #667eea;
}

/* Patient Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.story-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.patient-photo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.story-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.story-quote {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.story-results {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.result-item {
    background: #e8f5e8;
    color: #27ae60;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

/* Medical Validation */
.validation-points {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.validation-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.validation-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.validation-content h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.validation-content p {
    margin-bottom: 0;
    color: #6c757d;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    border-radius: 0;
    border-bottom: none;
}

.cta-content h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Countdown Timer */
.urgency-timer {
    background: rgba(0,0,0,0.2);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.timer-label {
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.time-block {
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
    padding: 15px;
    border-radius: 8px;
    min-width: 80px;
}

.time-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.time-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #6c757d;
}

.timer-message {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

/* Offer Box */
.offer-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.old-price {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.old-price .price-value {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.7;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.new-price {
    text-align: left;
}

.new-price .price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.guarantee-box {
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
    padding: 15px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    margin: 20px 0;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.cta-text {
    display: block;
    margin-bottom: 5px;
}

.cta-subtext {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

.stock-warning {
    background: rgba(231, 76, 60, 0.2);
    padding: 15px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-top: 20px;
}

.warning-text {
    color: #e74c3c;
}

/* Footer Info */
.footer-info {
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: #2c3e50;
}

.info-content p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.disclaimer {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-button {
    background: #e74c3c;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 30px;
    display: block;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    max-width: 250px;
}

.floating-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
}

.floating-text {
    display: block;
    font-weight: 700;
    margin-bottom: 3px;
}

.floating-subtext {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .celebrity-endorsement {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .celebrity-image img {
        width: 200px;
        height: 200px;
    }
    
    .celebrity-name {
        font-size: 28px;
    }
    
    .celebrity-stats {
        grid-template-columns: 1fr;
    }
    
    .article-header {
        padding: 25px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .tv-stats {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .discount-badge {
        margin: 0 auto;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .floating-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    
    .floating-button {
        max-width: none;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .validation-item {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .time-block {
        min-width: 70px;
        padding: 10px;
    }
    
    .time-value {
        font-size: 24px;
    }
    
    .story-card {
        flex-direction: column;
        text-align: center;
    }
    
    .patient-photo {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .article-header,
    .article-intro,
    .personal-story,
    .scientific-basis,
    .tv-special,
    .patient-stories,
    .medical-validation,
    .cta-section,
    .footer-info {
        padding: 25px 15px;
    }
    
    .celebrity-quote blockquote {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 18px;
    }
    
    .hero-celebrity {
        padding: 40px 0;
    }
}

/* Animation und Übergänge */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.urgent {
    animation: pulse 2s infinite;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .floating-cta,
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .scientific-article {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}