:root {
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --primary: #d97706;
    --primary-glow: rgba(217, 119, 6, 0.3);
    --secondary: #ea580c;
    --text-main: #334155;
    --text-muted: #64748b;
    --heading-color: #0f172a;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-alt);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--heading-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
p { margin-bottom: 20px; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-gold {
    color: var(--primary);
}

.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.text-sm { font-size: 0.875rem; }

/* Affiliate Banner */
.affiliate-banner {
    background: #f1f5f9;
    color: #475569;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--heading-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.btn-sm:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 15px var(--primary-glow);
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}
.btn-xl {
    padding: 22px 50px;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50px;
}
.btn-glow {
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.25);
}
.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.4);
}
.btn-glow-pulse {
    animation: pulseGlow 2s infinite;
}
.btn-glow-pulse:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.4);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 16px 36px;
}
.btn-outline:hover {
    background: rgba(217, 119, 6, 0.05);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.15);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(217, 119, 6, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(217,119,6,0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}
.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}
.hero-content {
    flex: 1;
}
.hero-image-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}
.hero-card-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}
.hero-card-img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-card-footer {
    text-align: center;
    padding: 24px 10px 15px;
}
.hero-card-title {
    font-family: var(--font-heading);
    color: #0f172a;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.hero-card-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
}
.floating {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.2);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}
.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 90%;
}
.trust-list {
    list-style: none;
    margin-top: 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 30px;
}
.highlight-box {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}
.brand-text {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0;
}
.intro-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Ingredients */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}
.section-subtitle {
    margin-bottom: 50px;
    color: var(--text-muted);
}
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.glass {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}
.glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 15px rgba(217, 119, 6, 0.05);
    border-color: rgba(217, 119, 6, 0.3);
}
.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.glass:hover::before {
    opacity: 1;
}
.card-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0,0,0,0.03);
    position: absolute;
    top: 10px;
    right: 20px;
}
.ingredient-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}
.sub-title {
    font-size: 0.9rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.note {
    margin-top: 40px;
    color: var(--text-muted);
}

/* Features */
.features-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.feature-list {
    list-style: none;
    margin-top: 30px;
}
.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.feature-list .icon {
    color: var(--primary);
    margin-right: 15px;
    font-weight: bold;
    font-size: 1.2rem;
}
.features-image {
    flex: 1;
    text-align: right;
}
.features-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Bonuses */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bonus-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}
.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(217,119,6,0.1);
}
.bonus-tag {
    display: inline-block;
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.bonus-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.value {
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.download-badge {
    margin-top: 20px;
    color: #16a34a;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Order Section */
.large-heading {
    font-size: 3rem;
    margin-bottom: 10px;
}
.urgency {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 50px;
}
.most-popular-wrap {
    background: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(217, 119, 6, 0.15);
}
.popular-banner {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
}
.order-img {
    max-width: 100%;
    height: auto;
    margin: 20px 0 30px;
}
.shipping-notice {
    font-size: 1.2rem;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 30px;
}
.alt-order {
    margin-top: 40px;
}
.alt-order p {
    color: var(--text-muted);
    margin-bottom: 20px;
}
.center-list {
    justify-content: center;
}

/* Guarantee */
.glass-dark {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}
.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
}
.strong {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-top: 30px;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-question:hover {
    background: #f8fafc;
}
.faq-question.active {
    color: var(--primary);
}
.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    color: var(--text-muted);
}
.border-top {
    border-top: 1px solid var(--border-color);
}

/* Footer */
.footer {
    background: #f1f5f9;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-info h4 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.disclaimer {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.fda-box {
    border: 1px solid var(--border-color);
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin-top: 20px;
}
.fda-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.fda-box p:last-child {
    margin-bottom: 0;
}
.references-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.references-box.hidden {
    display: none;
}
.ref-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.ref-list {
    color: var(--text-muted);
    padding-left: 20px;
}
.ref-list li {
    margin-bottom: 10px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--primary);
}
/* Product Showcase */
.showcase-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}
.stars {
    color: #f59e0b; /* Amber */
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.review-text {
    font-style: italic;
    color: #334155;
    margin-bottom: 20px;
}
.reviewer-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    margin-bottom: 0;
}
.verified {
    color: #16a34a; /* Green */
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 5px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: end;
}
.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 50px rgba(217,119,6,0.15);
    padding: 40px 25px;
    z-index: 2;
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(217,119,6,0.3);
}
.pricing-header h3 {
    color: #0f172a;
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.pricing-header p {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.pricing-img-wrap img {
    max-width: 160px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}
.retail-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
}
.current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin: 5px 0;
}
.current-price .cents {
    font-size: 1.5rem;
    vertical-align: super;
}
.current-price .per-bottle {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin-left: 5px;
}
.total-price {
    font-weight: 700;
    color: #16a34a;
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}
.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: #334155;
    font-size: 0.95rem;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.btn-full {
    width: 100%;
    display: block;
}
.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(217, 119, 6, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

/* Banners */
.banner-section {
    padding: 60px 0;
    background: #ffffff;
}
.banner-section-alt {
    background: var(--bg-alt);
}
.full-width-banner {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.rounded-banner {
    border-radius: 20px;
    overflow: hidden;
}
.shadow-banner {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Blog Styles */
.blog-header {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.blog-img-wrap {
    width: 100%;
    height: 220px;
    background: var(--bg-alt);
    overflow: hidden;
}
.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}
.blog-content-preview {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
}
.blog-title {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.4;
}
.blog-excerpt {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex: 1;
}
.read-more {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.read-more:hover {
    gap: 10px;
}

/* Article Page Styles */
.article-header {
    padding: 120px 0 60px;
    background: #f8fafc;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.article-title {
    font-size: 2.8rem;
    color: #0f172a;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.2;
}
.article-meta {
    color: #64748b;
    font-weight: 500;
}
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}
.article-content h2 {
    font-size: 2rem;
    color: #0f172a;
    margin: 50px 0 25px;
}
.article-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 35px 0 20px;
}
.article-content p {
    margin-bottom: 1.5rem;
}

/* Screen Reader Only for SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.article-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}
.article-content li {
    margin-bottom: 10px;
}
.article-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted var(--primary);
}
.article-content a:hover {
    color: #b45309;
    border-bottom-style: solid;
}
.cta-inline {
    background: linear-gradient(135deg, rgba(217,119,6,0.1) 0%, rgba(217,119,6,0.02) 100%);
    border-left: 4px solid var(--primary);
    padding: 30px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
}
.cta-inline h4 {
    color: #0f172a;
    margin-bottom: 10px;
    font-size: 1.3rem;
}
.cta-inline p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .trust-list {
        justify-content: center;
    }
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .intro-image-wrap {
        order: -1;
        text-align: center;
    }
    .features-wrap {
        flex-direction: column;
    }
    .features-image {
        text-align: center;
    }
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    .large-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero { padding: 40px 0 80px; }
    .section { padding: 60px 0; }
    .btn-xl {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    .most-popular-wrap {
        padding: 40px 20px;
    }
    .popular-banner {
        font-size: 0.85rem;
        padding: 8px 15px;
        white-space: normal;
        width: 90%;
    }
    .footer-content {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
