* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-black: #000000;
    --bg-dark-gray: #0a0a0a;
    --bg-darker-gray: #050505;
    --text-white: #ffffff;
    --text-light: #b3b3b3;
    --text-muted: #666666;
    --button-gold: #d4a574;
    --button-gold-hover: #c49564;
    --button-gold-light: rgba(212, 165, 116, 0.1);
    --border-color: #1a1a1a;
    --border-light: #2a2a2a;
    --icon-blue: #4a90e2;
    --success-green: #4ade80;
    --gradient-gold: linear-gradient(135deg, #d4a574 0%, #c49564 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    img, video, iframe, embed, object {
        max-width: 100% !important;
        height: auto !important;
    }
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Image Responsiveness */
@media (max-width: 768px) {
    img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .article-visual img,
    .resource-card img,
    .proof-image,
    .testimonial-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    body {
        overflow-x: hidden;
    }
    
    /* Ensure all forms are touch-friendly */
    input[type="email"],
    input[type="text"],
    button[type="submit"],
    .submit-btn,
    .submit-btn-bottom {
        min-height: 44px; /* iOS recommended touch target */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

@media (max-width: 480px) {
    img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .article-visual img,
    .resource-card img,
    .proof-image,
    .testimonial-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
    }
    
    body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }
    
    .container,
    .section {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Ensure touch targets are large enough on small screens */
    input[type="email"],
    input[type="text"],
    button[type="submit"],
    .submit-btn,
    .submit-btn-bottom {
        min-height: 44px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-black);
    z-index: 1000;
    padding: 28px 0;
    border-bottom: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
        gap: 12px;
    }
}

.brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brand:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.icon-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.email-icon {
    background-color: var(--icon-blue);
    color: var(--text-white);
}

.icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.icon-link svg {
    width: 20px;
    height: 20px;
}

/* Container */
.container {
    margin-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        margin-top: 50px;
    }
}

/* Hero Newsletter Section */
.hero-newsletter {
    background: var(--gradient-dark);
    padding: 120px 40px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-newsletter {
        padding: 100px 20px 80px;
    }
}

@media (max-width: 480px) {
    .hero-newsletter {
        padding: 80px 16px 60px;
    }
}

.hero-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--button-gold-light);
    border: 1px solid var(--button-gold);
    color: var(--button-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: var(--text-white);
    font-weight: 700;
}

.hero-form {
    max-width: 600px;
    margin: 0 auto 32px;
}

@media (max-width: 768px) {
    .hero-form {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-form {
        padding: 0 16px;
    }
}

.form-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .form-group {
        gap: 12px;
    }
}

