:root {
    --sage-green: #A4AFA5;
    /* Muted Mineral Green */
    --sage-dark: #8C968D;
    /* Slightly darker sage for hover */
    --sage-light: #EBECE8;
    /* Pale Mineral Grey */
    --cream: #F9F6F0;
    /* Soft Alabaster */
    --gold: #D6CFC4;
    /* Warm Taupe/Beige */
    --charcoal: #3D3632;
    /* Deep Loam */
    --text-color: #59524C;
    /* Warm Grey */
    --white: #ffffff;

    /* New Textures */
    --coffee: #5E4B41;
    /* Primary Accent */
    --sand: #E6DCC6;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-sm: 0 4px 6px rgba(61, 54, 50, 0.05);
    --shadow-md: 0 10px 15px rgba(61, 54, 50, 0.08);
    /* Warmer shadow */
    --radius: 12px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--charcoal);
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.narrow-container {
    max-width: 800px;
}

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

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

.bg-green {
    background-color: var(--sage-green);
    color: white;
}

.section-padding {
    padding: 80px 0;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--coffee);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    border: 1px solid var(--coffee);
    color: var(--coffee);
}

.btn-sm:hover {
    background-color: var(--coffee);
    color: white;
}

/* Header */
.header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

/* Hero Section */
.hero {
    background-color: var(--sage-light);
    /* Kept light for freshness, but now warmer */
    padding-top: 140px;
    padding-bottom: 0px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--coffee);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-tag {
    font-size: 0.9rem;
    color: var(--coffee);
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(61, 54, 50, 0.1);
    transform: rotate(-2deg);
}

.hero-shape {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(-2deg);
    }

    100% {
        transform: translateY(0px) rotate(-2deg);
    }
}

/* Empathy Section */
.empathy .icon-header {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.empathy-box {
    background-color: var(--cream);
    padding: 30px;
    border-radius: var(--radius);
    margin: 40px 0;
    border-left: 4px solid var(--gold);
    /* Warm Taupe */
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal);
    font-style: italic;
}

.lead-text {
    font-size: 1.3rem;
}

/* Solution Section */
.solution p {
    margin-bottom: 1.5rem;
}

/* Features */
.section-title {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--cream);
    color: var(--coffee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.feature-note {
    font-weight: 500;
    color: var(--coffee);
}

/* Benefits */
.benefits {
    /* Richer, darker background for contrast */
    background-image: linear-gradient(to bottom right, var(--coffee), var(--charcoal));
}

.benefits h2,
.benefits h3,
.benefits p {
    color: white;
}

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

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

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
}

.benefit-icon {
    font-size: 1.5rem;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--coffee);
}

/* About Me */
.about-row {
    display: flex;
    align-items: center;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 20px;
}

.shadow-box {
    box-shadow: var(--shadow-md);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 250px;
    height: 300px;
    background-color: var(--sage-light);
    border-radius: 20px;
    /* Soft grounding shape */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-green);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

/* Optional: Add a subtle decorative border */
.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px dashed var(--white);
    border-radius: 12px;
}

.about-text {
    flex: 1.5;
}

.about-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--coffee);
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.about-text h3 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--charcoal);
}

.signature {
    margin-top: 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--coffee);
}

@media (max-width: 900px) {
    .about-row {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }
}

/* Audience */
.custom-checklist {
    list-style: none;
}

.custom-checklist li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    color: var(--text-color);
}

.custom-checklist li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--white);
    background: var(--sage-green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checklist-box {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed var(--gold);
}

/* Reassurance & CTA */
.reassurance-grid p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.gentle-promise {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    margin-top: 40px;
    position: relative;
}

.gentle-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30%;
    right: 30%;
    height: 4px;
    background: var(--gold);
    border-radius: 0 0 10px 10px;
}

.highlight {
    font-weight: 600;
    color: var(--coffee);
    font-size: 1.4rem;
    margin-top: 20px;
}

.cta-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(61, 54, 50, 0.08);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415-.828-.828-.828.828-1.415-1.415.828-.828-.828-.828 1.415-1.415.828.828.828-.828 1.415 1.415-.828.828zM22.485 0l.83.828-1.415 1.415-.828-.828-.828.828-1.415-1.415.828-.828-.828-.828 1.415-1.415.828.828.828-.828 1.415 1.415-.828.828zM0 22.485l.828.83-1.415 1.415-.828-.828-.828.828L-3.658 22.485l.828-.828-.828-.828 1.415-1.415.828.828.828-.828 1.415 1.415-.828.828zM0 54.627l.828.83-1.415 1.415-.828-.828-.828.828L-3.658 54.627l.828-.828-.828-.828 1.415-1.415.828.828.828-.828 1.415 1.415-.828.828zM54.627 60l.83.828-1.415 1.415-.828-.828-.828.828-1.415-1.415.828-.828-.828-.828 1.415-1.415.828.828.828-.828 1.415 1.415-.828.828zM22.485 60l.83.828-1.415 1.415-.828-.828-.828.828-1.415-1.415.828-.828-.828-.828 1.415-1.415.828.828.828-.828 1.415 1.415-.828.828z' fill='%235e4b41' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    max-width: 700px;
    margin: 40px auto 0;
}

.mini-features {
    list-style: none;
    margin: 20px 0 30px;
    display: inline-block;
    text-align: left;
}

.mini-features li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.mini-features i {
    color: var(--coffee);
    margin-right: 10px;
}

.guarantee {
    color: #888;
    margin-top: 15px;
}

.price-display {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: #9aa5b1;
    padding: 40px 0;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-image img {
        max-width: 350px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}