:root {
    --bg-dark: #070709;
    --bg-darker: #030304;
    --bg-card: rgba(255, 255, 255, 0.02);
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --gold: #D4AF37;
    --gold-light: #FBF5B7;
    --gold-dark: #AA771C;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-border: rgba(212, 175, 55, 0.15);
    --glass-border: rgba(255, 255, 255, 0.05);
    --accent-green: #6FCF97;
    --accent-red: #EB5757;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
}

.gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

h2.text-center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }

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

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 2rem;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08), transparent 50%), var(--bg-dark);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.hero-content {
    flex: 1;
    padding-right: 4rem;
}

.eyebrow {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.headline {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.headline em {
    font-style: italic;
    font-weight: 600;
    color: var(--gold-light);
}

.headline-highlight {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.subheadline {
    font-size: 1.15rem;
    color: #b0b4be;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-noise {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22 opacity=%220.03%22/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    font-size: 0.9rem;
}

.stars {
    color: var(--gold);
    letter-spacing: 1px;
}

.rating-text {
    color: #e2e2e2;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.premium-product-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-bar {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
}

.bar-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.bar-item {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Buttons */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #FCF6BA, #BF953F, #FBF5B7, #B38728, #AA771C);
}

.microcopy {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Pain Section */
.pain {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.pain-content h2 {
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pain-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.pain-text p {
    margin-bottom: 1.2rem;
}

.pain-text strong {
    color: var(--gold-light);
}

.pain-list {
    list-style: none;
    margin-top: 1rem;
}

.pain-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-main);
    font-size: 1.15rem;
}

.pain-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Method Section */
.method {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.method .section-header {
    margin-bottom: 4rem;
}

.method-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.method-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.4s ease;
}

.method-card:hover {
    transform: translateX(5px);
    border-color: var(--gold-border);
    background: rgba(255, 255, 255, 0.04);
}

.step-num {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.3);
    font-weight: 800;
}

.method-card h3 {
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.method-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Audience Section */
.audience {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.audience h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.cards-wrapper {
    display: flex;
    gap: 2rem;
}

.card {
    flex: 1;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.card-yes h3 { color: var(--accent-green); }
.card-no h3 { color: var(--accent-red); }

.card ul {
    list-style: none;
}

.card li {
    margin-bottom: 1.2rem;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.card-yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.card-no li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* Modules Section */
.modules {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
}

.modules h2 {
    margin-bottom: 4rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.module:hover {
    transform: translateY(-5px);
    border-color: var(--gold-border);
    background: rgba(255, 255, 255, 0.04);
}

.module-num {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.2);
    font-weight: 800;
    display: block;
    margin-bottom: 1rem;
}

.module h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--text-main);
}

.module p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Bonus Section */
.bonus {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.bonus .lead {
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

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

.bonus-item {
    padding: 2.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    text-align: left;
    transition: all 0.4s ease;
}

.bonus-item:hover {
    border-color: var(--gold-border);
    background: rgba(255, 255, 255, 0.04);
}

.bonus-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bonus-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.bonus-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Preview Section */
.preview-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.preview-section .lead {
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

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

.preview-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.4s ease;
}

.preview-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--gold-border);
    background: rgba(255, 255, 255, 0.04);
}

.preview-image-placeholder {
    background: rgba(0,0,0,0.5);
    height: 150px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 1px dashed rgba(212, 175, 55, 0.3);
}

.preview-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.preview-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Stacked Offer */
.stacked-offer {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.stacked-offer h2 {
    margin-bottom: 3rem;
}

.offer-box {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 3.5rem;
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}

.offer-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.offer-list {
    list-style: none;
}

.offer-list li {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: var(--text-main);
}

.offer-list span.gold {
    margin-right: 10px;
    font-weight: bold;
}

.offer-footer-text {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.comparison-wrapper {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    flex: 1;
    padding: 3rem;
    border-radius: 8px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.comparison-column.alone {
    border: 1px solid rgba(235, 87, 87, 0.2);
}

.comparison-column.with-method {
    border: 1px solid var(--gold-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(212, 175, 55, 0.05));
}

.comparison-column h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-column.alone h3 {
    color: var(--accent-red);
}

.comparison-column.with-method h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    margin-bottom: 1.2rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.comparison-column.with-method .comparison-list li {
    color: var(--text-main);
}

.comparison-column.alone .comparison-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

.comparison-column.with-method .comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.guarantee-icon {
    font-size: 5rem;
}

.guarantee-content h2 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.guarantee-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.guarantee-badges {
    font-weight: 600;
    color: var(--gold-light);
    font-size: 1.05rem;
}

/* Price Section */
.offer {
    padding: 8rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), var(--bg-dark));
}

.offer p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.price-box {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 3rem;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 60px rgba(212, 175, 55, 0.05);
    text-align: left;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-from {
    font-size: 1.1rem;
    color: var(--text-muted);
}
.price-from s {
    color: var(--accent-red);
    font-weight: 600;
}

.price-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.price-value {
    display: flex;
    align-items: baseline;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.price-value .currency {
    font-size: 1.8rem;
    font-weight: 600;
    margin-right: 0.4rem;
}

.price-value .amount {
    font-size: 4.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1;
}

.price-value .cents {
    font-size: 1.8rem;
    font-weight: 600;
}

.price-subtitle {
    font-size: 0.95rem;
    color: #a0a4b0;
    margin-bottom: 2rem !important;
}

.price-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 2rem 0;
}

.price-details-list {
    list-style: none;
    margin: 0 0 2.5rem 0;
    padding: 0;
}

.price-details-list li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #e2e2e2;
    margin-bottom: 1rem;
    font-weight: 500;
}

.price-details-list li .check {
    color: var(--gold);
    font-weight: 800;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.price-box .cta-button.large {
    width: 100%;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
    text-align: center;
}

.price-footer {
    text-align: center;
}

.price-box .delivery-highlight {
    font-size: 0.85rem !important;
    color: #a0a4b0 !important;
    margin-bottom: 0.8rem !important;
    font-weight: 500;
    line-height: 1.4;
}

.price-box .microcopy {
    font-size: 0.8rem;
    color: #808490;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.faq h2 {
    margin-bottom: 3rem;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--gold-border);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    content: '−';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0,0,0,0.2);
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark), #050505);
}

.final-cta p.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 2rem 0;
    background: #000;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Sticky Mobile CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 16, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    text-align: center;
}

.mobile-sticky-cta .cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    display: block;
}

/* Responsive Optimization */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-content {
        padding-right: 0;
    }
    .subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-wrapper {
        align-items: center;
    }
    .headline { font-size: 2.5rem; }
    .headline-highlight { font-size: 1.5rem; }
    .cards-wrapper { flex-direction: column; }
    .method-card { flex-direction: column; text-align: center; gap: 1rem; }
    .guarantee-box { flex-direction: column; text-align: center; }
    .offer-box { padding: 2.5rem 2rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .mockup-scaler { transform: scale(0.9); margin-top: 2rem; }
    .headline { font-size: 2.2rem; }
    .headline-highlight { font-size: 1.3rem; }
    h2 { font-size: 2rem; }
    .price-to { font-size: 4rem; }
    .cta-button { 
        width: 100%; 
        padding: 1.2rem 1.5rem;
        font-size: 1.15rem;
    }
    .card { padding: 2rem; }
    .module { padding: 2rem; }
    .bonus-item { padding: 2rem; }
    .preview-card { padding: 2rem; }
    .comparison-wrapper { flex-direction: column; }
    .mobile-sticky-cta { display: block; }
    footer { padding-bottom: 90px; }
    
    .card li, .module p, .bonus-item p, .preview-card p, .comparison-list li, .accordion-content p {
        font-size: 1.15rem;
        line-height: 1.5;
    }
}

/* --- NEW CENTERED HERO STYLES --- */
.hero-centered {
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.1), transparent 60%), var(--bg-dark);
}

.hero-centered .hero-content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0;
}

.hero-centered .hero-content {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: rgba(212, 175, 55, 0.05);
}

.hero-badge-top .crown {
    font-size: 1.1rem;
}

.hero-centered .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-centered .premium-product-image {
    max-width: 450px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.hero-centered .headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.hero-centered .subheadline {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #e2e2e2;
    text-transform: uppercase;
}

.hero-centered .highlight-gold {
    color: var(--gold);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
}

.badge-item .icon {
    font-size: 1.1rem;
}

.hero-bullets {
    color: #b0b4be;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-bullets .dot {
    color: var(--gold);
    margin: 0 0.5rem;
}

.hero-centered .cta-wrapper {
    align-items: center;
}

.hero-centered .cta-button.large {
    font-size: 1.3rem;
    padding: 1.2rem 3.5rem;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero .headline {
        font-size: 2.2rem;
    }
    
    .hero .subheadline {
        font-size: 0.9rem;
    }
    
    .hero .premium-product-image {
        max-width: 80%;
    }
    
    .hero-badges {
        gap: 0.5rem;
    }
    
    .badge-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-bullets {
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-bullets .dot {
        display: none;
    }
    
    .hero .cta-button.large {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 100%;
    }
}
