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

:root {
    --coral: #FA5964;
    --coral-hover: #e84d57;
    --orange: #FC8A00;
    --teal: #B2D9DB;
    --green: #1CD5A3;
    --green-muted: #8BA88E;
    --terracotta: #D87659;
    --warm-orange: #E8A66C;
    --cream: #F5F3F1;
    --cream-dark: #EDE9E6;
    --white: #FFFFFF;
    --text: #1A1A1A;
    --text-muted: #646464;
    --text-light: #999999;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
    padding: 14px 32px;
    box-shadow: 0 4px 16px rgba(250, 89, 100, 0.3);
}
.btn-primary:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(250, 89, 100, 0.4);
}
.btn-lg { font-size: 1.125rem; padding: 18px 40px; }
.btn-full { width: 100%; }
.btn-nav {
    background: var(--coral);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}
.btn-nav:hover { background: var(--coral-hover); }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 243, 241, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}
.nav.scrolled {
    box-shadow: var(--shadow);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo img { height: 72px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all var(--transition);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250, 89, 100, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(252, 138, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.hero-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 20px;
}
.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}
.hero-incentive {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--coral);
    font-weight: 600;
}
.hero-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-img {
    width: 100%;
    max-width: 420px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.step {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.step:hover {
    background: var(--cream);
}
.step-icon {
    margin-bottom: 16px;
}
.step-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--coral);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== DIFFERENTIATOR ===== */
.differentiator {
    padding: 100px 0;
    background: var(--cream);
}
.diff-banner {
    text-align: center;
    margin-bottom: 60px;
    padding: 48px 32px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 100%);
    border-radius: 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.diff-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.diff-star {
    font-size: 2rem;
    margin-bottom: 12px;
}
.diff-headline {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin: 0 auto;
}
.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.diff-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}
.diff-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.diff-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.diff-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.diff-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    padding: 100px 0;
    background: var(--white);
}
.proof-content { text-align: center; }
.proof-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 48px 0;
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--coral);
    letter-spacing: -0.02em;
}
.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 40px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== WAITLIST ===== */
.waitlist {
    padding: 100px 0 120px;
    background: var(--cream);
    position: relative;
}
.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--orange), var(--coral));
}
.waitlist-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.waitlist-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.waitlist-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
}
.waitlist-form {
    text-align: left;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(250, 89, 100, 0.1);
}
.form-group select {
    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 d='M2 4l4 4 4-4' stroke='%23646464' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 12px;
}
.form-success {
    padding: 40px 20px;
}
.success-icon {
    font-size: 3rem;
    color: var(--coral);
    margin-bottom: 16px;
}
.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-brand img { margin-bottom: 12px; }
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--coral); }

/* ===== SOCIAL ICON STACK ===== */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.2s ease;
    margin-bottom: 0;
}
.social-icons a:hover {
    color: var(--coral);
    transform: translateY(-2px);
}
.social-icons a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Nav social icons — smaller, right-aligned */
.nav-social {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1.5px solid rgba(0,0,0,0.08);
}
.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: var(--text-muted);
    transition: all 0.2s ease;
}
.nav-social a:hover {
    color: var(--coral);
    transform: translateY(-1px);
}
.nav-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Footer social — slightly larger */
.footer-social {
    margin-top: 16px;
}
.footer-social .social-icons a {
    width: 36px;
    height: 36px;
    background: var(--cream);
    border-radius: 10px;
}
.footer-social .social-icons a:hover {
    background: #FEF0F1;
}
.footer-social .social-icons a svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-graphic { order: -1; margin-bottom: 20px; }
    .hero-img { max-width: 280px; }
    .steps { grid-template-columns: 1fr; gap: 24px; }
    .diff-grid { grid-template-columns: 1fr; }
    .proof-stats { flex-direction: column; gap: 32px; }
    .trust-bar { flex-direction: column; align-items: center; gap: 16px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .nav-links { 
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(245, 243, 241, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .nav-social {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        justify-content: center;
        gap: 10px;
    }
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-headline { font-size: 1.75rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .diff-banner { padding: 32px 20px; }
}

/* ===== INNER PAGES ===== */
.page-hero {
    padding: 140px 20px 60px;
    text-align: center;
    background: var(--cream);
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}
.page-hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}
.page-hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}
.container-narrow { max-width: 800px; }

/* ===== CONTACT ===== */
.contact-section { padding: 60px 20px 80px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-form-wrap h2, .contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s;
    resize: vertical;
}
.contact-form textarea:focus {
    outline: none;
    border-color: var(--coral);
}
.social-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.social-link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--white);
    border: 1.5px solid var(--cream-dark);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: border-color 0.2s, transform 0.2s;
}
.social-link-card:hover {
    border-color: var(--coral);
    transform: translateY(-2px);
}
.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}
.contact-email-direct {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--cream-dark);
}
.email-link {
    color: var(--coral);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}
