:root {
    --primary-color: #3D6B4F;
    --primary-light: #4A8260;
    --primary-dark: #1C3A2B;
    --primary-very-dark: #0D1F16;
    --text-dark: #1C1C1A;
    --text-gray: #6B6860;
    --text-light: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-cream: #FAF7F2;
    --bg-cream-alt: #F5EFE6;
    --bg-cream-dark: #F0E8DA;
    --bg-warm: #FFF8F0;
    --bg-green-light: #F0F7F2;
    --bg-red-light: #FDF5F5;
    --border-soft: #E5DFD3;
    --border-red: #E8C4C4;
    --danger-red: #A44A3F;
    --cta-yellow: #F5C842;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-cream);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gray { color: var(--text-gray); }
.text-green { color: var(--primary-color); }
.text-red { color: var(--danger-red); }
.font-bold { font-weight: 700; }
.font-italic { font-style: italic; }

/* Sticky Bar */
.sticky-bar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    z-index: 1000;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
}
.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}
.sticky-btn {
    background-color: var(--text-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.2s;
}
.sticky-btn:hover {
    background-color: #F0F0F0;
}

/* Sections Base */
.section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }
.container-med { max-width: 800px; margin: 0 auto; }
.container-700 { max-width: 700px; margin: 0 auto; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    font-size: 18px;
    padding: 20px 48px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(61, 107, 79, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 107, 79, 0.3);
}
.btn-yellow {
    display: inline-block;
    background-color: var(--cta-yellow);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 18px;
    padding: 20px 56px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 200, 66, 0.2);
    transition: transform 0.2s;
    text-align: center;
}
.btn-yellow:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section { background-color: var(--bg-cream); padding-top: 20px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.hero-preheadline {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-headline {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.hero-subheadline {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 25px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.hero-stars {
    color: #F5C842;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.hero-social-text {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
}
.hero-testimonial {
    background: var(--bg-white);
    border-left: 3px solid var(--primary-color);
    padding: 20px 30px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-style: italic;
    font-size: 15px;
    color: var(--text-gray);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.guarantee-text {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 12px;
}
.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #E2DBD0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Pain Section */
.pain-section { background-color: var(--bg-white); }
.pain-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}
.pain-text p { margin-bottom: 24px; }
.pain-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary-color);
    font-style: italic;
    text-align: center;
    margin: 40px 0;
}

/* Comparison Section */
.comp-section { background-color: var(--bg-cream-alt); }
.comp-title { font-size: 36px; margin-bottom: 50px; }
.comp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.comp-card {
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.comp-card.bad {
    background-color: var(--bg-cream);
    border-top: 4px solid var(--border-red);
}
.comp-card.good {
    background-color: var(--bg-green-light);
    border-top: 4px solid var(--primary-color);
}
.comp-card-title {
    font-size: 22px;
    margin-bottom: 25px;
}
.comp-card.bad .comp-card-title { color: var(--danger-red); }
.comp-card.good .comp-card-title { color: var(--primary-dark); }
.comp-list { list-style: none; }
.comp-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}
.comp-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
}
.comp-list.bad-list li::before { content: '❌'; }
.comp-list.good-list li::before { content: '✅'; }

/* Pillars Section */
.pillars-section { background-color: var(--bg-white); }
.pillars-title { font-size: 36px; margin-bottom: 15px; }
.pillars-subtitle { font-size: 18px; color: var(--text-gray); margin-bottom: 50px; }
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
}
.pillar-card {
    padding: 30px;
    background: var(--bg-cream);
    border-radius: 12px;
    text-align: left;
}
.pillar-icon { font-size: 32px; margin-bottom: 20px; }
.pillar-title { font-size: 20px; margin-bottom: 15px; color: var(--primary-dark); }
.pillar-text { font-size: 16px; color: var(--text-gray); }

/* Table */
.custom-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.custom-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    text-align: left;
}
.custom-table th {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 18px 20px;
    font-weight: 600;
}
.custom-table td {
    padding: 16px 20px;
    font-size: 15px;
    border-bottom: 1px solid var(--border-soft);
}
.custom-table tr:nth-child(even) { background-color: var(--bg-cream); }
.custom-table tr:nth-child(odd) { background-color: var(--bg-white); }
.custom-table td:nth-child(3) { font-weight: 600; color: var(--primary-dark); }

