/* ============================================
   MORISAN EBOOK LANDING PAGE — STYLE.CSS
   Premium dark theme, wine/burgundy accents
   Mobile-first responsive design
   ============================================ */

/* --- RESET & VARIABLES --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0f0f0f;
    --bg-secondary: #161616;
    --bg-card: #1a1a1a;
    --bg-card-hover: #1f1f1f;
    --bg-accent-dark: #120808;

    --wine: #820c0c;
    --wine-light: #a41a1a;
    --wine-glow: rgba(130, 12, 12, 0.25);
    --red-deep: #6b0a0a;
    --beige: #d4c5a9;
    --beige-light: #e8dcc6;
    --beige-muted: rgba(212, 197, 169, 0.6);

    --text-primary: #f0ece4;
    --text-secondary: #a8a29e;
    --text-muted: #6b6560;

    --border: rgba(212, 197, 169, 0.08);
    --border-hover: rgba(212, 197, 169, 0.15);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --container: 1120px;
    --gap: 1.25rem;
    --radius: 6px;
    --radius-lg: 12px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --- TYPOGRAPHY --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wine-light);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.section-title em {
    font-style: italic;
    color: var(--beige);
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.9375rem 2rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--wine);
    color: #fff;
    box-shadow: 0 2px 16px var(--wine-glow);
}

.btn--primary:hover {
    background: var(--wine-light);
    box-shadow: 0 4px 24px rgba(130, 12, 12, 0.4);
    transform: translateY(-1px);
}

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

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay {
    transition-delay: 0.2s;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.875rem 0;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.header__logo img {
    width: 32px;
    height: 32px;
}

.header__logo-text {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--beige);
}

.header__nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.header__link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.header__link:hover {
    color: var(--text-primary);
}

.header__cta-btn {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: var(--wine);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.header__cta-btn:hover {
    background: var(--wine-light);
}

.header__menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.header__menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--beige);
    border-radius: 2px;
    transition: var(--transition);
}

.header__menu-btn.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.header__menu-btn.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav open */
.header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.header__nav.is-open .header__link {
    font-size: 1rem;
}

.header__nav.is-open .header__cta-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    text-align: center;
    width: 100%;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    padding: 7.5rem 0 0;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero__bg-accent {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(130, 12, 12, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 3rem;
}

.hero__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wine-light);
    background: rgba(130, 12, 12, 0.12);
    padding: 0.375rem 0.875rem;
    border-radius: 3px;
    border: 1px solid rgba(130, 12, 12, 0.2);
    margin-bottom: 1.25rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.hero__title em {
    font-style: italic;
    color: var(--beige);
}

.hero__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero__btn {
    margin-bottom: 1.5rem;
}

.hero__seal {
    font-size: 0.8125rem;
    color: var(--text-muted);
    max-width: 380px;
    line-height: 1.5;
    border-left: 2px solid var(--wine);
    padding-left: 0.875rem;
}

/* Book mockup */
.hero__book-mockup {
    display: flex;
    justify-content: center;
}

.hero__book-cover {
    position: relative;
    width: 260px;
    perspective: 900px;
}

.hero__book-front {
    background: linear-gradient(145deg, #1a0a0a 0%, #0f0808 40%, #1a0f0f 100%);
    border: 1px solid rgba(130, 12, 12, 0.3);
    border-radius: 4px 12px 12px 4px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 360px;
    box-shadow:
        8px 8px 30px rgba(0, 0, 0, 0.5),
        -2px 0 8px rgba(130, 12, 12, 0.1);
    transform: rotateY(-8deg);
    transition: transform 0.5s ease;
}

.hero__book-front:hover {
    transform: rotateY(-2deg);
}

.hero__book-spine {
    position: absolute;
    left: -4px;
    top: 2px;
    bottom: 2px;
    width: 8px;
    background: linear-gradient(180deg, var(--wine) 0%, var(--red-deep) 100%);
    border-radius: 4px 0 0 4px;
}

.hero__book-label {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--beige-muted);
    text-transform: uppercase;
}

.hero__book-subtitle {
    font-family: var(--font-body);
    font-size: 0.5625rem;
    color: var(--text-muted);
    font-style: italic;
}

.hero__book-title-block {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.hero__book-main {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
}

.hero__book-accent {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--wine-light);
    line-height: 1;
}

.hero__book-channel {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--beige-muted);
    letter-spacing: 0.05em;
    margin-top: auto;
}

.hero__book-tagline {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(130, 12, 12, 0.3);
    padding-top: 0.75rem;
}

/* Hero stats bar */
.hero__stats {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.hero__stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--beige);
    margin-bottom: 0.25rem;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    display: none;
}

/* =============================================
   PAIN SECTION
   ============================================= */
.pain {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.pain__header {
    margin-bottom: 3rem;
}

.pain__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pain__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
}

.pain__card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.pain__card-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--wine);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.pain__card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
}

.pain__card-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pain__quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--beige);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

/* =============================================
   TRANSFORM SECTION
   ============================================= */
