:root {
    --cream: #FDF6ED;
    --warm-white: #FFF9F2;
    --orange: #E8603C;
    --orange-light: #F4845F;
    --orange-pale: #FDEEE8;
    --brown: #3D2314;
    --brown-mid: #6B3A24;
    --brown-light: #A8633A;
    --yellow: #F5C842;
    --yellow-pale: #FDF4D0;
    --green: #4A8C6F;
    --green-pale: #E4F0EA;
    --text: #2A1508;
    --text-mid: #6B4630;
    --text-light: #9B7060;
    --border: #E8D5C4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(253, 246, 237, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(61, 35, 20, .08);
}

.nav-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    transition: color .2s;
}

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

.nav-cta {
    background: var(--orange);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: background .2s, transform .2s !important;
}

.nav-cta:hover {
    background: var(--orange-light) !important;
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 80px 80px;
    position: relative;
    overflow: hidden;
    gap: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #F4845F33 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #F5C84222 0%, transparent 70%);
    pointer-events: none;
}

.hero-tag {
    display: inline-block;
    background: var(--yellow-pale);
    color: var(--brown-light);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid #F5C84255;
    animation: fadeUp .8s ease both;
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -2px;
    color: var(--brown);
    animation: fadeUp .8s ease .1s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--orange);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-mid);
    max-width: 500px;
    line-height: 1.7;
    margin: 24px 0 40px;
    font-weight: 300;
    animation: fadeUp .8s ease .2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp .8s ease .3s both;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 30px rgba(232, 96, 60, .3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(232, 96, 60, .4);
}

.btn-ghost {
    color: var(--text-mid);
    font-size: .93rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color .2s;
}

.btn-ghost:hover {
    color: var(--orange);
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    animation: fadeUp .8s ease .4s both;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid var(--cream);
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: -10px;
}

.avatars span:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: .83rem;
    color: var(--text-light);
    line-height: 1.4;
}

.proof-text strong {
    color: var(--text-mid);
    font-weight: 500;
}

/* Hero visual */
.hero-visual {
    position: relative;
    animation: fadeUp .9s ease .15s both;
}

.hero-card-main {
    background: #fff;
    border-radius: 28px;
    padding: 50px 44px;
    box-shadow: 0 20px 80px rgba(61, 35, 20, .12);
    position: relative;
    border: 1px solid var(--border);
}

.hero-card-main .emoji-big {
    font-size: 5rem;
    display: block;
    margin-bottom: 20px;
}

.card-title {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 12px;
}

.card-desc {
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.pill {
    background: var(--orange-pale);
    color: var(--orange);
    font-size: .78rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
}

.pill.green {
    background: var(--green-pale);
    color: var(--green);
}

.pill.yellow {
    background: var(--yellow-pale);
    color: #B8920A;
}

.float-card {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: 0 8px 40px rgba(61, 35, 20, .12);
    border: 1px solid var(--border);
    animation: floatY 4s ease-in-out infinite;
}

.float-card.fc1 {
    top: -30px;
    right: -30px;
    font-size: .85rem;
    color: var(--text-mid);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.float-card.fc2 {
    bottom: -20px;
    left: -30px;
    font-size: .82rem;
    color: var(--text-mid);
    animation-delay: -2s;
}

.fc2-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc2-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

/* ── PAIN SECTION ── */
.pain {
    padding: 100px 80px;
    background: var(--brown);
    position: relative;
    overflow: hidden;
}

.pain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
}

.pain-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.pain h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -1.5px;
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 60px;
}

.pain h2 em {
    color: var(--orange-light);
    font-style: italic;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pain-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 32px 28px;
    transition: background .3s;
}

.pain-item:hover {
    background: rgba(255, 255, 255, .08);
}

.pain-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.pain-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
}

.pain-item p {
    font-size: .88rem;
    color: rgba(253, 246, 237, .55);
    line-height: 1.65;
}

/* ── WHAT IS ── */
.whatis {
    padding: 100px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.whatis-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.whatis h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--brown);
    line-height: 1.1;
    margin-bottom: 24px;
}

.whatis h2 span {
    color: var(--orange);
}

.whatis p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 300;
}

.whatis-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 22px;
}

.stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: .83rem;
    color: var(--text-light);
    line-height: 1.4;
}

.visual-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 28px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
}

.timeline-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(61, 35, 20, .08);
}

.tl-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tl-content h4 {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 4px;
}

