/* ================================================
   FONTS - Inter Only (All other fonts removed)
   ================================================ */

/* Inter */
@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter/InterVariable-Italic.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
}

:root {
    /* FONTS - Using Inter everywhere */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* GRANULAR FONT CONTROLS */
    --font-headline: 'Inter', sans-serif;
    --weight-headline: 700;
    --font-nav: 'Inter', sans-serif;
    --weight-nav: 500;
    --font-subheading: 'Inter', sans-serif;
    --weight-subheading: 800;
    --weight-body: 400;

    /* CORE BACKGROUNDS */
    --bg-studio: #2E2E42;
    /* Deep Indigo-Slate */
    --bg-stone: #F2F2F2;
    /* Light grey/white */

    /* TEXT COLORS */
    --text-on-dark: #F5F1E8;
    --text-on-light: #2E2E42;
    --text-muted: #C8C4BA;

    /* ACCENTS */
    --accent-yellow: #F4D03F;
    --cta-orange: #D35400;

    /* VISUALS */
    --shadow-floating: 0 10px 40px rgba(0, 0, 0, 0.4);
    --border-radius: 8px;
}

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

p, h1, h2, h3 {
    hanging-punctuation: first;
}

strong,
b {
    font-weight: 700;
}

h1,
.logo {
    font-family: var(--font-headline);
    font-weight: var(--weight-headline);
}

h2,
h3 {
    font-family: var(--font-subheading);
    font-weight: var(--weight-subheading);
}

body {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: var(--weight-body);
    background-color: var(--bg-stone);
    color: var(--text-on-light);
    line-height: 1.45;
    overflow-x: hidden;
}

input,
textarea,
select,
button {
    font-family: var(--font-body);
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

/* Layout Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}


/* Header */
header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-stone);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-on-light);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: var(--weight-nav);
    font-size: 1.2rem;
    align-items: center;
    color: var(--text-on-light);
    text-transform: uppercase;
    font-family: var(--font-nav);
}

.nav-links a:hover {
    color: var(--cta-orange);
}

.nav-btn {
    background-color: var(--cta-orange);
    color: var(--text-on-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.nav-btn:hover {
    background-color: #b04600;
    color: var(--text-on-dark) !important;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-studio);
    color: var(--text-on-dark);
}

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

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: var(--weight-headline);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-on-dark);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary {
    background-color: var(--cta-orange);
    color: var(--text-on-dark);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #b04600;
    transform: translateY(-2px);
}

.badge-best-value {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--cta-orange);
    margin-bottom: 0.5rem;
}

.link-secondary {
    font-weight: 600;
    color: var(--text-on-dark);
    border-bottom: 2px solid var(--text-on-dark);
    padding-bottom: 2px;
}

.link-secondary:hover {
    color: var(--cta-orange);
    border-color: var(--cta-orange);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-photo {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
    display: block;
    box-shadow: var(--shadow-floating);
}

.hero-photo-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--accent-yellow);
    border-radius: var(--border-radius);
    z-index: 1;
    left: 50%;
    transform: translateX(-45%);
    top: 20px;
}

/* Social Proof */
.social-proof {
    background-color: #FFFFFF;
    padding: 2rem 0;
    text-align: center;
    font-weight: 700 !important;
    color: var(--text-on-light);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.social-proof a {
    font-weight: 700 !important;
}

.social-proof * {
    font-weight: 700 !important;
}

/* Navigation Cards */
.nav-cards {
    padding: 6rem 0;
    background-color: var(--bg-stone);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background-color: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-floating);
}

.card-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--bg-stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--cta-orange);
}

.card-icon-circle svg {
    width: 24px;
    height: 24px;
    color: var(--cta-orange);
}

.card h3 {
    line-height: 1.1;
    font-size: 2rem;
    margin-bottom: .6rem;
    color: var(--text-on-light);
}

.card p {
    color: var(--text-on-light);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-link {
    color: var(--text-on-light);
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--cta-orange);
    padding-bottom: 4px;
}

.card-link:hover {
    color: var(--cta-orange);
}

/* Coaching Section */
.coaching-section {
    padding: 6rem 0;
    background-color: var(--bg-stone);
    text-align: center;
}

.coaching-content {
    max-width: 900px;
    margin: 0 auto;
}

.coaching-section h2 {
    font-size: 3rem;
    color: var(--text-on-light);
    margin-bottom: 1.5rem;
}