/* Authority Section */
.authority-section { background-color: var(--bg-cream); }
.auth-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.auth-photo-wrapper {
    text-align: center;
}
.auth-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #E2DBD0;
    margin: 0 auto 20px auto;
    border: 4px solid #DFEBE3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 14px;
}
.auth-name { font-size: 20px; margin-bottom: 5px; }
.auth-role { font-size: 14px; color: var(--text-gray); margin-bottom: 5px; }
.auth-sub { font-size: 13px; color: var(--primary-color); font-weight: 600; }
.auth-title { font-size: 32px; margin-bottom: 30px; }
.auth-text p { margin-bottom: 20px; font-size: 16px; }
.auth-list { list-style: none; margin: 30px 0; }
.auth-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
}
.auth-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}
.auth-testimonial {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-style: italic;
    font-size: 15px;
}

/* Modules Section */
.modules-section { background-color: var(--bg-white); }
.modules-title { font-size: 38px; margin-bottom: 15px; }
.modules-subtitle { font-size: 18px; color: var(--text-gray); margin-bottom: 50px; }
.module-card {
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.module-num { font-size: 13px; color: var(--primary-color); font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.module-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.module-desc { font-size: 15px; color: var(--text-gray); margin-bottom: 10px; }
.module-change { font-size: 15px; color: var(--primary-color); font-style: italic; font-weight: 600; }
.module-test {
    margin-top: 15px;
    padding: 15px;
    background: var(--bg-cream);
    border-radius: 6px;
    font-size: 14px;
    font-style: italic;
    color: var(--text-gray);
}

/* Bonuses Section */
.bonuses-section { background-color: var(--bg-warm); }
.bonuses-title { font-size: 36px; margin-bottom: 10px; }
.bonuses-subtitle { font-size: 16px; color: var(--text-gray); margin-bottom: 50px; }
.bonus-card {
    display: flex;
    background: var(--bg-white);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    align-items: flex-start;
    gap: 20px;
}
.bonus-icon { font-size: 32px; flex-shrink: 0; }
.bonus-label { font-size: 12px; font-weight: 700; color: var(--primary-color); margin-bottom: 5px; }
.bonus-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bonus-price { font-size: 15px; margin-bottom: 10px; }
.bonus-price del { color: #A0A0A0; margin-right: 5px; }
.bonus-price .free { color: var(--primary-color); font-weight: 700; }
.bonus-desc { font-size: 15px; color: var(--text-gray); }

.summary-table {
    width: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-collapse: collapse;
}
.summary-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-soft);
    font-size: 16px;
}
.summary-table td:last-child { text-align: right; }
.summary-table tr.total-row {
    background: var(--bg-cream);
    font-weight: 700;
}
.summary-table tr.final-row {
    background: var(--primary-dark);
    color: var(--text-light);
    font-weight: 700;
    font-size: 20px;
}
.summary-table tr.final-row td { border-bottom: none; }

/* Who For Section */
.who-section { background-color: var(--bg-white); }
.who-title { font-size: 34px; margin-bottom: 40px; }
.who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.who-card {
    padding: 40px 30px;
    border-radius: 12px;
}
.who-card.yes {
    background: var(--bg-green-light);
    border-top: 4px solid var(--primary-color);
}
.who-card.no {
    background: var(--bg-red-light);
    border-top: 4px solid var(--danger-red);
}
.who-card-title { font-size: 20px; margin-bottom: 20px; }
.who-card.yes .who-card-title { color: var(--primary-dark); }
.who-card.no .who-card-title { color: var(--danger-red); }

/* Guarantee Section */
.guarantee-section { background-color: var(--bg-cream-dark); }
.guar-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 10px auto;
}
.guar-label { font-size: 14px; font-weight: 700; color: var(--primary-dark); letter-spacing: 1px; margin-bottom: 30px; }
.guar-title { font-size: 34px; margin-bottom: 30px; }
.guar-text p { font-size: 17px; margin-bottom: 20px; }
.guar-bold { font-size: 18px; font-weight: 700; margin-top: 30px; }

