/* ===================================
   RESET & BASE STYLES
   =================================== */

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

:root {
    /* Brand Colors */
    --warm-charcoal: #3A3A3A;
    --soft-terracotta: #D4806F;
    --cream: #F5F3ED;
    --dusty-sage: #9CA894;
    --warm-taupe: #A89080;
    --soft-charcoal: #6A6A6A;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Crimson Pro', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--warm-charcoal);
    background-color: var(--cream);
}

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

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--soft-charcoal);
}

.emphasis {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--soft-terracotta);
    border-left: 4px solid var(--soft-terracotta);
    padding-left: 1rem;
    margin: 2rem 0;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--soft-terracotta);
    color: white;
}

.btn-primary:hover {
    background-color: #c26d5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 128, 111, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--warm-charcoal);
    border: 2px solid var(--warm-charcoal);
}

.btn-secondary:hover {
    background-color: var(--warm-charcoal);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(245, 243, 237, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(58, 58, 58, 0.1);
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--warm-charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--soft-terracotta);
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    background-color: var(--soft-terracotta);
    color: white;
    border-radius: 6px;
}

.btn-nav:hover {
    background-color: #c26d5e;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--warm-charcoal);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--dusty-sage) 0%, var(--warm-taupe) 100%);
    opacity: 0.1;
    border-radius: 0 0 0 200px;
    z-index: -1;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--warm-charcoal);
    margin-bottom: 1.5rem;
}

.highlight {
    display: block;
    color: var(--soft-terracotta);
    font-size: 0.7em;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--soft-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--soft-charcoal);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===================================
   SOCIAL PROOF BAR
   =================================== */

.social-proof {
    background-color: var(--warm-charcoal);
    color: var(--cream);
    padding: 2rem 0;
}

.social-proof-content {
    text-align: center;
}

.social-proof-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.proof-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-items span {
    font-size: 1rem;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--soft-charcoal);
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem {
    padding: 6rem 0;
    background-color: white;
}

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

.problem-card {
    padding: 2rem;
    border: 2px solid rgba(58, 58, 58, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: var(--soft-terracotta);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: var(--warm-charcoal);
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--soft-charcoal);
    margin-bottom: 0;
}

/* ===================================
   STORY SECTION
   =================================== */

.story {
    padding: 6rem 0;
    background-color: var(--cream);
}

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

.story-text h2 {
    color: var(--warm-charcoal);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--soft-charcoal);
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

.how-it-works {
    padding: 6rem 0;
    background-color: white;
}

.framework-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step {
    position: relative;
    padding: 2.5rem 2rem;
    background-color: var(--cream);
    border-radius: 12px;
    border-top: 4px solid var(--soft-terracotta);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--soft-terracotta);
    opacity: 0.3;
}

.step h3 {
    font-size: 1.5rem;
    color: var(--soft-terracotta);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step p {
    color: var(--soft-charcoal);
    margin-bottom: 1.5rem;
}

.step-result {
    padding: 1rem;
    background-color: white;
    border-left: 3px solid var(--dusty-sage);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--soft-charcoal);
}

.framework-cta {
    text-align: center;
    padding: 3rem 0 0;
}

.framework-note {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--warm-charcoal);
    margin-bottom: 2rem;
}

/* ===================================
   FREE RESOURCE SECTION
   =================================== */

.free-resource {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dusty-sage) 0%, var(--warm-taupe) 100%);
}

.resource-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background-color: white;
    border-radius: 16px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.resource-tag {
    display: inline-block;
    background-color: var(--soft-terracotta);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.resource-content h2 {
    color: var(--warm-charcoal);
    margin-bottom: 1.5rem;
}

.resource-content p {
    color: var(--soft-charcoal);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.resource-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.resource-includes li {
    padding: 0.75rem 0;
    color: var(--soft-charcoal);
    font-size: 1rem;
    border-bottom: 1px solid rgba(58, 58, 58, 0.1);
}

.resource-includes li:last-child {
    border-bottom: none;
}

.email-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(58, 58, 58, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.email-form input:focus {
    outline: none;
    border-color: var(--soft-terracotta);
}

.email-form button {
    white-space: nowrap;
}

.form-note {
    font-size: 0.9rem;
    color: var(--soft-charcoal);
    font-style: italic;
    margin-bottom: 0;
}

/* Resource Preview */
.resource-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-box {
    width: 100%;
    max-width: 400px;
    background-color: var(--cream);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.preview-header {
    font-weight: 700;
    color: var(--warm-charcoal);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--soft-terracotta);
}

.preview-line {
    height: 12px;
    background-color: rgba(58, 58, 58, 0.1);
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.preview-line.short {
    width: 60%;
}

.preview-line.medium {
    width: 80%;
}

.preview-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(58, 58, 58, 0.1);
}

/* ===================================
   OFFERS SECTION
   =================================== */

.offers {
    padding: 6rem 0;
    background-color: var(--cream);
}

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

.offer-card {
    position: relative;
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    border: 2px solid rgba(58, 58, 58, 0.1);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offer-card.featured {
    border: 3px solid var(--soft-terracotta);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--soft-terracotta);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.offer-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(58, 58, 58, 0.1);
}

.offer-header h3 {
    color: var(--warm-charcoal);
    margin-bottom: 0.5rem;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--soft-terracotta);
    font-family: var(--font-heading);
}

.offer-description {
    color: var(--soft-charcoal);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-features li {
    padding: 0.75rem 0;
    color: var(--soft-charcoal);
    border-bottom: 1px solid rgba(58, 58, 58, 0.05);
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-for {
    background-color: var(--cream);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--soft-charcoal);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    padding: 6rem 0;
    background-color: white;
}

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

.about-text h2 {
    color: var(--warm-charcoal);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--soft-charcoal);
}

.about-callout {
    background-color: var(--cream);
    padding: 2rem;
    border-left: 4px solid var(--soft-terracotta);
    border-radius: 8px;
    margin: 2.5rem 0;
}

.about-callout p {
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-callout ul {
    list-style: none;
    padding-left: 0;
}

.about-callout li {
    padding: 0.5rem 0;
    color: var(--soft-charcoal);
}

.about-callout li:before {
    content: "→ ";
    color: var(--soft-terracotta);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--soft-terracotta) 0%, #c26d5e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.final-cta .btn-primary {
    background-color: white;
    color: var(--soft-terracotta);
}

.final-cta .btn-primary:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-note {
    font-size: 1rem;
    margin-top: 1.5rem;
}

.cta-note a {
    color: white;
    text-decoration: underline;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--warm-charcoal);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-main h3 {
    color: var(--cream);
    margin-bottom: 1rem;
}

.footer-main p {
    color: rgba(245, 243, 237, 0.8);
    margin-bottom: 0.5rem;
}

.footer-location {
    font-size: 1rem;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: var(--cream);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(245, 243, 237, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--soft-terracotta);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 243, 237, 0.2);
}

.footer-bottom p {
    color: rgba(245, 243, 237, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr !important;
    }
    
    .story-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--cream);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateX(0);
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .proof-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-steps {
        grid-template-columns: 1fr;
    }
    
    .resource-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .resource-preview {
        order: -1;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .problem,
    .story,
    .how-it-works,
    .free-resource,
    .offers,
    .about,
    .final-cta {
        padding: 3rem 0;
    }
    
    .resource-card {
        padding: 1.5rem;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

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

/* ===================================
   ANIMATIONS
   =================================== */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