.coaching-section p {
    font-size: 1.1rem;
    color: var(--text-on-light);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Bottom CTA / Lead Magnet */
.bottom-cta {
    background-color: var(--bg-studio);
    color: var(--text-on-dark);
    padding: 6rem 0;
    text-align: center;
}

.bottom-cta h2 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--text-on-dark);
}

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

.bottom-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-form input {
    flex: 1;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: none;
}

.bottom-form button {
    background-color: var(--cta-orange);
    color: var(--text-on-dark);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.bottom-form button:hover {
    background-color: #b04600;
}

.privacy-note {
    margin-top: 1rem !important;
    font-size: 1rem !important;
    color: var(--text-muted) !important;
    opacity: 0.8;
}

/* About Text Section */
.about-text {
    padding: 6rem 0;
    background-color: var(--bg-stone);
}

.about-text-content {
    max-width: 700px;
    /* Narrower for readability */
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-on-light);
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--text-on-light);
    opacity: 0.9;
}

.read-more-link {
    color: var(--cta-orange);
    font-weight: 700;
    border-bottom: 2px solid var(--cta-orange);
    padding-bottom: 2px;
    display: inline-block;
    margin-top: 0.5rem;
}

.read-more-link:hover {
    color: #b04600;
    border-color: #b04600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--bg-stone);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.testimonial-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 2px solid var(--cta-orange);
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-on-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 500;
    color: var(--text-on-light);
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: var(--bg-studio);
    color: var(--text-on-dark);
    padding: 4rem 0;
    text-align: center;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.footer-links a {
    color: var(--text-on-dark);
    opacity: 0.9;
    transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

.copyright {
    font-size: 1rem;
    opacity: 0.6;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-image-container {
        width: 100%;
    }

    .hero-photo-bg {
        left: 50%;
        transform: translateX(-45%);
    }

    h1 {
        font-size: 3rem;
    }

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

    .bottom-form {
        flex-direction: column;
    }

    .bottom-form button {
        width: 100%;
    }
}

/* Lead Magnet Page Styles */
.lead-magnet-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background-color: var(--bg-stone);
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.lead-magnet-form-container h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--text-on-light);
}

.lead-magnet-subtitle {
    color: var(--text-on-light);
    margin-bottom: 2rem;
    opacity: 0.85;
}

.lead-magnet-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.lead-magnet-form input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    color: var(--text-on-light);
    background-color: #FFFFFF;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--cta-orange);
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.lead-magnet-form input::placeholder {
    color: var(--text-muted);
}

.btn-lead-magnet {
    background-color: var(--cta-orange);
    color: var(--text-on-dark);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    font-family: var(--font-body);
    margin-top: 0.5rem;
}

.btn-lead-magnet:hover {
    background-color: #b04600;
    transform: translateY(-2px);
}

.btn-lead-magnet:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: left;
}

.lead-magnet-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 350px;
    width: 100%;
    position: relative;
}

.phone-mockup-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lead-magnet-form-container h1 {
        font-size: 2rem;
    }

    .phone-mockup {
        max-width: 350px;
    }
}

@media (max-width: 640px) {
    .lead-magnet-section {
        padding: 3rem 0;
    }

    .lead-magnet-form-container h1 {
        font-size: 1.75rem;
    }

    .lead-magnet-subtitle {
        font-size: 1rem;
    }

    .phone-mockup {
        max-width: 280px;
    }
}

/* ========================================
   BLOG POST STYLES
   ======================================== */

/* Blog Hero Section */
.blog-hero {
    padding: 4rem 0 4rem;
    background-color: var(--bg-studio);
    color: var(--text-on-dark);
    text-align: center;
}

.blog-hero h1 {
    color: var(--text-on-dark);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-meta {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-excerpt {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Content Area */
.blog-content {
    font-size: 1.4rem;
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    background-color: var(--bg-stone);
}

.blog-content h2 {
    font-size: 2.2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-on-light);
    line-height: 1.2;
}

.blog-content h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-on-light);
    line-height: 1.3;
}

.blog-content p {
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--text-on-light);
}

.blog-content a {
    border-bottom: 2px solid var(--cta-orange);
}

.blog-content strong {
    font-weight: 800;
    color: var(--text-on-light);
}

.blog-content em {
    font-style: italic;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
    color: var(--text-on-light);
}

.blog-content blockquote {
    border-left: 4px solid var(--cta-orange);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--text-on-light);
    opacity: 0.9;
}