.hero-email-input {
    flex: 1;
    min-width: 280px;
    padding: 18px 24px;
    font-size: 16px;
    border: 2px solid var(--border-light);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero-email-input {
        width: 100%;
        min-width: 100%;
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .hero-email-input {
        padding: 14px 18px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

.hero-email-input::placeholder {
    color: var(--text-muted);
}

.hero-email-input:focus {
    outline: none;
    border-color: var(--button-gold);
    background-color: rgba(255, 255, 255, 0.08);
}

.hero-submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    background: var(--gradient-gold);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3);
}

@media (max-width: 768px) {
    .hero-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .hero-submit-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

.hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 165, 116, 0.4);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.feature-item svg {
    flex-shrink: 0;
}

.form-message {
    margin-top: 16px;
    font-size: 14px;
    min-height: 20px;
    text-align: center;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .form-message {
        margin-top: 12px;
        font-size: 14px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .form-message {
        margin-top: 12px;
        font-size: 13px;
        padding: 0 16px;
    }
}

.form-message.success {
    color: var(--success-green);
}

.form-message.error {
    color: #f87171;
}

.form-message.loading {
    color: #a78bfa;
    font-style: italic;
}

/* Newsletter Signup Section */
.newsletter-signup {
    background-color: #000000;
    padding: 100px 40px 60px;
    text-align: left;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .newsletter-signup {
        padding: 100px 20px 50px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .signup-content {
        padding: 0 20px !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

@media (max-width: 480px) {
    .newsletter-signup {
        padding: 90px 16px 40px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .signup-content {
        padding: 0 16px !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

.signup-content {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .signup-content {
        padding-left: 0 !important;
        padding: 0 20px !important;
        text-align: center !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

@media (max-width: 480px) {
    .signup-content {
        padding: 0 16px !important;
        text-align: center !important;
        max-width: 100% !important;
    }
}

/* Removed duplicate - using the enhanced version above */

@media (max-width: 480px) {
    .signup-content {
        padding: 0 16px;
        text-align: center;
    }
}

.signup-label {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #FFFFFF;
    margin-bottom: 16px;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    text-align: left;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .signup-label {
        text-align: center;
        font-size: clamp(28px, 6vw, 40px);
    }
}

@media (max-width: 480px) {
    .signup-label {
        text-align: center;
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 12px;
    }
}

.signup-subtitle {
    font-size: 19px;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-align: left;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 768px) {
    .signup-subtitle {
        text-align: center;
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .signup-subtitle {
        text-align: center;
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 8px;
    }
}

.signup-subtitle strong {
    color: #FFFFFF;
    font-weight: 700;
}

.signup-author-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 0 24px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: cover;
    border: 2px solid #A0785A;
    background-color: #1a1a1a;
    z-index: 1;
    min-width: 120px;
    min-height: 120px;
    flex-shrink: 0;
}

/* Ensure the image container is always visible */
.signup-content::before {
    content: '';
    display: none;
}

/* Show placeholder if image fails */
.signup-author-photo:not([src]),
.signup-author-photo[src=""],
.signup-author-photo[src="undefined"] {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><circle cx="60" cy="60" r="60" fill="%231a1a1a"/><text x="50%25" y="50%25" text-anchor="middle" dy=".3em" fill="%23A0785A" font-size="40" font-weight="bold">AL</text></circle></svg>');
    background-size: cover;
    background-position: center;
}

/* Ensure image is always visible on mobile */
@media (max-width: 768px) {
    .signup-author-photo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100px !important;
        height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
        margin: 0 auto 24px !important;
    }
    
    .signup-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

@media (max-width: 480px) {
    .signup-author-photo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        min-height: 80px !important;
        margin: 0 auto 20px !important;
    }
}

/* Removed duplicate - using the one above */

@media (max-width: 480px) {
    .signup-author-photo {
        margin: 0 auto 20px;
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
}

.signup-social-links {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .signup-social-links {
        justify-content: center;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .signup-social-links {
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
    }
}

.signup-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .signup-social-link {
        width: 40px;
        height: 40px;
    }
    
    .signup-social-link svg {
        width: 18px;
        height: 18px;
    }
}

.signup-social-link:hover {
    background-color: rgba(160, 120, 90, 0.2);
    border-color: #A0785A;
    color: #A0785A;
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .newsletter-form {
        gap: 12px;
    }
}

.email-input {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    padding: 18px 0;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    background-color: transparent;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border-radius: 0;
}

@media (max-width: 768px) {
    .email-input {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 16px 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .email-input {
        padding: 14px 0;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.email-input:focus {
    outline: none;
    border-bottom-color: var(--text-white);
    background-color: transparent;
}

.submit-btn {
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: #A0785A;
    color: var(--text-white);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    border-radius: 4px;
    height: fit-content;
}

@media (max-width: 768px) {
    .submit-btn {
        width: 100%;
        padding: 16px 24px;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .submit-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

.submit-btn:hover {
    background-color: #8d6a4a;
}

/* Newsletter Articles Section */
.newsletter-articles-section {
    background-color: transparent;
    padding: 0;
}

.newsletter-header-section {
    background-color: #282828;
    padding: 60px 40px;
    position: relative;
}

@media (max-width: 768px) {
    .newsletter-header-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .newsletter-header-section {
        padding: 30px 16px;
    }
}

.newsletter-articles-section .section-header {
    text-align: center;
    margin-bottom: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section-label-container {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 24px;
    background-color: #5C4B3B;
    border: 1.5px solid #A0825F;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-label-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.newsletter-articles-section .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    display: block;
    text-align: center;
}

.newsletter-articles-section .section-subtitle {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

@media (max-width: 768px) {
    .newsletter-articles-section .section-subtitle {
        font-size: clamp(28px, 6vw, 36px) !important;
        margin-bottom: 16px !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 480px) {
    .newsletter-articles-section .section-subtitle {
        font-size: clamp(24px, 7vw, 32px) !important;
        margin-bottom: 12px !important;
        padding: 0 16px !important;
    }
}

.newsletter-articles-section .section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .newsletter-articles-section .section-description {
        font-size: 16px !important;
        padding: 0 20px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    .newsletter-articles-section .section-description {
        font-size: 14px !important;
        padding: 0 16px !important;
        line-height: 1.5 !important;
    }
}

.articles-grid-wrapper {
    background-color: #F5F5F5;
    padding: 80px 40px 60px;
}

@media (max-width: 768px) {
    .articles-grid-wrapper {
        padding: 60px 20px 40px;
    }
}

@media (max-width: 480px) {
    .articles-grid-wrapper {
        padding: 40px 16px 30px;
    }
}

.more-newsletters-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 40px 80px;
    background-color: #F5F5F5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .more-newsletters-wrapper {
        padding: 30px 20px 60px;
    }
}

@media (max-width: 480px) {
    .more-newsletters-wrapper {
        padding: 24px 16px 40px;
    }
}

.more-newsletters-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #A0785A;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.more-newsletters-btn:hover {
    background-color: #8d6a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(160, 120, 90, 0.3);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .article-preview-card {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .article-visual {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        padding: 16px !important;
        min-height: 180px !important;
        max-height: 250px !important;
        box-sizing: border-box;
    }
    
    .article-preview-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
        padding: 16px 16px 8px !important;
        margin: 0 !important;
    }
    
    .article-preview-excerpt {
        font-size: 15px !important;
        padding: 0 16px 12px !important;
        margin: 0 !important;
        line-height: 1.5 !important;
    }
    
    .article-read-link {
        padding: 12px 16px !important;
        font-size: 14px !important;
        margin: 0 16px 16px !important;
    }
}

@media (max-width: 480px) {
    .articles-grid {
        gap: 16px;
        padding: 0 8px;
        max-width: 100%;
    }
    
    .article-preview-card {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .article-visual {
        padding: 12px !important;
        min-height: 150px !important;
        max-height: 200px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .article-preview-title {
        font-size: 16px !important;
        line-height: 1.3 !important;
        padding: 12px 12px 6px !important;
        margin: 0 !important;
        font-weight: 700 !important;
    }
    
    .article-preview-excerpt {
        font-size: 14px !important;
        padding: 0 12px 10px !important;
        margin: 0 !important;
        line-height: 1.5 !important;
    }
    
    .article-read-link {
        padding: 10px 12px !important;
        font-size: 13px !important;
        margin: 0 12px 12px !important;
    }
}

.article-preview-card {
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.article-preview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.article-visual {
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

@media (max-width: 768px) {
    .article-visual {
        padding: 16px !important;
        min-height: 180px !important;
        max-height: 250px !important;
        overflow: hidden !important;
    }
    
    /* Make visual diagrams much smaller on mobile */
    .visual-venn {
        width: 140px !important;
        height: 140px !important;
        max-width: 100% !important;
    }
    
    .visual-venn .venn-circle {
        width: 90px !important;
        height: 90px !important;
        font-size: 8px !important;
        line-height: 1.2 !important;
        padding: 4px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
    }
    
    /* Fix four-circle Venn diagrams */
    .visual-venn-four {
        width: 140px !important;
        height: 140px !important;
    }
    
    .venn-four-circle {
        width: 60px !important;
        height: 60px !important;
        font-size: 7px !important;
        line-height: 1.1 !important;
        padding: 2px !important;
    }
    
    .venn-four-overlap {
        width: 30px !important;
        height: 30px !important;
        font-size: 18px !important;
    }
    
    .visual-venn .venn-overlap {
        width: 35px !important;
        height: 35px !important;
        font-size: 20px !important;
    }
    
    .visual-diagram {
        font-size: 9px !important;
        gap: 4px !important;
    }
    
    .diagram-item {
        padding: 4px 8px !important;
        font-size: 9px !important;
        line-height: 1.3 !important;
    }
    
    .diagram-arrow {
        font-size: 12px !important;
    }
    
    .visual-pyramid {
        font-size: 8px !important;
        gap: 2px !important;
    }
    
    .pyramid-layer {
        padding: 3px 8px !important;
        font-size: 8px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 480px) {
    .article-visual {
        padding: 12px !important;
        min-height: 150px !important;
        max-height: 200px !important;
        overflow: hidden !important;
    }
    
    /* Even smaller for very small phones */
    .visual-venn {
        width: 100px !important;
        height: 100px !important;
        max-width: 90% !important;
    }
    
    .visual-venn .venn-circle {
        width: 65px !important;
        height: 65px !important;
        font-size: 7px !important;
        line-height: 1.1 !important;
        padding: 3px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
        overflow: hidden !important;
    }
    
    /* Fix four-circle Venn diagrams on small phones */
    .visual-venn-four {
        width: 100px !important;
        height: 100px !important;
    }
    
    .venn-four-circle {
        width: 45px !important;
        height: 45px !important;
        font-size: 6px !important;
        line-height: 1.0 !important;
        padding: 1px !important;
    }
    
    .venn-four-overlap {
        width: 24px !important;
        height: 24px !important;
        font-size: 14px !important;
    }
    
    .visual-venn .venn-overlap {
        width: 28px !important;
        height: 28px !important;
        font-size: 16px !important;
    }
    
    .visual-diagram {
        font-size: 8px !important;
        gap: 3px !important;
    }
    
    .diagram-item {
        padding: 3px 6px !important;
        font-size: 8px !important;
        line-height: 1.2 !important;
        word-break: break-word !important;
    }
    
    .diagram-row {
        gap: 4px !important;
    }
    
    .diagram-arrow {
        font-size: 10px !important;
    }
    
    .visual-pyramid {
        font-size: 7px !important;
        gap: 1px !important;
    }
    
    .pyramid-layer {
        padding: 2px 6px !important;
        font-size: 7px !important;
        line-height: 1.1 !important;
    }
    
    .pyramid-layer.top {
        width: 40px !important;
    }
    
    .pyramid-layer.bottom {
        width: 100px !important;
    }
}

.visual-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .visual-diagram {
        font-size: 11px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .visual-diagram {
        font-size: 10px;
        gap: 4px;
    }
}

.diagram-item {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    text-align: center;
}

.diagram-item.highlight {
    background-color: var(--success-green);
    color: #000;
}

.diagram-row {
    display: flex;
    gap: 12px;
}

.diagram-arrow {
    color: var(--success-green);
    font-size: 16px;
    font-weight: 700;
}

.visual-chart {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
}

.chart-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.chart-bars {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 120px;
}

.chart-bar {
    width: 30px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 0;
    min-height: 20px;
}

.chart-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.visual-venn {
    position: relative;
    width: 200px;
    height: 200px;
}

@media (max-width: 768px) {
    .visual-venn {
        width: 160px;
        height: 160px;
        max-width: 100%;
    }
    
    .venn-circle {
        width: 100px !important;
        height: 100px !important;
        font-size: 10px !important;
        max-width: 100%;
    }
    
    .venn-overlap {
        font-size: 36px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .article-visual {
        max-width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .visual-venn {
        width: 120px;
        height: 120px;
        max-width: 90%;
    }
    
    .venn-circle {
        width: 75px !important;
        height: 75px !important;
        font-size: 8px !important;
        max-width: 100%;
    }
    
    .venn-overlap {
        font-size: 28px !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .article-visual {
        padding: 12px !important;
        min-height: 150px !important;
        max-width: 100%;
        overflow: hidden;
    }
    
    .visual-diagram {
        font-size: 9px !important;
        gap: 3px !important;
    }
    
    .diagram-item {
        padding: 4px 8px !important;
        font-size: 9px !important;
    }
    
    .signup-author-photo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 80px !important;
        height: 80px !important;
    }
}

.venn-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    background-color: rgba(255, 255, 255, 0.05);
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 8px;
    box-sizing: border-box;
    overflow: hidden;
}

.venn-circle.left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.venn-circle.right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.venn-overlap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 700;
    color: var(--success-green);
    z-index: 2;
}

/* Pyramid Visual */
.visual-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 100%;
}

@media (max-width: 768px) {
    .visual-pyramid {
        font-size: 10px;
        gap: 3px;
    }
    
    .pyramid-layer {
        padding: 5px 14px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .visual-pyramid {
        font-size: 9px;
        gap: 2px;
    }
    
    .pyramid-layer {
        padding: 4px 12px;
        font-size: 9px;
    }
    
    .pyramid-layer.top {
        width: 50px;
    }
    
    .pyramid-layer.bottom {
        width: 120px;
    }
}

.pyramid-layer {
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    text-align: center;
    width: fit-content;
}

.pyramid-layer.top {
    width: 60px;
}

.pyramid-layer.bottom {
    width: 140px;
}

/* Four Circle Venn Diagram */
.visual-venn-four {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.venn-four-circle {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.venn-four-circle.circle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.venn-four-circle.circle-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.venn-four-circle.circle-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.venn-four-circle.circle-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.venn-four-overlap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: 700;
    color: var(--success-green);
    z-index: 5;
}

.article-preview-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 24px 12px;
    line-height: 1.3;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .article-preview-title {
        font-size: 18px !important;
        margin: 16px 16px 8px !important;
        padding: 0 !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    .article-preview-title {
        font-size: 16px !important;
        margin: 12px 12px 6px !important;
        padding: 0 !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
    }
}

.article-preview-excerpt {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    margin: 0 24px 20px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    .article-preview-excerpt {
        font-size: 15px !important;
        margin: 0 16px 12px !important;
        padding: 0 !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    .article-preview-excerpt {
        font-size: 14px !important;
        margin: 0 12px 10px !important;
        padding: 0 !important;
        line-height: 1.5 !important;
    }
}

.article-read-link {
    display: inline-block;
    margin: 0 24px 24px;
    color: #D4AF37;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-align: left;
    pointer-events: none;
}

@media (max-width: 768px) {
    .article-read-link {
        margin: 0 16px 16px !important;
        font-size: 14px !important;
        padding: 0 !important;
    }
}

@media (max-width: 480px) {
    .article-read-link {
        margin: 0 12px 12px !important;
        font-size: 13px !important;
        padding: 0 !important;
    }
}

/* Resources Section */
.resources-section {
    background-color: #ffffff;
    padding: 0;
    color: #1a1a1a;
}

.resources-section .section-header {
    background-color: #222222;
    padding: 40px 40px 35px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .resources-section .section-header {
        padding: 30px 20px 25px;
    }
}

@media (max-width: 480px) {
    .resources-section .section-header {
        padding: 24px 16px 20px;
    }
}

.resources-section .section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .resources-section .section-title {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .resources-section .section-title {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 12px;
    }
}

.resources-section .section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .resources-section .section-description {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .resources-section .section-description {
        font-size: 15px;
        padding: 0 16px;
        line-height: 1.5;
    }
}

.resources-section .free-products-showcase {
    padding: 80px 40px 0;
    background-color: #ffffff;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 40px auto 80px;
    padding: 0 40px;
    justify-items: center;
}

@media (max-width: 968px) {
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
        margin: 30px auto 60px;
    }
}

@media (max-width: 480px) {
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
        margin: 24px auto 50px;
    }
}

.resource-card {
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #e6ded0;
    box-shadow: 0 18px 40px rgba(18, 18, 18, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .resource-card {
        border-radius: 12px;
        box-shadow: 0 12px 28px rgba(18, 18, 18, 0.08);
    }
}

@media (max-width: 480px) {
    .resource-card {
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(18, 18, 18, 0.08);
    }
}

/* Center single product in second row (4th card) - below X Simplified (middle column) */
@media (min-width: 969px) {
    .resource-card-center {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 968px) {
    .resource-card-center {
        max-width: 100%;
        width: 100%;
    }
}

.resource-card-hidden {
    display: none;
}

.resource-image-link {
    display: block;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.resource-image-link:hover {
    opacity: 0.9;
}

@media (max-width: 480px) {
    .resource-image-link {
        width: 100%;
        max-width: 100%;
    }
}

.resource-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #000;
    padding: 24px 32px;
    display: block;
}

@media (max-width: 768px) {
    .resource-card img {
        height: auto;
        min-height: 200px;
        max-height: 300px;
        padding: 20px;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .resource-card img {
        height: auto;
        min-height: 180px;
        max-height: 250px;
        padding: 16px 12px;
        object-fit: contain;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

.resource-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    padding: 18px 20px 6px;
}

@media (max-width: 768px) {
    .resource-card h3 {
        font-size: 17px;
        padding: 16px 18px 6px;
    }
}

@media (max-width: 480px) {
    .resource-card h3 {
        font-size: 16px;
        padding: 14px 16px 6px;
        line-height: 1.3;
    }
}

.resource-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    padding: 0 20px 20px;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .resource-card p {
        font-size: 14.5px;
        line-height: 1.6;
        padding: 0 18px 18px;
    }
}

@media (max-width: 480px) {
    .resource-card p {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 16px 16px;
    }
}

.resource-button {
    display: block;
    text-align: center;
    margin: 0 20px 20px;
    padding: 12px 0;
    border-radius: 4px;
    background-color: #c49a4b;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 154, 75, 0.35);
}

.resource-button-free {
    background-color: #c49a4b;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    margin: 0 20px 16px;
    box-shadow: 0 6px 20px rgba(196, 154, 75, 0.35);
}

@media (max-width: 768px) {
    .resource-button-free {
        margin: 0 18px 14px;
        padding: 12px 0;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .resource-button-free {
        margin: 0 16px 12px;
        padding: 11px 0;
        font-size: 14px;
        gap: 6px;
    }
}

.resource-button-free .resource-icon {
    font-size: 17px;
}

@media (max-width: 480px) {
    .resource-button-free .resource-icon {
        font-size: 16px;
    }
}

.resource-button-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(196, 154, 75, 0.5);
}

.resource-button-course {
    background-color: #2d3748;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    margin: 0 20px 16px;
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.35);
}

@media (max-width: 768px) {
    .resource-button-course {
        margin: 0 18px 14px;
        padding: 12px 0;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .resource-button-course {
        margin: 0 16px 12px;
        padding: 11px 0;
        font-size: 14px;
        gap: 6px;
    }
}

.resource-button-course .resource-icon {
    font-size: 17px;
}

@media (max-width: 480px) {
    .resource-button-course .resource-icon {
        font-size: 16px;
    }
}

.resource-button-course:hover {
    transform: translateY(-2px);
    background-color: #1a202c;
    box-shadow: 0 10px 24px rgba(45, 55, 72, 0.5);
}

.resource-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    margin: 0 20px 24px;
}

.resource-tag.free {
    background-color: #5ec279;
    color: #ffffff;
}

.resource-tag.paid {
    background-color: #f1d08c;
    color: #000000;
}

/* Free Products Showcase */
.free-products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.free-product-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* 3D E-book Cover */
.ebook-cover-3d {
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-12deg) rotateX(3deg);
    width: 280px;
    height: 380px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.ebook-cover-3d:hover {
    transform: perspective(1000px) rotateY(-8deg) rotateX(1deg) scale(1.05);
}

.ebook-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    border: 2px solid #333;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.ebook-logo-area {
    margin-bottom: 24px;
}

.ebook-logo-square {
    width: 55px;
    height: 55px;
    background-color: #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.ebook-logo-x {
    color: white;
    font-size: 32px;
    font-weight: 800;
}

.ebook-title-area {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.ebook-title-large {
    font-size: 72px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.ebook-title-text {
    display: flex;
    flex-direction: column;
    position: relative;
}

.ebook-title-main {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -1px;
}

.ebook-title-accent-bar {
    width: 5px;
    height: 100%;
    background-color: #4a90e2;
    position: absolute;
    left: -12px;
}

.ebook-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: auto;
    line-height: 1.4;
    margin-top: 8px;
}

.ebook-author {
    font-size: 15px;
    color: white;
    font-weight: 600;
    margin-top: auto;
}

.ebook-spine {
    position: absolute;
    left: -18px;
    top: 0;
    width: 18px;
    height: 100%;
    background: linear-gradient(90deg, #000000 0%, #0a0a0a 100%);
    transform: rotateY(90deg);
    transform-origin: right center;
}

.ebook-pages {
    position: absolute;
    left: -36px;
    top: 12px;
    width: 36px;
    height: calc(100% - 24px);
    background: #ffffff;
    transform: rotateY(90deg);
    transform-origin: right center;
    box-shadow: -6px 0 15px rgba(0, 0, 0, 0.3);
}

.ebook-info {
    text-align: center;
    max-width: 400px;
}

.free-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--success-green);
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.ebook-name {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ebook-desc {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ebook-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-gold);
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.2);
}

.ebook-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 165, 116, 0.4);
}

/* Paid Products Grid */
.paid-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 40px 100px;
    background-color: #ffffff;
}

.paid-product-card {
    background-color: var(--bg-black);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.paid-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.paid-product-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    width: 100%;
    height: 100%;
}

.paid-product-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.paid-x-logo {
    font-size: 72px;
    font-weight: 800;
    color: var(--button-gold);
    line-height: 1;
}

.paid-product-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.paid-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 0 40px;
}

.paid-product-card {
    background-color: #ffffff;
    border: 1px solid #e6ded0;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(18, 18, 18, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.paid-product-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.paid-product-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    padding: 20px 20px 8px;
}

.paid-product-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    padding: 0 20px 20px;
    flex: 1;
}

.paid-product-button {
    display: block;
    text-align: center;
    margin: 0 20px 20px;
    padding: 12px 0;
    border-radius: 4px;
    background-color: #c49a4b;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.paid-product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 154, 75, 0.35);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--button-gold-light);
    border: 1px solid var(--button-gold);
    color: var(--button-gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title-main {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Bottom CTA */
.bottom-cta {
    background: var(--gradient-dark);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--gradient-gold);
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 165, 116, 0.4);
}

/* Newsletter CTA Bottom Section */
.newsletter-cta-bottom {
    background-color: #000000;
    padding: 100px 40px;
    text-align: center;
}

.cta-heading {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.cta-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle strong {
    color: #FFFFFF;
    font-weight: 700;
}

.cta-button-bottom {
    display: inline-block;
    padding: 18px 40px;
    background-color: #A0785A;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.cta-button-bottom:hover {
    background-color: #8d6a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(160, 120, 90, 0.3);
}

/* Newsletter Signup Section (Bottom) */
.newsletter-signup-bottom {
    background-color: #000000;
    padding: 60px 40px 50px;
    text-align: center;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .newsletter-signup-bottom {
        padding: 50px 20px 40px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .newsletter-signup-bottom {
        padding: 40px 16px 30px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

.signup-content-bottom {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .signup-content-bottom {
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .signup-content-bottom {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
    }
}

.signup-label-bottom {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #FFFFFF;
    margin-bottom: 16px;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    text-align: center;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .signup-label-bottom {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .signup-label-bottom {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 12px;
        padding: 0 8px;
    }
}

.signup-subtitle-bottom {
    font-size: 19px;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .signup-subtitle-bottom {
        font-size: 17px;
        padding: 0 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .signup-subtitle-bottom {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 8px;
    }
}

.signup-subtitle-bottom strong {
    color: #FFFFFF;
    font-weight: 700;
}

.newsletter-form-bottom {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

@media (max-width: 768px) {
    .newsletter-form-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-form-bottom {
        gap: 12px;
        padding: 0;
    }
}

.email-input-bottom {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    padding: 18px 0;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    background-color: transparent;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border-radius: 0;
}

@media (max-width: 768px) {
    .email-input-bottom {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 16px 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .email-input-bottom {
        padding: 14px 0;
        font-size: 16px; /* Prevent zoom on iOS */
        text-align: center;
    }
}

.email-input-bottom::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.email-input-bottom:focus {
    outline: none;
    border-bottom-color: var(--text-white);
    background-color: transparent;
}

.submit-btn-bottom {
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: #A0785A;
    color: var(--text-white);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    border-radius: 4px;
    height: fit-content;
}

@media (max-width: 768px) {
    .submit-btn-bottom {
        width: 100%;
        padding: 16px 24px;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .submit-btn-bottom {
        padding: 14px 20px;
        font-size: 16px;
        width: 100%;
    }
}

.submit-btn-bottom:hover {
    background-color: #8d6a4a;
}

/* Article Navigation (at bottom of posts) */
.article-nav {
    background-color: var(--bg-black);
    padding: 60px 40px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.article-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.article-nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.article-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--button-gold);
    transition: width 0.3s ease;
}

.article-nav-link:hover {
    color: var(--button-gold);
}

.article-nav-link:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--bg-darker-gray);
    padding: 60px 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 24px;
}

.footer-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* ====================================================================== */
/* Article Pages */
/* ====================================================================== */

body.article-page {
    background-color: #050505;
    color: #ffffff;
}

body.article-page .navbar {
    background-color: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

body.article-page .nav-container {
    max-width: 860px;
    padding: 0 24px;
}

body.article-page .brand,
body.article-page .nav-link {
    color: #f5f5f5;
}

body.article-page .nav-link:hover {
    color: #d7b270;
}

body.article-page .icon-link {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: none;
}

body.article-page .icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

body.article-page .email-icon {
    background-color: rgba(255, 255, 255, 0.08);
}

.article-hero {
    background: linear-gradient(180deg, #040404 0%, #0c0a08 100%);
    color: #ffffff;
    padding: 180px 32px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(207, 167, 117, 0.18) 0%, transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.article-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
}

.article-hero .hero-badge {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-heading {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-subheading {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin: 0 auto;
}

.article-hero .hero-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin: 0 auto;
    width: 100%;
}

.article-hero .hero-email-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 18px 22px;
    color: #ffffff;
    font-size: 16px;
}

.article-hero .hero-email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.article-hero .hero-email-input:focus {
    outline: none;
    border-color: #d4a574;
    background: rgba(255, 255, 255, 0.12);
}

.article-hero .hero-submit-btn {
    border-radius: 12px;
    border: none;
    padding: 18px 34px;
    font-weight: 700;
    font-size: 16px;
    color: #080605;
    background: linear-gradient(135deg, #d8aa70 0%, #b8854a 100%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 18px 45px rgba(212, 165, 116, 0.35);
}

.article-hero .hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(212, 165, 116, 0.45);
}

.hero-proof-points {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.article-layout {
    max-width: 820px;
    margin: 0 auto;
    padding: 140px 32px 120px;
}

.article-main {
    background: transparent;
    padding: 0;
}

.article-header {
    margin-bottom: 32px;
}

.article-meta {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
}

.article-title {
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
}

.article-intro {
    display: grid;
    gap: 20px;
    margin-bottom: 28px;
}

.article-lede {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.article-bullet-list {
    margin: 4px 0 8px 28px;
    padding: 0;
    display: grid;
    gap: 10px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.article-main p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
}

.article-feature {
    margin: 36px 0 32px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.article-feature img {
    display: block;
    width: 100%;
    height: auto;
}

.article-feature .flywheel-diagram {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.article-feature .flywheel-diagram svg {
    max-width: 100%;
    height: auto;
}

.article-feature img {
    display: block;
    width: 100%;
    height: auto;
}

.article-feature figcaption {
    font-size: 13px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 14px 18px;
}

.metrics-dashboard {
    margin: 36px 0 32px;
    display: flex;
    justify-content: center;
}

.dashboard-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 24px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dashboard-header svg {
    color: #666;
    width: 16px;
    height: 16px;
}

.dashboard-header span {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.dashboard-menu {
    color: #999;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.dashboard-content {
    color: #1a1a1a;
}

.dashboard-metric {
    margin-bottom: 20px;
}

.metric-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.dashboard-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.dashboard-section {
    margin-top: 20px;
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-name {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.metric-number {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.metric-change {
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.metric-change.positive {
    color: #4ade80;
}

.dashboard-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 11px;
    color: #666;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dashboard-card {
        padding: 20px;
    }
}

.article-content {
    display: block;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.article-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.2;
}

.article-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

.article-content p {
    margin-bottom: 18px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
}

.article-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 12px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.article-content strong {
    color: var(--text-white);
    font-weight: 600;
}

.article-content em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
}

.article-outro {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    margin-top: 40px;
    display: grid;
    gap: 12px;
}

.article-signoff {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.article-help {
    margin-top: 70px;
    display: grid;
    gap: 28px;
}

.article-help-heading {
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.article-product-grid {
    display: grid;
    gap: 18px;
}

.article-product-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 22px;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(37, 30, 24, 0.95), rgba(26, 20, 16, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
    align-items: center;
}

.article-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.article-product-body {
    display: grid;
    gap: 14px;
}

.article-product-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.article-product-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.65;
}

.article-product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-product-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 999px;
    background: var(--gradient-gold);
    color: #050505;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(216, 170, 112, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(216, 170, 112, 0.45);
}

.article-product-button--free {
    background: var(--gradient-gold);
    color: #050505;
    border: none;
    box-shadow: 0 16px 32px rgba(216, 170, 112, 0.35);
}

.article-product-button--free:hover {
    box-shadow: 0 22px 40px rgba(216, 170, 112, 0.45);
}

.article-product-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-product-tag--free {
    background-color: #34d399;
    color: #022918;
}

.article-product-tag--paid {
    background-color: #d8aa70;
    color: #201104;
}

.article-author-module {
    margin-top: 60px;
    padding: 28px;
    border-radius: 18px;
    background: rgba(31, 26, 22, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
}

.article-author-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45);
}

.article-author-text {
    display: grid;
    gap: 12px;
}

.article-author-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
}

.article-author-socials {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.article-author-socials a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.article-author-socials a:hover {
    color: #ffffff;
}

@media (max-width: 680px) {
    .article-product-card {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .article-product-card img {
        width: 140px;
        height: 200px;
        margin: 0 auto;
    }

    .article-product-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 540px) {
    .article-author-module {
        padding: 24px 20px;
        margin: 40px 0;
    }

    .article-author-avatar {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 20px !important;
    }

    .article-author-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .article-author-socials {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .article-author-socials a {
        font-size: 14px;
    }
}

.article-main h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 40px;
    color: #ffffff;
}

.article-main h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: rgba(255, 255, 255, 0.92);
}

.article-main ul,
.article-main ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

.article-main li {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 8px;
}

.article-main strong {
    color: #ffffff;
}

.article-highlight {
    background-color: rgba(255, 255, 255, 0.06);
    border-left: 4px solid rgba(255, 255, 255, 0.2);
    padding: 20px 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.article-diagram {
    background-color: #101010;
    border-radius: 18px;
    padding: 40px 32px;
    margin: 24px 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.visual-diagram {
    display: grid;
    gap: 16px;
    justify-items: center;
    color: #ffffff;
    font-weight: 600;
}

.visual-diagram .diagram-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.visual-diagram .diagram-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 16px;
    letter-spacing: 0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
    text-transform: uppercase;
}

.visual-diagram .diagram-arrow {
    font-size: 18px;
    opacity: 0.6;
}

.visual-diagram .highlight {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #041209;
    font-weight: 700;
}

.visual-venn {
    position: relative;
    width: 260px;
    height: 160px;
}

@media (max-width: 768px) {
    .visual-venn {
        width: 140px !important;
        height: 140px !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .visual-venn {
        width: 100px !important;
        height: 100px !important;
        max-width: 90% !important;
    }
}

.visual-venn .venn-circle {
    position: absolute;
    width: 190px;
    height: 190px;
    top: -15px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    overflow: hidden;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 0, 0, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .visual-venn .venn-circle {
        width: 90px !important;
        height: 90px !important;
        font-size: 10px !important;
        font-weight: 800 !important;
        padding: 4px !important;
        top: 0 !important;
        letter-spacing: 0 !important;
        line-height: 1.2 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5) !important;
        background: rgba(255, 255, 255, 0.25) !important;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
    }
}

@media (max-width: 480px) {
    .visual-venn .venn-circle {
        width: 65px !important;
        height: 65px !important;
        font-size: 9px !important;
        font-weight: 800 !important;
        padding: 3px !important;
        line-height: 1.1 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5) !important;
        background: rgba(255, 255, 255, 0.25) !important;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
    }
}

.visual-venn .left {
    left: 0;
}

.visual-venn .right {
    right: 0;
}

.visual-venn .venn-circle.venn-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    overflow: hidden;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.visual-venn .venn-overlap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #041209;
    text-shadow: none;
    z-index: 3;
}

.visual-venn .venn-overlap.highlight {
    font-size: 18px;
    font-weight: 800;
    color: #041209;
    text-shadow: none;
    letter-spacing: 0.5px;
}

.article-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding-right: 8px;
}

.article-sidebar::-webkit-scrollbar {
    width: 4px;
}

.article-sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
}

@media (max-width: 1024px) {
    .article-sidebar {
        position: static;
    }
}

.sidebar-card {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #e6ded0;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(31, 27, 22, 0.08);
}

.sidebar-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f1b16;
    margin-bottom: 12px;
}

.sidebar-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a423a;
    margin-bottom: 16px;
}

.sidebar-list {
    display: grid;
    gap: 16px;
}

.sidebar-list .product-item {
    border-radius: 14px;
    border: 1px solid #e6ded0;
    padding: 20px;
    background: #fdfbf7;
    box-shadow: none;
}

.sidebar-list .product-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f1b16;
    margin-bottom: 8px;
}

.sidebar-list .product-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #4a423a;
    margin-bottom: 12px;
}

.sidebar-list .product-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7a5a3c;
}

.sidebar-socials {
    display: flex;
    gap: 16px;
}

.sidebar-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #161616;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 22, 22, 0.25);
}

.article-newsletter {
    max-width: 760px;
    margin: 0 auto 120px;
    background: #211b13;
    color: #ffffff;
    padding: 56px 48px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.article-newsletter h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.article-newsletter p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.article-newsletter form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.article-newsletter input {
    flex: 1;
    min-width: 260px;
    padding: 16px 20px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.article-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.article-newsletter button {
    padding: 16px 32px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    color: #211b13;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.35);
}

.article-safe-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

body.article-page .article-nav {
    background-color: transparent;
    border-top: 1px solid #e4dacd;
    border-bottom: none;
    padding: 48px 32px 80px;
}

body.article-page .article-nav-container {
    max-width: 1100px;
    justify-content: flex-start;
    gap: 32px;
}

body.article-page .article-nav-link {
    color: #1f1b16;
}

body.article-page .article-nav-link::after {
    background: #7a5a3c;
}

body.article-page .article-nav-link:hover {
    color: #7a5a3c;
}

.footer {
    background-color: #0b0b0b;
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
}

/* Article Page Footer - Horizontal Bar (Updated 2025) */
body.article-page .footer {
    background-color: #0b0b0b !important;
    padding: 24px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    justify-content: center !important;
    flex-direction: row !important;
}

body.article-page .footer-content {
    max-width: 1080px !important;
    width: 100% !important;
    padding: 0 40px !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: auto !important;
}

body.article-page .footer-text {
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 640px) {
    .article-hero {
        padding: 130px 16px 90px;
        text-align: center;
    }

    .article-hero-inner {
        text-align: center;
    }

    .article-body {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .article-newsletter {
        padding: 40px 24px;
    }

    .article-newsletter form {
        flex-direction: column;
    }

    .article-newsletter button {
        width: 100%;
    }
}
.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 20px 0;
    }

    .nav-container {
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .brand {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .nav-links {
        gap: 20px;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        font-size: 14px;
    }

    /* Container */
    .container {
        margin-top: 60px;
    }

    /* Newsletter Signup Section */
    .newsletter-signup {
        padding: 80px 20px 60px;
    }

    .signup-content {
        padding-left: 0;
        text-align: center;
    }

    .signup-author-photo {
        width: 100px;
        height: 100px;
        margin: 0 auto 24px;
    }

    .signup-label {
        font-size: clamp(28px, 8vw, 40px);
        text-align: center;
        margin-bottom: 16px;
    }

    .signup-subtitle {
        font-size: 17px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
        gap: 16px;
        align-items: stretch;
    }

    .email-input {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    }

    .submit-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 4px;
    }

    .signup-social-links {
        justify-content: center;
        margin-top: 24px;
    }

    /* Newsletter Articles Section */
    .newsletter-articles-section {
        padding: 40px 20px;
    }

    .newsletter-header-section {
        padding: 40px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-label-container {
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: clamp(24px, 6vw, 32px);
    }

    .section-description {
        font-size: 16px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Article Hero */
    .article-hero {
        padding: 120px 20px 80px;
        text-align: left;
    }

    .article-hero-inner {
        gap: 18px;
    }

    .article-hero .hero-form {
        grid-template-columns: 1fr;
    }

    .article-hero .hero-submit-btn {
        width: 100%;
    }

    .hero-proof-points {
        text-align: center;
    }

    .article-body {
        padding: 40px 20px;
    }

    .article-content {
        padding: 40px 20px;
    }

    .article-content h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .article-content h3 {
        font-size: clamp(20px, 5vw, 24px);
    }

    .article-content p,
    .article-content li {
        font-size: 16px;
    }

    /* Resources Section */
    .resources-section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .free-products-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .ebook-cover-3d {
        transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
        width: 200px;
        height: 270px;
    }

    .paid-products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .paid-product-card {
        aspect-ratio: 1;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    body.article-page .footer-content {
        flex-direction: column !important;
        width: 100% !important;
        padding: 40px 20px !important;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .article-nav {
        padding: 40px 20px;
    }

    .article-nav-container {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .article-nav-link {
        font-size: 14px;
    }
}

@media (max-width: 968px) {
    .resource-card-center {
        grid-column: span 2;
        justify-self: center;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .resource-card-center {
        grid-column: 1;
        max-width: 100%;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Navigation */
    .navbar {
        padding: 16px 0;
    }

    .nav-container {
        padding: 0 16px;
        gap: 10px;
    }

    .brand {
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .nav-link {
        font-size: 13px;
        padding: 4px 0;
    }

    /* Newsletter Signup */
    .newsletter-signup {
        padding: 60px 16px 40px;
    }

    .newsletter-signup-bottom {
        padding: 60px 16px 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .signup-content-bottom {
        padding: 0;
        text-align: center;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .signup-label-bottom {
        font-size: clamp(24px, 7vw, 36px);
        margin-bottom: 16px;
        text-align: center;
        line-height: 1.1;
    }

    .signup-subtitle-bottom {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.5;
        text-align: center;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .newsletter-form-bottom {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        gap: 16px;
        align-items: stretch;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .email-input-bottom {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
        box-sizing: border-box;
    }

    .submit-btn-bottom {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 4px;
        box-sizing: border-box;
    }
    
    .form-message {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 8px;
        box-sizing: border-box;
        font-size: 13px;
    }

    .signup-author-photo {
        width: 80px;
        height: 80px;
    }

    .signup-label {
        font-size: 24px;
        line-height: 1.2;
    }

    .signup-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .email-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    /* Hero Sections */
    .hero-title {
        font-size: clamp(28px, 10vw, 36px);
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-newsletter {
        padding: 80px 16px 60px;
    }

    .hero-form {
        max-width: 100%;
    }

    .hero-email-input {
        min-width: 100%;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .hero-submit-btn {
        width: 100%;
        padding: 16px 24px;
    }

    /* Sections */
    .section-title-main {
        font-size: clamp(24px, 8vw, 32px);
    }

    .section-subtitle {
        font-size: clamp(20px, 6vw, 28px);
    }

    .newsletter-header-section {
        padding: 30px 16px;
    }

    .newsletter-articles-section {
        padding: 30px 16px;
    }

    /* Article Cards */
    .article-preview-card {
        border-radius: 0;
    }

    .article-visual {
        padding: 16px;
        min-height: 160px;
    }

    .visual-diagram {
        font-size: 10px;
        gap: 4px;
    }

    .diagram-item {
        padding: 5px 10px;
        font-size: 10px;
    }

    .diagram-row {
        gap: 6px;
    }
    
    .visual-venn {
        width: 120px;
        height: 120px;
    }
    
    .venn-circle {
        width: 75px !important;
        height: 75px !important;
        font-size: 8px !important;
    }
    
    .venn-overlap {
        font-size: 28px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .visual-pyramid {
        font-size: 9px;
        gap: 3px;
    }
    
    .pyramid-layer {
        padding: 4px 12px;
        font-size: 9px;
    }

    .article-preview-title {
        font-size: clamp(18px, 5vw, 22px);
        margin: 20px 16px 12px;
    }

    .article-preview-excerpt {
        font-size: 14px;
        margin: 0 16px 16px;
        line-height: 1.6;
    }

    .article-read-link {
        font-size: 14px;
        margin: 0 16px 20px;
    }

    /* Ebook & Products */
    .ebook-cover-3d {
        width: 160px;
        height: 220px;
    }

    .ebook-title-large {
        font-size: 40px;
    }

    .ebook-title-main {
        font-size: 20px;
    }

    .micro-price-display {
        font-size: 32px;
    }

    .banner-title {
        font-size: 20px;
    }

    .micro-banner-text {
        padding: 24px 16px;
    }

    /* Resources */
    .resources-section {
        padding: 40px 16px;
    }
    
    .resource-card img {
        padding: 12px;
        min-height: 150px;
        max-height: 220px;
    }
    
    .resource-card h3 {
        font-size: 16px;
        padding: 14px 16px 6px;
    }
    
    .resource-card p {
        font-size: 14px;
        padding: 0 16px 16px;
    }
    
    .resource-button {
        margin: 0 16px 16px;
        padding: 10px 0;
        font-size: 14px;
    }

    /* Footer */
    .footer-content {
        padding: 30px 16px;
    }

    .footer-links {
        gap: 12px;
    }

    /* Article Content */
    .article-content {
        padding: 30px 16px;
        font-size: 16px;
    }

    .article-content h2 {
        font-size: clamp(22px, 7vw, 28px);
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .article-content h3 {
        font-size: clamp(18px, 5vw, 22px);
        margin-top: 28px;
        margin-bottom: 12px;
    }

    .article-content p,
    .article-content li {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Social Links */
    .signup-social-link {
        width: 40px;
        height: 40px;
    }

    .icon-link {
        width: 40px;
        height: 40px;
    }
}

.article-visual-inline {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.article-visual-inline .article-visual {
    max-width: 400px;
    padding: 40px;
}

.article-visual-inline .visual-venn {
    width: 220px;
    height: 220px;
}

.article-visual-inline .visual-chart .chart-bars {
    height: 150px;
}

.article-visual-inline .visual-pyramid {
    width: 200px;
}

.article-two-column {
    max-width: 1140px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: flex;
    gap: 48px;
}

.article-left {
    flex: 3;
    background: #ffffff;
    border-radius: 18px;
    padding: 48px;
    box-shadow: 0 18px 45px rgba(18, 18, 18, 0.08);
}

.article-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.article-meta {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 16px;
}

.article-left h1 {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.article-left h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 16px;
    color: #111111;
}

.article-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.article-left ul {
    padding-left: 28px;
    margin-bottom: 24px;
}

.article-left li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #2b2b2b;
}

.author-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 14px 32px rgba(18, 18, 18, 0.06);
}

.author-card img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid #f0f0f0;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.author-bio-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.sidebar-products {
    display: grid;
    gap: 22px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(18, 18, 18, 0.05);
    display: grid;
    gap: 12px;
}

.product-card .product-label {
    font-size: 16px;
    font-weight: 700;
}

.product-card p {
    font-size: 15px;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

.product-card .product-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #c89b63 0%, #b07a3c 100%);
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card .product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(200, 155, 99, 0.3);
}

@media (max-width: 1100px) {
    .article-two-column {
        flex-direction: column;
        padding: 100px 20px 60px;
    }

    .article-left {
        padding: 36px 28px;
    }
}

/* ============================================
   AGGRESSIVE MOBILE FIXES FOR ARTICLE VISUALS
   These override everything to ensure readability on mobile
   ============================================ */

@media screen and (max-width: 768px) {
    /* Force article visual containers to be smaller */
    .article-visual {
        padding: 12px !important;
        min-height: 150px !important;
        max-height: 220px !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Force all Venn diagrams to be much smaller */
    .visual-venn {
        width: 120px !important;
        height: 120px !important;
        max-width: 100% !important;
        max-height: 100% !important;
        position: relative !important;
    }
    
    /* Override ALL venn circles - including those with inline styles */
    .visual-venn .venn-circle,
    .venn-circle {
        width: 70px !important;
        height: 70px !important;
        font-size: 9px !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        padding: 3px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        position: absolute !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5) !important;
        background: rgba(255, 255, 255, 0.25) !important;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
        color: #ffffff !important;
        border-width: 1px !important;
    }
    
    /* Position left and right circles properly */
    .visual-venn .venn-circle.left {
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .visual-venn .venn-circle.right {
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    /* Center circle (LEVERAGE) */
    .visual-venn .venn-circle.venn-center {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(0.6) !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 7px !important;
        font-weight: 700 !important;
        z-index: 10 !important;
        border-color: rgba(255,255,255,0.4) !important;
        background: rgba(255, 255, 255, 0.18) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(0, 0, 0, 0.3) !important;
        color: #ffffff !important;
    }
    
    /* Venn overlap (dollar sign) */
    .visual-venn .venn-overlap,
    .venn-overlap {
        width: 25px !important;
        height: 25px !important;
        font-size: 14px !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .visual-venn .venn-overlap.highlight {
        font-size: 10px !important;
        font-weight: 800 !important;
        width: 30px !important;
        height: 30px !important;
    }
    
    /* Visual diagrams (flowcharts) */
    .visual-diagram {
        font-size: 7px !important;
        gap: 3px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .visual-diagram .diagram-item {
        padding: 2px 6px !important;
        font-size: 7px !important;
        line-height: 1.2 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
        border-radius: 4px !important;
        max-width: 100% !important;
    }
    
    .visual-diagram .diagram-row {
        gap: 3px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .visual-diagram .diagram-arrow {
        font-size: 10px !important;
        line-height: 1 !important;
    }
    
    /* Pyramid diagrams */
    .visual-pyramid {
        font-size: 6px !important;
        gap: 1px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .visual-pyramid .pyramid-layer {
        padding: 2px 5px !important;
        font-size: 6px !important;
        line-height: 1.1 !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .visual-pyramid .pyramid-layer.top {
        width: 35px !important;
    }
    
    .visual-pyramid .pyramid-layer.bottom {
        width: 80px !important;
    }
    
    /* Four-circle Venn diagrams */
    .visual-venn-four {
        width: 120px !important;
        height: 120px !important;
    }
    
    .venn-four-circle {
        width: 50px !important;
        height: 50px !important;
        font-size: 6px !important;
        line-height: 1.0 !important;
        padding: 2px !important;
    }
}

@media screen and (max-width: 480px) {
    /* Even more aggressive for small phones */
    .article-visual {
        padding: 8px !important;
        min-height: 120px !important;
        max-height: 180px !important;
    }
    
    .visual-venn {
        width: 90px !important;
        height: 90px !important;
    }
    
    .visual-venn .venn-circle,
    .venn-circle {
        width: 55px !important;
        height: 55px !important;
        font-size: 6px !important;
        line-height: 1.0 !important;
        padding: 2px !important;
    }
    
    .visual-venn .venn-circle.venn-center {
        width: 40px !important;
        height: 40px !important;
        font-size: 6px !important;
        font-weight: 700 !important;
        transform: translate(-50%, -50%) scale(0.5) !important;
        background: rgba(255, 255, 255, 0.18) !important;
        border-color: rgba(255,255,255,0.4) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(0, 0, 0, 0.3) !important;
        color: #ffffff !important;
    }
    
    .visual-venn .venn-overlap,
    .venn-overlap {
        width: 20px !important;
        height: 20px !important;
        font-size: 12px !important;
    }
    
    .visual-venn .venn-overlap.highlight {
        font-size: 9px !important;
        font-weight: 800 !important;
        width: 25px !important;
        height: 25px !important;
    }
    
    .visual-diagram {
        font-size: 6px !important;
        gap: 2px !important;
    }
    
    .visual-diagram .diagram-item {
        padding: 1px 4px !important;
        font-size: 6px !important;
        line-height: 1.1 !important;
    }
    
    .visual-diagram .diagram-arrow {
        font-size: 8px !important;
    }
    
    .visual-pyramid {
        font-size: 5px !important;
        gap: 1px !important;
    }
    
    .visual-pyramid .pyramid-layer {
        padding: 1px 4px !important;
        font-size: 5px !important;
        line-height: 1.0 !important;
    }
    
    .visual-pyramid .pyramid-layer.top {
        width: 30px !important;
    }
    
    .visual-pyramid .pyramid-layer.bottom {
        width: 70px !important;
    }
}