/* Offer Section */
.offer-section { background-color: var(--bg-white); color: var(--text-dark); padding: 100px 20px 0 20px; }
.offer-title { font-size: 32px; margin-bottom: 25px; color: var(--text-dark); }
.offer-text { font-size: 17px; color: var(--text-gray); margin: 0 auto 50px auto; max-width: 650px; }
.price-box {
    background: #1C3A2B;
    border-radius: 16px;
    padding: 40px;
    max-width: 420px;
    margin: 0 auto 15px auto; /* 15px to stick the CTA button close */
    text-align: center;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.price-line1 { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 5px; }
.price-line2 { font-size: 22px; color: #CCCCCC; text-decoration: line-through; margin-bottom: 10px; }
.price-line3 { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 700; margin-bottom: 15px; line-height: 1; color: var(--text-light); }
.price-line4 { font-size: 14px; color: rgba(255,255,255,0.8); }
.payment-logos { margin: 20px 0 40px 0; font-size: 14px; color: var(--text-gray); }
.final-checklist { list-style: none; text-align: left; max-width: 420px; margin: 0 auto 20px auto; }
.final-checklist li { margin-bottom: 12px; font-size: 16px; color: var(--text-dark); }
.final-checklist li::before { content: '☑ '; color: var(--cta-yellow); }

/* Visualization Section */
.vis-section { background-color: var(--primary-very-dark); color: var(--bg-warm); padding: 100px 20px; }
.vis-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
.vis-pre { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: #A7F3D0; margin-bottom: 40px; }
.vis-text p { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 30px; color: var(--bg-warm); }
.vis-italic { font-family: 'Playfair Display', serif; font-size: 28px; font-style: italic; color: #A7F3D0; margin-top: 50px; text-align: center; }
.vis-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-align: center;
    padding: 20px;
    border: 1px dashed rgba(255,255,255,0.2);
}

/* Testimonials Section */
.test-section { background-color: var(--bg-white); padding-top: 0; }
.test-title { font-size: 34px; margin-bottom: 50px; }
.test-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.test-card {
    background: var(--bg-warm);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.test-quotes { font-size: 60px; color: var(--primary-color); line-height: 0.5; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.test-p { font-size: 15px; line-height: 1.6; margin-bottom: 20px; color: var(--text-dark); }
.test-sep { height: 1px; background: rgba(0,0,0,0.05); margin-bottom: 15px; }
.test-author-info { font-size: 14px; }
.test-mod { font-size: 13px; color: var(--primary-color); font-style: italic; margin-top: 10px; }

/* FAQ Section */
.faq-section { background-color: var(--bg-cream); }
.faq-title { font-size: 34px; margin-bottom: 40px; }
.faq-container { max-width: 800px; margin: 0 auto; }
details {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
summary {
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 20px; color: var(--primary-color); }
details[open] summary::after { content: '-'; }
.faq-ans { padding: 0 20px 20px; font-size: 15px; color: var(--text-gray); border-top: 1px solid var(--border-soft); margin-top: 10px; padding-top: 15px; }

/* Closing Section */
.closing-section { background-color: var(--bg-cream-dark); }
.close-title { font-size: 32px; margin-bottom: 40px; }
.close-checklist { list-style: none; margin-bottom: 40px; text-align: left; }
.close-checklist li { font-size: 16px; margin-bottom: 15px; padding-left: 25px; position: relative; }
.close-checklist li::before { content: '✓'; color: var(--primary-color); position: absolute; left: 0; font-weight: bold; }
.close-sep { height: 1px; background: rgba(0,0,0,0.1); margin: 40px 0; }
.close-urgency { font-size: 16px; color: var(--text-dark); margin-bottom: 10px; }
.close-price { font-size: 20px; font-weight: 700; margin: 30px 0; }
.footer { text-align: center; font-size: 13px; color: var(--text-gray); margin-top: 60px; }

/* Media Queries */
@media (max-width: 767px) {
    .sticky-bar { font-size: 11px; padding: 8px 15px; }
    .sticky-btn { width: 100%; text-align: center; }
}

@media (min-width: 768px) {
    .hero-headline { font-size: 52px; }
    .hero-grid { grid-template-columns: 1fr 1fr; align-items: flex-start; }
    .hero-text-col { text-align: left; padding-right: 30px; }
    .hero-preheadline { text-align: left; }
    .hero-headline { text-align: left; }
    .hero-subheadline { text-align: left; margin-left: 0; }
    .hero-testimonial { margin-left: 0; text-align: left; }
    .comp-grid { grid-template-columns: 1fr 1fr; }
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
    .auth-grid { grid-template-columns: 40% 60%; }
    .auth-photo { width: 280px; height: 280px; }
    .who-grid { grid-template-columns: 1fr 1fr; }
    .vis-grid { grid-template-columns: 1fr 1fr; text-align: left; }
    .vis-italic { text-align: left; }
    .test-grid { grid-template-columns: 1fr 1fr; }
    .close-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
