/* ============================================================
   JANS.APP - Landing Page Styles
   Design: Warm, elegant, premium – Beige/Braun/Charcoal
   ============================================================ */

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

:root {
    --color-bg: #f6f1ec;
    --color-bg-alt: #ede6df;
    --color-bg-white: #ffffff;
    --color-bg-dark: #2d2926;
    --color-bg-card: #faf7f4;
    --color-primary: #2d2926;
    --color-primary-light: #4a4541;
    --color-accent: #8b7355;
    --color-accent-light: #a89279;
    --color-text: #2d2926;
    --color-text-light: #6b6560;
    --color-text-muted: #9a938c;
    --color-border: #ddd5cc;
    --color-danger: #c0392b;
    --color-danger-bg: #fdf2f0;
    --color-success: #3d7a4a;
    --color-success-bg: #f0f7f1;
    --color-cta: #2d2926;
    --color-cta-hover: #4a4541;
    --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-display: Georgia, 'Times New Roman', serif;
    --max-width: 1200px;
    --section-padding: 80px 24px;
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
.nav {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-display);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-logo-sub {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: var(--color-text-light);
        font-size: 0.88rem;
        font-weight: 500;
        transition: color 0.2s;
    }

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

.nav-cta {
    background: var(--color-cta) !important;
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: background 0.2s !important;
}

    .nav-cta:hover {
        background: var(--color-cta-hover) !important;
    }

/* === heroLanding SECTION === */
.heroLanding {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
}

.heroLanding-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.heroLanding-content {
    padding-top: 20px;
}

.heroLanding-badge {
    display: inline-block;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 8px;
}

.heroLanding h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-primary);
}

    .heroLanding h1 strong {
        font-weight: 700;
    }

.heroLanding-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 520px;
}

.heroLanding-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.heroLanding-right {
    position: relative;
}

.heroLanding-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

    .heroLanding-image-wrapper img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

/* Pricing card overlay on heroLanding image */
.heroLanding-pricing-card {
    position: absolute;
    bottom: -3px;
    right: 171px;
    background: #000000a0;
    color: #fff;
    padding: 28px 24px;
    border-radius: var(--radius);
    width: 320px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.heroLanding-pricing-card:hover {

}

.heroLanding-pricing-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.heroLanding-pricing-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}

.heroLanding-pricing-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 16px 0;
}

.heroLanding-pricing-price {
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.heroLanding-pricing-amount {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.heroLanding-pricing-features {
    list-style: none;
    padding: 0;
}

    .heroLanding-pricing-features li {
        font-size: 0.82rem;
        padding: 5px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        gap: 8px;
    }

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

.pricing-check {
    font-weight: 700;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    background: var(--color-cta);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

    .btn-primary:hover {
        background: var(--color-cta-hover);
        transform: translateY(-1px);
    }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 28px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

    .btn-secondary:hover {
        border-color: var(--color-primary);
        background: rgba(45,41,38,0.04);
    }

/* === BEFORE/AFTER SPLIT VIEW === */
.split-section {
    padding: var(--section-padding);
    background: var(--color-bg);
}

.split-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 8px;
}

    .section-title strong {
        font-weight: 700;
    }

.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.split-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 4px 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.split-before, .split-after {
    padding: 40px 36px;
}

.split-before {
    background: var(--color-danger-bg);
    position: relative;
}

.split-divider {
    background: linear-gradient(180deg, var(--color-danger) 0%, var(--color-danger) 50%, var(--color-success) 50%, var(--color-success) 100%);
    width: 4px;
    position: relative;
}

    .split-divider::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--color-bg-card);
        border: 3px solid var(--color-border);
        z-index: 2;
    }

.split-after {
    background: var(--color-success-bg);
}

.split-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.split-before .split-label {
    background: rgba(192,57,43,0.12);
    color: var(--color-danger);
}

.split-after .split-label {
    background: rgba(61,122,74,0.12);
    color: var(--color-success);
}

.split-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

.split-before .split-title {
    color: var(--color-danger);
}

.split-after .split-title {
    color: var(--color-success);
}

.split-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--color-text-light);
}

.split-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

    .split-list li {
        font-size: 0.85rem;
        color: var(--color-text-light);
        padding: 6px 0;
        padding-left: 22px;
        position: relative;
    }

        .split-list li::before {
            position: absolute;
            left: 0;
            font-weight: 700;
            font-size: 0.9rem;
        }

.split-before .split-list li::before {
    content: '?';
    color: var(--color-danger);
}

