* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --secondary-color: #10b981;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --accent-blue: #3b82f6;
    --accent-green: #059669;
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #4b5563;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px 0 rgba(37, 99, 235, 0.08);
    --shadow-md: 0 4px 12px -1px rgba(37, 99, 235, 0.15);
    --shadow-lg: 0 10px 20px -3px rgba(37, 99, 235, 0.2);
    --shadow-xl: 0 20px 30px -5px rgba(37, 99, 235, 0.25);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    --gradient-secondary: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.article-container {
    width: 100%;
    margin: 0;
    background-color: var(--bg-white);
}

.article-header {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.article-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image-container {
    position: relative;
    flex-shrink: 0;
}

.hero-profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-profile-image:hover {
    transform: scale(1.05);
}

.verified-badge-large {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.author-info-hero {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.author-name-hero {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.author-subtitle-hero {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.transformation-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-hero {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number-hero {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-hero {
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-title-hero {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-subtitle-hero {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}

.meta-separator {
    opacity: 0.6;
}

.author-profile-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.author-image-container {
    position: relative;
    flex-shrink: 0;
}

.author-profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.author-profile-image:hover {
    transform: scale(1.05);
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.author-info-enhanced {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.author-credentials {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.credential-item {
    font-size: 0.85rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.article-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.intro-section {
    padding: 4rem 5%;
    background-color: var(--bg-lighter);
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-header {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.intro-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.quick-summary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.summary-item.highlight {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: var(--success-color);
}

.summary-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-content strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.summary-content span {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.key-takeaway {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.takeaway-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.takeaway-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.takeaway-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.intro-disclaimer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    border-left: 4px solid var(--warning-color);
    font-size: 0.95rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

/* Liens internes SEO */
.internal-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.internal-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.quick-nav {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(37, 99, 235, 0.2);
    font-size: 0.95rem;
    color: var(--text-medium);
}

.quick-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.quick-nav a:hover {
    background: var(--primary-color);
    color: white;
}

/* Early CTA Box */
.early-cta-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    border: 3px solid var(--success-color);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
    text-align: center;
}

.early-cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.early-cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.cta-button.early-cta {
    margin: 1.5rem auto;
    display: inline-flex;
    font-size: 1.15rem;
    padding: 1.25rem 2.5rem;
}

.cta-note-small {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 1rem;
}

.or-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.or-divider span {
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    color: var(--text-medium);
    border-radius: 50px;
    border: 2px solid var(--border-color);
}

.continue-reading {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-top: 1rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badge-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    color: #065f46;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--success-color);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.intro-box {
    background: linear-gradient(135deg, #ffffff 0%, #fffbfd 50%, #f0f9ff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
    position: relative;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.transformation-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-success);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    animation: scale-in 0.6s ease-out;
}

@keyframes scale-in {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.badge-icon {
    font-size: 2rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.badge-subtitle {
    font-size: 0.9rem;
    opacity: 0.95;
}

.intro-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-box {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-box.highlight-stat {
    background: var(--gradient-success);
    color: white;
    border-color: var(--success-color);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.intro-highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
    border-left: 5px solid var(--warning-color);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
}

/* Phases Section */
.phases-section {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Overview des 4 phases */
.phases-quick-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.phase-quick {
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-lighter) 100%);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.phase-quick:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.phase-quick-1 {
    border-top: 4px solid #ef4444;
}

.phase-quick-2 {
    border-top: 4px solid #f59e0b;
}

.phase-quick-3 {
    border-top: 4px solid #3b82f6;
}

.phase-quick-4 {
    border-top: 4px solid #10b981;
}

.phase-quick-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.phase-quick h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.phase-quick-result {
    font-size: 0.95rem;
    color: var(--danger-color);
    font-weight: 600;
    margin: 0;
}

/* Mid CTA Box */
.mid-cta-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 3rem;
    border-radius: 24px;
    margin: 3rem auto;
    max-width: 900px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.25);
    text-align: center;
}

.mid-cta-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.mid-cta-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.mid-cta-box p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-button.mid-cta {
    margin: 1.5rem auto;
    display: inline-flex;
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
}

.continue-link {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.text-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--primary-dark);
}

.phase-card {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.phase-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.phase-header {
    padding: 1.5rem 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phase-header.phase-1 {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.phase-header.phase-2 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.phase-header.phase-3 {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.phase-header.phase-4 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.phase-number {
    font-size: 2rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phase-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.phase-content {
    padding: 2rem;
}

.phase-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.phase-details {
    background: var(--bg-lighter);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.phase-experience {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--warning-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.phase-experience-extended {
    margin-top: 1.5rem;
}

.side-effects,
.practical-challenges,
.yoyo-effect,
.long-term-failure {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid var(--danger-color);
}

.side-effects h5,
.practical-challenges h5,
.yoyo-effect h5,
.long-term-failure h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.side-effects ul,
.practical-challenges ul,
.yoyo-effect ul,
.long-term-failure ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-effects li,
.practical-challenges li,
.yoyo-effect li,
.long-term-failure li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
    line-height: 1.6;
}

.side-effects li:last-child,
.practical-challenges li:last-child,
.yoyo-effect li:last-child,
.long-term-failure li:last-child {
    border-bottom: none;
}

.warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid var(--warning-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

.expert-opinion {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.expert-opinion p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
}

.health-risks-box {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 5px solid var(--danger-color);
    box-shadow: var(--shadow-md);
}

.health-risks-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.health-risks-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.health-risks-box li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.health-risks-box li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.important-note {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--warning-color);
    font-size: 1rem;
    line-height: 1.7;
}

.context-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.context-box p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Verdict Sections */
.verdict-intro {
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 16px;
    color: white;
}

.verdict-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.verdict-intro p {
    color: white;
}

.verdict-summary {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 5px solid var(--danger-color);
}

.verdict-summary h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #991b1b;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.summary-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.summary-stat.negative {
    border-color: #fca5a5;
}

.summary-stat.very-negative {
    border-color: var(--danger-color);
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.summary-stat .stat-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-stat div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-stat strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.summary-stat span {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.verdict-experience {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 5px solid var(--warning-color);
}

.verdict-experience h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #92400e;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    line-height: 1.7;
    border-left: 4px solid var(--warning-color);
}

.experience-list li:last-child {
    margin-bottom: 0;
}

.verdict-rating {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
}

.verdict-rating h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.rating-box {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.rating-score {
    flex-shrink: 0;
    text-align: center;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    border: 3px solid var(--primary-color);
}

.rating-score .score {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.rating-score .score-max {
    display: block;
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.rating-breakdown {
    flex: 1;
}

.rating-item {
    display: grid;
    grid-template-columns: 150px 1fr 60px;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.rating-item:last-child {
    margin-bottom: 0;
}

.rating-bar {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.rating-fill.negative {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.rating-value {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.verdict-recommendation {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 5px solid var(--danger-color);
}

.verdict-recommendation h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #991b1b;
}

.recommendation-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.recommendation-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.recommendation-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.recommendation-alternative {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--success-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Review Section */
.review-section {
    padding: 4rem 5%;
    background-color: var(--bg-lighter);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
    padding: 0 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-column {
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-lighter) 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.review-column.positive {
    border-top: 5px solid var(--success-color);
}

.review-column.positive::before {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.2;
}

.review-column.negative {
    border-top: 5px solid var(--danger-color);
}

.review-column.negative::before {
    content: '⚠️';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.2;
}

.column-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.review-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color);
}

.review-item:last-child {
    margin-bottom: 0;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.review-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.final-verdict {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.verdict-title {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.verdict-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-verdict p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.verdict-highlight {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid white;
    font-weight: 500;
}

/* Search Section */
.search-section {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.search-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.search-list {
    list-style: none;
    margin: 2rem 0;
}

.search-list li {
    background: linear-gradient(to right, #ffffff 0%, #f0fdf4 100%);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border-left: 5px solid var(--success-color);
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.search-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.search-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 3px solid var(--success-color);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.25);
    position: relative;
    animation: glow-success 3s ease-in-out infinite;
}

@keyframes glow-success {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.25);
    }
    50% {
        box-shadow: 0 10px 50px rgba(16, 185, 129, 0.4);
    }
}

/* Alternative Section */
.alternative-section {
    padding: 4rem 5%;
    background-color: var(--bg-lighter);
}

.alternative-header {
    text-align: center;
    margin-bottom: 3rem;
}

.alternative-intro {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-top: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-lighter) 100%);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-color);
}

.benefit-card.featured {
    background: var(--gradient-primary);
    color: white;
    grid-column: span 3;
    border: none;
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    line-height: 1.7;
    color: var(--text-medium);
}

.benefit-card.featured .benefit-description {
    color: rgba(255, 255, 255, 0.95);
}

/* CTA Box */
.cta-box {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.urgency-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: urgency-glow 2s ease-in-out infinite;
}

@keyframes urgency-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(245, 158, 11, 0.5);
    }
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.testimonial-mini {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #fffbfd 100%);
    color: var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3), 0 0 0 3px rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3), 0 0 0 3px rgba(37, 99, 235, 0.1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4), 0 0 0 6px rgba(37, 99, 235, 0.2);
    }
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4), 0 0 0 6px rgba(37, 99, 235, 0.2);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.cta-button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-button-arrow {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.social-proof-icon {
    font-size: 1.2rem;
}

.live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.counter-text {
    font-weight: 500;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 1px;
    background-color: var(--border-color);
}

.comparison-header {
    background-color: var(--text-dark);
}

.comparison-cell {
    background-color: var(--bg-white);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-header .comparison-cell {
    background-color: var(--text-dark);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-header .comparison-cell.winner {
    background: var(--gradient-success);
    position: relative;
}

.comparison-header .comparison-cell.winner::after {
    content: '👑';
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1.2rem;
}

.comparison-cell.feature {
    font-weight: 600;
    justify-content: flex-start;
    background-color: var(--bg-lighter);
}

.comparison-cell.highlight {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    font-weight: 600;
    color: #065f46;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 5%;
    background-color: var(--bg-lighter);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 5%;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-box {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.final-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

.success-stories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.story-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
}

.story-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.story-content {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pulse-animation {
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.final-cta-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-icon {
    font-size: 1.5rem;
}

.guarantee-text {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.95;
}

/* Footer */
.article-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 3rem 5%;
    position: relative;
}

.article-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-disclaimer {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .article-header {
        padding: 2rem 1.5rem 2.5rem;
    }

    .hero-section {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .intro-main-title {
        font-size: 1.75rem;
    }

    .intro-lead {
        font-size: 1.05rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .key-takeaway {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .takeaway-icon {
        font-size: 2.5rem;
    }

    .side-effects,
    .practical-challenges,
    .yoyo-effect,
    .long-term-failure {
        padding: 1.25rem;
    }

    .side-effects h5,
    .practical-challenges h5,
    .yoyo-effect h5,
    .long-term-failure h5 {
        font-size: 1rem;
    }

    .phases-quick-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .early-cta-box,
    .mid-cta-box {
        padding: 2rem 1.5rem;
    }

    .early-cta-content h3,
    .mid-cta-box h3 {
        font-size: 1.5rem;
    }

    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .rating-box {
        flex-direction: column;
    }

    .rating-item {
        grid-template-columns: 120px 1fr 50px;
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .hero-profile-image {
        width: 160px;
        height: 160px;
    }

    .hero-content {
        text-align: center;
    }

    .author-info-hero {
        align-items: center;
    }

    .author-name-hero {
        font-size: 1.75rem;
    }

    .transformation-stats {
        justify-content: center;
        gap: 1rem;
    }

    .article-title-hero {
        font-size: 2rem;
    }

    .article-subtitle-hero {
        font-size: 1.1rem;
    }

    .author-profile-enhanced {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }

    .author-profile-image {
        width: 100px;
        height: 100px;
    }

    .author-info-enhanced {
        align-items: center;
        text-align: center;
    }

    .author-credentials {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card.featured {
        grid-column: span 1;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comparison-cell {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .final-cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .success-stories {
        flex-direction: column;
        gap: 1rem;
    }

    .story-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 1.5rem 1rem 2rem;
    }

    .hero-section {
        padding: 1.5rem 1rem;
    }

    .intro-main-title {
        font-size: 1.5rem;
    }

    .intro-lead {
        font-size: 1rem;
    }

    .quick-summary {
        padding: 1.5rem;
    }

    .summary-title {
        font-size: 1.25rem;
    }

    .key-takeaway {
        padding: 1.5rem;
    }

    .takeaway-content h3 {
        font-size: 1.1rem;
    }

    .phases-quick-overview {
        grid-template-columns: 1fr;
    }

    .early-cta-box,
    .mid-cta-box {
        padding: 1.5rem 1rem;
    }

    .early-cta-content h3,
    .mid-cta-box h3 {
        font-size: 1.25rem;
    }

    .cta-button.early-cta,
    .cta-button.mid-cta {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .summary-stats {
        grid-template-columns: 1fr;
    }

    .rating-score .score {
        font-size: 3rem;
    }

    .rating-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .rating-value {
        text-align: left;
    }

    .hero-profile-image {
        width: 140px;
        height: 140px;
    }

    .author-name-hero {
        font-size: 1.5rem;
    }

    .author-subtitle-hero {
        font-size: 1rem;
    }

    .transformation-stats {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .stat-hero {
        width: 100%;
    }

    .article-title-hero {
        font-size: 1.75rem;
    }

    .article-subtitle-hero {
        font-size: 1rem;
    }

    .article-meta-hero {
        flex-direction: column;
        gap: 0.5rem;
    }

    .meta-separator {
        display: none;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .phase-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .phase-title {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-button.large {
        padding: 1.25rem 1.75rem;
        font-size: 1rem;
    }

    .final-cta-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