.tl-content p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── GUIDE SECTIONS ── */
.guide {
    padding: 100px 80px;
    background: var(--warm-white);
}

.guide-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-header {
    text-align: center;
    margin-bottom: 70px;
}

.guide-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--brown);
    line-height: 1.1;
    margin-bottom: 16px;
}

.guide-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.guide-card {
    background: #fff;
    border-radius: 24px;
    padding: 38px 36px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(61, 35, 20, .1);
}

.guide-card:hover::before {
    transform: scaleX(1);
}

.guide-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.guide-card .card-num {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--orange-pale);
    line-height: 1;
    margin-bottom: 12px;
}

.guide-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 12px;
    line-height: 1.2;
}

.guide-card p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.65;
}

.guide-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guide-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.guide-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── TANTRUMS ── */
.tantrums {
    padding: 100px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.tantrums-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.tantrums h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--brown);
    line-height: 1.1;
    margin-bottom: 20px;
}

.tantrums h2 em {
    color: var(--orange);
    font-style: italic;
}

.tantrums>.tantrums-layout>div>p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 36px;
}

.step-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card {
    display: flex;
    gap: 20px;
    padding: 22px 24px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 4px;
}

.step-card p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.big-quote {
    background: var(--orange);
    border-radius: 28px;
    padding: 48px 44px;
    color: #fff;
    position: sticky;
    top: 120px;
}

.big-quote blockquote {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 28px;
}

.big-quote cite {
    font-size: .85rem;
    opacity: .75;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-icon {
    font-size: 3rem;
    opacity: .25;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
}

.do-dont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.do-box,
.dont-box {
    background: rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 18px 16px;
}

.do-box h5,
.dont-box h5 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.do-box h5 {
    color: #A8F0CC;
}

.dont-box h5 {
    color: #FFB3A0;
}

.do-box ul,
.dont-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: .82rem;
    opacity: .88;
}

.do-box ul li::before {
    content: '✓ ';
    color: #A8F0CC;
}

.dont-box ul li::before {
    content: '✗ ';
    color: #FFB3A0;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 100px 80px;
    background: var(--brown);
}

.test-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.test-header {
    text-align: center;
    margin-bottom: 60px;
}

.test-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.test-header p {
    color: rgba(253, 246, 237, .5);
    font-size: .95rem;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.test-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 32px 28px;
    transition: background .3s;
}

.test-card:hover {
    background: rgba(255, 255, 255, .08);
}

.stars {
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.test-card p {
    font-size: .9rem;
    color: rgba(253, 246, 237, .75);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 24px;
    font-family: 'Fraunces', serif;
    font-weight: 300;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-name {
    font-size: .88rem;
    font-weight: 500;
    color: var(--cream);
}

.author-role {
    font-size: .78rem;
    color: rgba(253, 246, 237, .4);
}

/* ── FAQ ── */
.faq {
    padding: 100px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--brown);
    margin-bottom: 12px;
}

.faq-header p {
    color: var(--text-light);
    font-size: .95rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 26px 30px;
    text-align: left;
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brown);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--orange);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    transition: transform .3s, background .3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--orange);
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    font-size: .93rem;
    color: var(--text-mid);
    line-height: 1.7;
    padding: 0 30px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 30px 26px;
}

/* ── CTA ── */
.cta-section {
    padding: 100px 80px;
    background: var(--orange);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '2';
    position: absolute;
    font-family: 'Fraunces', serif;
    font-size: 50vw;
    font-weight: 900;
    color: rgba(255, 255, 255, .06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
}

.cta-section h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    position: relative;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    max-width: 560px;
    margin: 0 auto 44px;
    font-weight: 300;
    line-height: 1.65;
    position: relative;
}

.cta-actions {
    position: relative;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--orange);
    padding: 18px 42px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .1);
}

/* ── FOOTER ── */
footer {
    padding: 60px 80px 40px;
    background: var(--brown);
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: .88rem;
    color: rgba(253, 246, 237, .4);
    line-height: 1.65;
}

.footer-col h5 {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(253, 246, 237, .3);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: .88rem;
    color: rgba(253, 246, 237, .55);
    text-decoration: none;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--orange-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: .82rem;
    color: rgba(253, 246, 237, .25);
}

/* ── PRICING / BENEFITS ── */
.pricing {
    padding: 100px 80px;
    background: var(--cream);
}

.pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.pricing-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--brown);
    line-height: 1.1;
    margin-bottom: 16px;
}