.split-after .split-list li::before {
    content: '?';
    color: var(--color-success);
}

/* === STEPS SECTION === */
.steps {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--color-bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .step-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.step-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

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

/* === FEATURES/MODULES SECTION === */
.features {
    padding: var(--section-padding);
    background: var(--color-bg);
    margin-top: 0px !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px 22px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .feature-card:hover {
        border-color: var(--color-accent);
        box-shadow: 0 8px 24px rgba(139,115,85,0.1);
    }

.feature-card-image {
    width: 100%;
    height: 170px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
}

    .feature-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

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

/* === BENEFITS SECTION === */
.benefits {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--color-bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px auto;
}

.benefit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
}

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

/* === PRICING SECTION === */
.pricing {
    padding: var(--section-padding);
    background: var(--color-bg);
}

.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    text-align: center;
}

    .pricing-box h3 {
        font-family: var(--font-display);
        font-size: 1.6rem;
        font-weight: 400;
        color: #fff;
        margin-bottom: 8px;
    }

.pricing-price-display {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin: 16px 0 4px;
}

.pricing-price-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.pricing-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.pricing-features {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

    .pricing-feature .check {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        color: var(--color-accent-light);
        font-size: 0.75rem;
        font-weight: 700;
    }

/* === QUOTE SECTION === */
.quote-section {
    padding: 60px 24px;
    background: var(--color-bg-alt);
    text-align: center;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 12px auto;
    color: var(--color-primary);
}

.quote-author {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* === CTA SECTION === */
.cta {
    padding: 80px 24px;
    background: var(--color-bg-dark) !important;
    color: #fff;
    text-align: center;
}

    .cta h2 {
        font-family: var(--font-display);
        font-size: 2.2rem;
        font-weight: 400;
        margin-bottom: 12px;
    }

    .cta p {
        font-size: 1rem;
        color: rgba(255,255,255,0.7);
        margin-bottom: 32px;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .cta .btn-primary {
        background: #fff;
        color: var(--color-primary);
        font-size: 0.95rem;
        padding: 14px 32px;
    }

        .cta .btn-primary:hover {
            background: var(--color-bg);
        }

/* === FOOTER === */
.footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.6);
    padding: 32px 24px;
    text-align: center;
}

    .footer p {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    .footer a {
        color: var(--color-accent-light);
        text-decoration: none;
    }

        .footer a:hover {
            color: #fff;
        }

/* === IMAGE BREAK === */
.image-break {
    padding: 0;
    line-height: 0;
}

    .image-break img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        filter: brightness(0.8) saturate(0.9);
    }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .heroLanding-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .heroLanding h1 {
        font-size: 2.4rem;
    }

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

    .heroLanding-description {
        max-width: 100%;
    }

    .heroLanding-buttons {
        justify-content: center;
    }

    .heroLanding-right {
        max-width: 600px;
        margin: 0 auto;
    }

    .heroLanding-pricing-card {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }

    .heroLanding-image-wrapper img {
        height: 360px;
    }
}

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

    .split-divider {
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--color-danger) 0%, var(--color-danger) 50%, var(--color-success) 50%, var(--color-success) 100%);
    }

        .split-divider::after {
            display: none;
        }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .heroLanding {
        padding: 40px 16px 50px;
    }

        .heroLanding h1 {
            font-size: 1.7rem;
        }

    .heroLanding-badge {
        font-size: 0.6rem;
    }

    .heroLanding-description {
        font-size: 0.88rem;
    }

    .heroLanding-buttons {
        flex-direction: column;
        align-items: stretch;
    }

        .heroLanding-buttons .btn-primary,
        .heroLanding-buttons .btn-secondary {
            text-align: center;
        }

    .heroLanding-image-wrapper img {
        height: 220px;
    }

    .heroLanding-pricing-card {
        padding: 24px 20px;
        width: 100%;
    }

    .heroLanding-pricing-title {
        font-size: 1.3rem;
    }

    .split-before, .split-after {
        padding: 24px 20px;
    }

    .split-title {
        font-size: 1.15rem;
    }

    .split-text {
        font-size: 0.85rem;
    }

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

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

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

    .pricing-features {
        flex-direction: column;
        align-items: center;
    }

    .pricing-box {
        padding: 28px 20px;
    }

    .pricing-price-display {
        font-size: 1.8rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 0.9rem;
    }

    .image-break img {
        height: 200px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 380px) {
    .heroLanding h1 {
        font-size: 1.4rem;
    }

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

    .step-card {
        padding: 24px 16px;
    }
}
:root:has(.rz-layout) body