.blog-content blockquote p {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Blog Highlight Box */
.highlight-box {
    background-color: #fff;
    border-left: 4px solid var(--cta-orange);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

/* Blog Rating Box */
.rating-box {
    background-color: var(--bg-studio);
    color: var(--text-on-dark);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    text-align: center;
}

.rating-box h3 {
    color: var(--text-on-dark);
    margin-top: 0;
    margin-bottom: 1rem;
}

.rating-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin: 1rem 0;
    font-family: var(--font-heading);
}

.rating-box p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Blog CTA Box */
.blog-cta {
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 4rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-cta h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-on-light);
}

.blog-cta p {
    margin-bottom: 1.5rem;
}

/* Blog Responsive Styles */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-excerpt {
        font-size: 1.1rem;
    }

    .blog-content h2 {
        font-size: 1.8rem;
    }

    .blog-content h3 {
        font-size: 1.4rem;
    }

    .blog-content p,
    .blog-content li {
        font-size: 1.1rem;
    }
}

/* Font Picker Styles */
/* Font Picker - Modern UI */
#font-picker {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

#font-picker-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cta-orange) 0%, #d65a00 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(207, 83, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#font-picker-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(207, 83, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

#font-picker-toggle:active {
    transform: translateY(0) scale(1.02);
}

#font-picker-toggle svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

#font-picker-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
}

#font-picker-panel.hidden {
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    pointer-events: none;
}

#font-picker-panel h3 {
    margin: 0 0 1.25rem 0;
    font-size: 1.4rem;
    color: var(--text-on-light);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.font-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.font-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.font-section h4 {
    margin: 0 0 0.875rem 0;
    font-size: 0.95rem;
    color: var(--text-on-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.helper-text {
    margin: -0.5rem 0 0.75rem 0;
    font-size: 0.8rem;
    color: var(--text-on-light);
    opacity: 0.5;
}

.font-control {
    margin-bottom: 1rem;
}

.font-control:last-child {
    margin-bottom: 0;
}

.font-control label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-on-light);
    opacity: 0.8;
}

.font-control select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--text-on-light);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.font-control select:hover {
    border-color: rgba(207, 83, 0, 0.3);
    background-color: rgba(255, 255, 255, 1);
}

.font-control select:focus {
    outline: none;
    border-color: var(--cta-orange);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(207, 83, 0, 0.1);
}

.picker-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 1.5rem 0;
}

.reset-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, var(--bg-studio) 0%, #1f1f2e 100%);
    color: var(--text-on-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.reset-btn:hover {
    background: linear-gradient(135deg, #1f1f2e 0%, #151521 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reset-btn:active {
    transform: translateY(0);
}

/* Responsive adjustments for font picker */
@media (max-width: 768px) {
    #font-picker {
        bottom: 1rem;
        right: 1rem;
    }

    #font-picker-toggle {
        width: 56px;
        height: 56px;
    }

    #font-picker-toggle svg {
        width: 24px;
        height: 24px;
    }

    #font-picker-panel {
        width: calc(100vw - 2rem);
        max-width: 340px;
        bottom: 70px;
        padding: 1.5rem;
    }

    #font-picker-panel h3 {
        font-size: 1.25rem;
    }
}

/* Things Course Sales Page Styles */
.hero-video-placeholder {
    background-color: #1a1a2e;
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 2rem;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.instructor-image-placeholder {
    background-color: var(--bg-stone);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.module-section {
    padding: 6rem 0;
    background-color: var(--bg-stone);
}

.module-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.module-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.module-image-placeholder {
    background-color: var(--bg-stone);
    border-radius: var(--border-radius);
    padding: 2rem;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.audience-grid {
    display: grid;
    gap: 2rem;
}

.audience-item {
    display: flex;
    gap: 1.5rem;
}

.audience-check {
    color: var(--cta-orange);
    font-size: 2rem;
    flex-shrink: 0;
}

.pricing-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-on-light);
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    font-family: var(--font-body);
    padding: 0.5rem 0;
    color: var(--text-on-light);
}

/* Responsive adjustments for Things course page */
@media (max-width: 768px) {
    .module-grid {
        grid-template-columns: 1fr;
    }

    .module-grid>div:first-child {
        order: 2;
    }

    .module-grid>div:last-child {
        order: 1;
    }

    /* Fix ordering for alternating layout */
    .module-card:nth-child(even) .module-grid>div:first-child {
        order: 1;
    }

    .module-card:nth-child(even) .module-grid>div:last-child {
        order: 2;
    }
}

/* =========================================
   THINGS COURSE - ADDITIONAL SECTIONS
   ========================================= */

/* Story Section */
.story-section {
    padding: 6rem 0;
    background-color: var(--bg-stone);
}

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

.story-content h2 {
    font-size: 3.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    color: var(--text-on-light);
    line-height: 1.1;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-on-light);
    opacity: 0.9;
}