.transform {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.transform__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.transform__inner .section-desc {
    margin: 0 auto 2rem;
}

.transform__highlight {
    background: rgba(130, 12, 12, 0.08);
    border: 1px solid rgba(130, 12, 12, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
}

.transform__highlight p {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.transform__highlight strong {
    color: var(--beige);
}

/* =============================================
   LEARN SECTION
   ============================================= */
.learn {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.learn__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.learn__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
}

.learn__item:hover {
    border-color: rgba(130, 12, 12, 0.25);
}

.learn__number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wine);
    margin-bottom: 0.75rem;
}

.learn__item-title {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.learn__item-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =============================================
   FUNNEL SECTION
   ============================================= */
.funnel {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.funnel .section-desc {
    margin-bottom: 3rem;
}

.funnel__steps {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
}

.funnel__step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.funnel__step:hover {
    border-color: rgba(130, 12, 12, 0.3);
    background: var(--bg-card-hover);
}

.funnel__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: var(--wine);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 4px;
    flex-shrink: 0;
}

.funnel__step-content h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.funnel__step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.funnel__connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, var(--wine), rgba(130, 12, 12, 0.2));
    margin: 0 auto;
    flex-shrink: 0;
}

/* =============================================
   PROOF SECTION
   ============================================= */
.proof {
    padding: 5rem 0;
    background: var(--bg-accent-dark);
}

.proof__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.proof__inner .section-desc {
    margin: 0 auto 2.5rem;
}

.proof__results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.proof__result {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(130, 12, 12, 0.06);
    border: 1px solid rgba(130, 12, 12, 0.15);
    border-radius: var(--radius);
}

.proof__result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--wine);
    color: #fff;
    font-size: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.proof__result p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.proof__footnote {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* =============================================
   AUTHOR SECTION
   ============================================= */
.author {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.author__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.author__photo {
    position: relative;
    flex-shrink: 0;
}

.author__photo-frame {
    width: 180px;
    height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(130, 12, 12, 0.3);
}

.author__photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a0a0a, #0f0808);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author__initials {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--wine);
    opacity: 0.5;
}

.author__photo-accent {
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(130, 12, 12, 0.2);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.author__role {
    font-size: 0.9375rem;
    color: var(--beige);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.author__text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.875rem;
}

.author__links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* =============================================
   OFFER SECTION
   ============================================= */
.offer {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.offer__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(130, 12, 12, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
}

.offer__edition {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.offer__benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.offer__benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.offer__check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(130, 12, 12, 0.15);
    color: var(--wine-light);
    font-size: 0.6875rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.offer__secure {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* =============================================
   AUDIENCE SECTION
   ============================================= */
.audience {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.audience .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.audience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.audience__card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
}

.audience__card--yes {
    background: rgba(130, 12, 12, 0.06);
    border-color: rgba(130, 12, 12, 0.2);
}

.audience__card--no {
    background: var(--bg-card);
}

.audience__card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.audience__card--yes .audience__card-title {
    color: var(--beige);
}

.audience__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.audience__card--yes .audience__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-light);
    font-weight: 700;
}

.audience__card--no .audience__list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-weight: 700;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.faq .section-tag,
.faq .section-title {
    text-align: center;
}

.faq__list {
    max-width: 680px;
    margin: 2.5rem auto 0;
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
    gap: 1rem;
}

.faq__question:hover {
    color: var(--beige);
}

.faq__icon {
    font-size: 1.25rem;
    color: var(--wine-light);
    flex-shrink: 0;
    transition: var(--transition);
    font-weight: 300;
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.is-open .faq__answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq__answer p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
    padding: 5rem 0;
    background: var(--bg-accent-dark);
}

.cta-final__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.cta-final__title em {
    font-style: italic;
    color: var(--beige);
}

.cta-final__text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-final__note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 2.5rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer__brand img {
    width: 28px;
    height: 28px;
    opacity: 0.5;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer__links a:hover {
    color: var(--beige);
}

.footer__copy {
    font-size: 0.6875rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* =============================================
   MOBILE CTA (fixed bottom)
   ============================================= */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 0.75rem 1rem;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mobile-cta.is-visible {
    transform: translateY(0);
}

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

/* =============================================
   RESPONSIVE — TABLET (640px+)
   ============================================= */
@media (min-width: 640px) {
    .pain__grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .hero__stat-divider {
        display: block;
    }

    .hero__stats-inner {
        flex-wrap: nowrap;
        gap: 2rem;
    }

    .author__inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
}

/* =============================================
   RESPONSIVE — DESKTOP (960px+)
   ============================================= */
@media (min-width: 960px) {
    .header__nav {
        display: flex;
    }

    .header__menu-btn {
        display: none;
    }

    .hero__inner {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
        padding-bottom: 4rem;
    }

    .hero__content {
        flex: 1;
    }

    .hero__visual {
        flex-shrink: 0;
    }

    .pain__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .learn__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .funnel__steps {
        max-width: 620px;
    }

    .offer__inner {
        padding: 3.5rem 3rem;
    }

    /* Hide mobile CTA on desktop */
    .mobile-cta {
        display: none;
    }

    /* Extra bottom padding for body NOT needed on desktop */
    body {
        padding-bottom: 0;
    }

    .hero__stat-number {
        font-size: 1.75rem;
    }
}

/* Add bottom padding on mobile for fixed CTA */
@media (max-width: 959px) {
    body {
        padding-bottom: 4.5rem;
    }
}
