/* --- Global Settings & Color Palette --- */
:root {
    --bg-color: #f2f8f581;
    --text-dark: #333333;
    --heading-color: #4A5D52;
    --accent-color: #C57B57;
    --hero-footer-bg: #4A5D52; /* Using the heading color for consistency */
    --card-bg: #FFFFFF;
    --font-serif: 'Lato', serif;
    --font-sans: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.8; /* Increased */
    color: var(--text-dark);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography Hierarchy (Increased Font Sizes) --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 700; color: var(--heading-color); }
h1 { font-size: clamp(2.8rem, 5vw, 3.8rem); margin-bottom: 0.5rem; }
h2 { font-size: clamp(2.2rem, 4vw, 2.4rem); margin: 0; }
h3 { font-size: clamp(2rem, 3.5vw, 1.125rem); margin: 0 0 1rem 0; }
h4 { font-size: 1.4rem; margin: 0 0 0.5rem 0; }
h5 { font-size: 1.2rem; } /* Increased */
h6 { font-size: 1rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 1px; } /* Increased */
p { font-size: 1.1rem; line-height: 1.8; color: #555;} /* Increased */

/* --- Layout Sections --- */
.page-content { background: var(--bg-color); }
.content-section, .part-section { padding: 40px 20px; max-width: 800px; margin: 0 auto; }
.section-heading {
    text-align: center;
    padding: 40px 20px 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.section-heading::after {
    content: ''; display: block; width: 60px; height: 3px; background: var(--accent-color); margin: 15px auto 0;
}
.section-intro { max-width: 600px; margin: 1rem auto 2.5rem auto; text-align: center; color: #e0e0e0; font-size: 1.1rem; }

/* --- Hero Section --- */
#hero {
    height: 100vh;
    background: url('../images/final-hero-background.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: normal;
    text-align: center;
    color: white;
}
#hero::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(58, 65, 61, 0.61); /* Heading color with opacity */
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { color: white; }
.hero-content p { font-size: 1.3rem; color: #eee; margin-top: 0; }

/* --- Buttons --- */
.cta-button {
    display: inline-block; background: var(--accent-color); color: white; padding: 15px 30px; text-decoration: none;
    border-radius: 4px;  margin-bottom: 40px; transition: all 0.3s ease; border: none; font-size: 1.1rem; cursor: pointer;
    font-family: var(--font-sans); font-weight: 700;
}
.cta-button:hover { background-color: #a86240; transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* --- Roadmap Layout --- */
.part-introduction { text-align: center; margin-bottom: 60px; }
.part-goal { font-size: 1.2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.timeline-highlight {
    background: var(--card-bg); border: 1px solid #EAE1D5; border-left: 4px solid var(--accent-color);
    border-radius: 8px; padding: 30px; margin: 0 auto 4rem auto; max-width: 700px;
}
.timeline-highlight h4 { margin-top: 0; }
.timeline-highlight ul { padding-left: 20px; margin: 1rem 0 0 0; }
.timeline-highlight li { margin-bottom: 0.5rem; font-size: 1rem; }

.asset-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 80px;
}
.asset-details {
    max-width: 600px;
    margin: 0 auto;
    order: 2;
}
.asset-details p { margin-bottom: 1.5rem; }
.asset-details ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}
.asset-details li {
    padding-left: 1.8em;
    position: relative;
    margin-bottom: 15px;
}
.asset-details li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    top: -2px;
}
.asset-icon {
    background: var(--card-bg);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    margin: 40px auto 40px auto;
    order: 1; /* Push icon to the bottom */
}
.asset-icon img { width: 128px; height: auto; border-radius: 50%; border: 2px solid rgb(74, 93, 82); }
.the-benefit {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    order: 3;
}
.the-benefit p { margin: 0; font-size: 1rem; }
    

/* --- IMAGINE SECTION --- */
#imagine-result {
    padding: 100px 20px;
    background: var(--heading-color);
    color: white;
    text-align: center;
}
.imagine-content {
    max-width: 800px;
    margin: 0 auto;
}
#imagine-result h3, #imagine-result p { color: white; }
.imagine-punchline {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: 2rem;
    opacity: 0.9;
}

.future-opportunity {
    background: var(--bg-color); /* Matches the screenshot's beige */
    border: 1px solid #EAE1D5;
    border-radius: 12px;
    padding: 40px;
    margin: 4rem auto;
    max-width: 900px;
    display: grid; /* Use Grid for the two-column layout */
    grid-template-columns: 200px 1fr; /* Fixed width for the icon column, rest for text */
    align-items: center;
    gap: 40px;
}

.future-icon img {
    width: 100%;
    max-width: 180px; /* Keeps the icon large but with breathing room */
    height: auto;
    display: block;
    margin: 0 auto;
}

.future-details h4 {
    margin-top: 0;
}

.future-details p {
    margin-bottom: 0;
    font-size: 0.95rem; /* A slightly smaller font for this block can look elegant */
}


/* --- Investment Section --- */
.investment-wrapper { background: var(--bg-color); padding: 40px 20px 80px 20px; }
.investment-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--card-bg);
    border: 1px solid #EAE1D5;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}
.promise-column {
    background: var(--heading-color);
    color: white;
    padding: 40px;
}
.promise-column h4, .promise-column p { color: white; }
.promise-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
.promise-list li {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 1.8em;
    position: relative;
    opacity: 0.9;
}
.promise-list li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.details-column {
    padding: 100px 20px 20px 20px;
    text-align: center;
}
.steps-grid-inline { display: grid; gap: 20px; margin-bottom: 2rem; }
.step-inline { display: flex; align-items: flex-start; gap: 15px; text-align: left; }
.step-number-inline {
    background: var(--accent-color); color: white; width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700;
    font-family: var(--font-serif); flex-shrink: 0;
}
.step-inline p { font-size: 1rem; margin: 0; line-height: 1.5; color: #101010;}
.details-column .cta-button { width: 100%; text-align: center; box-sizing: border-box; }

.investment-summary-card {
    margin-top: 4rem;
    background: white;
    border: 1px solid #EAE1D5;
    border-radius: 8px;
    padding: 30px;
}
.price-display {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--heading-color);
    margin: 0.5rem 0 2rem 0;
}
.included-services {
    font-size: 1rem; color: #555; text-align: left;
}
.included-services ul {
    list-style: none; padding: 0; margin-top: 1rem;
}
.included-services li {
    margin-bottom: 10px; padding-left: 1.8em; position: relative; font-size: 1rem;
}
.included-services li::before {
    content: '✓'; color: var(--heading-color); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; top: -2px;
}

/* --- Onboarding Footer --- */
#onboarding {
    background: var(--hero-footer-bg); color: #ecf0f1; padding: 80px 20px;
}
#onboarding .section-heading { padding: 0; }
#onboarding h2 { color: white; }
#onboarding .section-heading::after { background: var(--accent-color); }
.tabs { max-width: 800px; margin: 40px auto 0 auto; }
.tab-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.tab-button {
    padding: 12px 24px; cursor: pointer; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
    font-size: 1rem; transition: all 0.3s ease; font-family: var(--font-sans); font-weight: 700;
}
.tab-button.active { background: var(--accent-color); color: white; border-color: var(--accent-color); }
.tab-content-wrapper { background: rgba(0,0,0,0.1); padding: 20px; border-radius: 8px; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content ul { list-style-type: none; padding: 0; margin: 0; text-align: left;}
.tab-content ul li { padding: 12px 5px; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 1rem; }
.tab-content ul li:last-child { border-bottom: none; }

.disclaimer-section {
    max-width: 800px;
    margin: 60px auto 0 auto;
    padding: 25px;
    border-radius: 8px;
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
}
.disclaimer-section h6 { color: #fff; margin-top: 0; }
.disclaimer-section ul { list-style: none; padding: 0; margin-top: 1rem; }
.disclaimer-section li { margin-bottom: 10px; padding-left: 1.8em; position: relative; font-size: 1rem; color: #ccc; }
.disclaimer-section li::before {
    content: '×'; color: var(--accent-color); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; top: -2px;
}

/* --- FINAL HERO SECTION --- */
#final-hero {
    padding: 100px 20px;
    background: url('/images/final-hero-background.webp') no-repeat center center/cover;
    position: relative;
    text-align: center;
    color: white;
}
#final-hero::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(74, 93, 82, 0.8); /* Darker overlay for text pop */
}
.final-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
#final-hero h3, #final-hero p {
    color: white;
}
#final-hero h3 {
    font-size: 2.5rem;
}
#final-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}


/* --- Responsive Design --- */
@media (max-width: 800px) {
    .investment-card {
        grid-template-columns: 1fr;
    }
    .promise-column {
        border-radius: 10px 10px 0 0;
    }
    .future-opportunity {
        grid-template-columns: 1fr; /* This stacks the columns on mobile */
        text-align: center;         /* This centers the text to match the centered icon */
        gap: 20px;
    }
    .future-icon {
        margin-bottom: 20px;
    }
}