.story-content strong {
    color: var(--cta-orange);
    font-weight: 700;
}

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

.bonus-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid var(--cta-orange);
}

.bonus-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-tag {
    display: inline-block;
    background-color: var(--cta-orange);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.bonus-card h2 {
    font-size: 2rem;
    color: var(--text-on-light);
    margin-bottom: 1.5rem;
}

.bonus-card p {
    color: var(--text-on-light);
    margin-bottom: 1rem;
}

.bonus-card ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.bonus-card ol li {
    color: var(--text-on-light);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #fff;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--text-on-light);
    margin-bottom: 3rem;
    text-align: center;
}

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

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.faq-item details {
    cursor: pointer;
}

.faq-item summary {
    list-style: none;
    padding: 1.5rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-on-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--cta-orange);
    flex-shrink: 0;
}

.faq-item details[open] summary::after {
    content: '−';
}

.faq-answer {
    padding-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-on-light);
}

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

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    color: var(--text-on-light);
    margin-bottom: 2rem;
}

.guarantee-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-on-light);
    margin-bottom: 1.5rem;
}

.guarantee-box {
    background-color: #fff;
    border: 2px dashed var(--text-muted);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem auto;
}

/* Audience List (simplified version) */
.audience-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.audience-list-item {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text-on-light);
    position: relative;
    padding-left: 2rem;
}

.audience-list-item::before {
    content: '✓';
    color: var(--cta-orange);
    font-weight: 700;
    position: absolute;
    left: 0;
}

/* Module heading span styling */
.module-card h3 span {
    color: var(--cta-orange);
}

/* Module list styling */
.module-card ul {
    list-style: none;
    padding: 0;
}

.module-card ul li {
    padding: 0.5rem 0;
    color: var(--text-on-light);
}

/* Hero section adjustments for Things course */
.hero .course-intro-content h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--text-on-dark);

    line-height: 1;
}

.hero .course-intro-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero .btn-primary {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
}

/* Course intro content general styling */
.course-intro-content h2 {
    font-size: 2.5rem;
    color: var(--text-on-light);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.course-intro-content p {
    color: var(--text-on-light);
    margin-bottom: 1.5rem;
}

/* Module section heading */
.module-section h2 {
    font-size: 2.5rem;
    color: var(--text-on-light);
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.module-card h3 {
    font-size: 3rem;
    color: var(--text-on-light);
    margin-bottom: 1rem;
    line-height: 1;
}

.module-card p {
    color: var(--text-on-light);
    margin-bottom: 1rem;
}

/* Audience section heading */
.audience-section h2 {
    font-size: 2.5rem;
    color: var(--text-on-light);
    margin-bottom: 3rem;
    text-align: center;
}

/* Testimonials section heading */
.testimonials-section h2 {
    font-size: 2.5rem;
    color: var(--text-on-light);
    margin-bottom: 1rem;
    text-align: center;
}

/* Bottom CTA section */
.bottom-cta h2 {
    font-size: 2.5rem;
    color: var(--text-on-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.bottom-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-card p {
    font-size: 1.1rem;
    color: var(--text-on-light);
    margin-bottom: 0.5rem;
}

.pricing-card .btn-primary {
    width: 100%;
    font-size: 1.3rem;
    padding: 1.2rem;
}

/* Instructor section adjustments */
.instructor-section .course-intro-content h2 {
    font-size: 2.5rem;
    color: var(--text-on-light);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.instructor-section .course-intro-content p {
    color: var(--text-on-light);
    margin-bottom: 1.5rem;
}

.instructor-image-placeholder p {
    color: var(--text-on-light);
    margin-top: 1rem;
    opacity: 0.6;
}

.hero-video-placeholder p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.module-image-placeholder p {
    color: var(--text-on-light);
    opacity: 0.6;
}

/* Guarantee section button */
.guarantee-content .btn-primary {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    margin-top: 1rem;
}