.pricing-header h2 em {
    color: var(--orange);
    font-style: italic;
}

.pricing-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
}

.benefits-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 24px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 24px rgba(61, 35, 20, .07);
}

.benefit-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--orange-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h4 {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 5px;
    line-height: 1.2;
}

.benefit-item p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.55;
}

.pricing-card {
    background: var(--brown);
    border-radius: 28px;
    padding: 40px 36px;
    position: sticky;
    top: 100px;
    box-shadow: 0 30px 80px rgba(61, 35, 20, .25);
    border: 1px solid rgba(255, 255, 255, .06);
}

.pricing-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--brown);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.pricing-product {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.product-emoji {
    font-size: 2.4rem;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, .08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-name {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 4px;
}

.product-sub {
    font-size: .78rem;
    color: rgba(253, 246, 237, .4);
}

.pricing-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 22px 0;
}

.price-block {
    text-align: center;
    padding: 8px 0;
}

.price-label {
    font-size: .75rem;
    color: rgba(253, 246, 237, .4);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-main {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(253, 246, 237, .6);
    line-height: 1;
    margin-bottom: 6px;
}

.price-main span {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -2px;
}

.price-installment {
    font-size: .88rem;
    color: var(--yellow);
    margin-top: 4px;
}

.pricing-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.pricing-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .87rem;
    color: rgba(253, 246, 237, .75);
    line-height: 1.4;
}

.pricing-includes li span {
    color: #A8F0CC;
    font-weight: 700;
    flex-shrink: 0;
    font-size: .9rem;
}

.btn-buy {
    display: block;
    width: 100%;
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 30px rgba(232, 96, 60, .4);
    margin-bottom: 20px;
    letter-spacing: .3px;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(232, 96, 60, .5);
}

.pricing-trust {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 18px;
}

.trust-item {
    font-size: .72rem;
    color: rgba(253, 246, 237, .4);
    text-align: center;
    line-height: 1.4;
    flex: 1;
}

.pricing-guarantee {
    font-size: .78rem;
    color: rgba(253, 246, 237, .35);
    text-align: center;
    line-height: 1.5;
    font-style: italic;
}

/* ── MOBILE HERO CARD ── */
.hero-card-mobile {
    display: none;
}

.mobile-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.mobile-badge-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 16px;
    font-size: .82rem;
    color: var(--text-mid);
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(61, 35, 20, .07);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc2-dot-inline {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 120px 40px 60px;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-card-mobile {
        display: block;
        margin-bottom: 32px;
    }

    .hero-card-main {
        padding: 32px 28px;
    }

    .hero-card-main .emoji-big {
        font-size: 3.5rem;
        margin-bottom: 14px;
    }

    .pain {
        padding: 80px 40px;
    }

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

    .whatis {
        padding: 80px 40px;
    }

    .whatis-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .guide {
        padding: 80px 40px;
    }

    .guide-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .tantrums {
        padding: 80px 40px;
    }

    .tantrums-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .big-quote {
        position: static;
    }

    .testimonials {
        padding: 80px 40px;
    }

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

    .faq {
        padding: 80px 40px;
    }

    .pricing {
        padding: 80px 40px;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        position: static;
    }

    .cta-section {
        padding: 80px 40px;
    }

    footer {
        padding: 60px 40px 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 90px 24px 60px;
    }

    .hero-card-mobile {
        display: block;
        margin-bottom: 28px;
    }

    .hero-card-main {
        padding: 26px 22px;
    }

    .hero-card-main .emoji-big {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .mobile-badges {
        gap: 8px;
    }

    .mobile-badge-item {
        font-size: .78rem;
        padding: 8px 14px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .pain {
        padding: 70px 24px;
    }

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

    .whatis {
        padding: 70px 24px;
    }

    .whatis-stats {
        grid-template-columns: 1fr 1fr;
    }

    .guide {
        padding: 70px 24px;
    }

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

    .guide-card.featured {
        grid-column: span 1;
    }

    .tantrums {
        padding: 70px 24px;
    }

    .do-dont {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 70px 24px;
    }

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

    .faq {
        padding: 70px 24px;
    }

    .pricing {
        padding: 70px 24px;
    }

    .pricing-trust {
        flex-direction: column;
        gap: 6px;
    }

    .cta-section {
        padding: 70px 24px;
    }

    footer {
        padding: 50px 24px 30px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}