.email-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .social-links-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-section { padding: 40px 20px 80px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1.5px solid var(--cream-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--coral); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    font-family: inherit;
}
.faq-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral);
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}
.faq-toggle {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}
.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}
.faq-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.faq-cta p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===== TEAM ===== */
.team-section { padding: 40px 20px 60px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.team-card {
    background: var(--white);
    border: 1.5px solid var(--cream-dark);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}
.team-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.team-role {
    color: var(--coral);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.team-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 10px;
}
.team-bio:last-child { margin-bottom: 0; }
.team-cta { background: var(--cream); }
.team-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.team-cta p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ===== BLOG ===== */
.blog-section { padding: 40px 20px 80px; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border: 1.5px solid var(--cream-dark);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.blog-card-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.blog-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-card h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card h3 a:hover { color: var(--coral); }
.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.blog-card-link {
    color: var(--coral);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}
.blog-card-link:hover { text-decoration: underline; }
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.blog-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--cream);
    border-radius: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Blog Post */
.blog-post { padding: 40px 20px 80px; }
.blog-post-header { margin-bottom: 40px; }
.blog-post-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}
.blog-post-meta {
    color: var(--text-light);
    font-size: 0.95rem;
}
.blog-post-body {
    max-width: 800px;
    margin: 0 auto;
}
.blog-post-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--text);
}
.blog-post-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 32px 0 12px;
}
.blog-post-body h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 24px 0 8px;
}
.blog-post-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.blog-post-body ul, .blog-post-body ol {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body a { color: var(--coral); }
.blog-post-body blockquote {
    border-left: 4px solid var(--coral);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--cream);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text);
}
.blog-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}
.blog-post-nav a {
    color: var(--coral);
    font-weight: 600;
    text-decoration: none;
}
.blog-post-nav a:hover { text-decoration: underline; }
.blog-post-cta {
    text-align: center;
    margin-top: 60px;
    padding: 48px 32px;
    background: var(--cream);
    border-radius: 16px;
}
.blog-post-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.blog-post-cta p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-post-nav { flex-direction: column; }
}

/* Active nav link */
.nav-links a.active { color: var(--coral); }

/* Team photos */
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid var(--cream-dark);
}

/* Blog card images */
.blog-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    margin-bottom: 16px;
}
.blog-post-hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
    margin-bottom: 32px;
}

/* ============================================
   PRICING PAGE
   ============================================ */

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--coral);
    box-shadow: 0 8px 48px rgba(250, 89, 100, 0.15);
    transform: translateY(-8px);
}

.pricing-card-featured:hover {
    box-shadow: 0 12px 56px rgba(250, 89, 100, 0.22);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 28px;
}

.pricing-tier {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 4px;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.pricing-period {
    font-size: 15px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

.check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--coral);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pricing-note {
    font-size: 12px;
    color: var(--text-light);
    margin: 16px 0 0;
    line-height: 1.5;
}

.pricing-cta {
    display: block;
    text-align: center;
    margin-top: 28px;
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--coral);
    border: 2px solid var(--coral);
}

.btn-outline:hover {
    background: var(--coral);
    color: var(--white);
}

.pricing-rev-share {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-muted);
}

/* The Tonimus Promise */
.promise-section {
    padding: 60px 0 80px;
}
.promise-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 60px 48px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.promise-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 16px;
}
.promise-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.15;
    margin: 0 0 20px;
}
.promise-body {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.why-rev-share-section {
    padding: 0 0 60px;
}
.why-rev-share-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--coral);
    border-radius: 12px;
    padding: 32px 40px;
    max-width: 760px;
    margin: 0 auto;
}
.why-rev-share-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
}
.why-rev-share-body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .pricing-card-featured {
        transform: none;
    }
}
