/* YoungProfit - Stylesheet v1.0 */

:root {
    --green-50: #FFF7F2;
    --green-100: #FFEDD5;
    --green-200: #FED7AA;
    --green-300: #FDBA74;
    --green-400: #FB923C;
    --green-500: #F97316;
    --green-600: #EA580C;
    --green-700: #C2410C;
    --green-800: #9A3412;
    --green-900: #7C2D12;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --yellow: #F59E0B;
    --blue: #3B82F6;
    --purple: #8B5CF6;
    --red: #EF4444;

    --primary: var(--green-600);
    --primary-dark: var(--green-700);
    --primary-light: var(--green-50);

    --font: 'Manrope', -apple-system, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --transition: .2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== LAYOUT ===== */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: 640px; }
.container--wide { max-width: 1280px; }

.section {
    padding: 80px 0;
}
.section--green {
    background: var(--green-50);
}
.section--dark {
    background: var(--gray-900);
    color: #fff;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}
.nav--scrolled {
    box-shadow: var(--shadow-sm);
}
.nav__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--gray-900);
}
.nav__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}
.nav__link:hover, .nav__link.active {
    color: var(--gray-900);
}
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav__toggle span {
    display: block;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: all .2s ease;
    white-space: nowrap;
}
.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(234,88,12,.25);
}
.btn--primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(234,88,12,.35);
    transform: translateY(-1px);
}
.btn--outline {
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    background: #fff;
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn--dark {
    background: var(--gray-900);
    color: #fff;
}
.btn--dark:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 18px 36px; font-size: 18px; }
.btn--full { width: 100%; }
.btn--ghost {
    background: transparent;
    color: var(--primary);
}
.btn--ghost:hover {
    background: var(--green-50);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: clamp(20px, 2.5vw, 24px); }
.text-green { color: var(--primary); }
.text-gray { color: var(--gray-500); }
.text-center { text-align: center; }
.text-sm { font-size: 14px; }
.text-lg { font-size: 18px; line-height: 1.7; }
.text-balance { text-wrap: balance; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--green-100);
    color: var(--green-700);
    letter-spacing: .02em;
    text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234,88,12,.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero__content {
    max-width: 720px;
    position: relative;
    z-index: 1;
}
.hero__badge {
    margin-bottom: 24px;
}
.hero h1 {
    margin-bottom: 24px;
}
.hero__subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero__stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
}
.hero__stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
}
.hero__stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ===== HOW IT WORKS (USP) ===== */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.usp-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.usp-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--green-200);
    transform: translateY(-2px);
}
.usp-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.usp-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.usp-card__text {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== JOURNEY SECTION ===== */
.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.journey-step {
    display: flex;
    gap: 24px;
    position: relative;
}
.journey-step__line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.journey-step__dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.journey-step__connector {
    width: 3px;
    flex: 1;
    min-height: 40px;
    background: var(--gray-200);
}
.journey-step:last-child .journey-step__connector { display: none; }
.journey-step__content {
    padding-bottom: 40px;
}
.journey-step__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.journey-step__desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 8px;
}
.journey-step__result {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 48px auto 0;
}
.pricing-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 2px solid var(--gray-100);
    position: relative;
}
.pricing-card--featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(234,88,12,.12);
}
.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.pricing-card__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-card__price {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
}
.pricing-card__price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-400);
}
.pricing-card__features {
    margin: 24px 0 32px;
    list-style: none;
}
.pricing-card__features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card__features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

/* ===== SOCIAL PROOF ===== */
.quote-section {
    padding: 80px 0;
    text-align: center;
}
.quote {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--gray-800);
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.4;
    font-style: italic;
}
.quote-author {
    font-size: 15px;
    color: var(--gray-500);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--gray-900);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(234,88,12,.15) 0%, transparent 60%);
    pointer-events: none;
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}
.cta-section p {
    color: var(--gray-400);
    margin-bottom: 32px;
    position: relative;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
    background: #fff;
    color: var(--gray-800);
}
.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(234,88,12,.1);
}
.form-input::placeholder {
    color: var(--gray-400);
}
.form-hint {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}
.form-error {
    font-size: 13px;
    color: var(--red);
    margin-top: 4px;
}

/* Auth card */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 40px;
    background: var(--gray-50);
}
.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 40px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.auth-card__title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}
.auth-card__subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 15px;
}

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.alert--error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}
.alert--success {
    background: var(--green-50);
    color: var(--green-800);
    border: 1px solid var(--green-200);
}

/* ===== DASHBOARD ===== */
.dash {
    padding: 100px 0 60px;
    min-height: 100vh;
    background: var(--gray-50);
}
.dash__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.dash__welcome {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 4px;
}
.dash__title {
    font-size: 28px;
    font-weight: 800;
}
.dash__trial-badge {
    padding: 8px 16px;
    border-radius: var(--radius);
    background: #FEF3C7;
    color: #92400E;
    font-size: 13px;
    font-weight: 600;
}

.dash__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Child card */
.child-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.child-card:hover {
    box-shadow: var(--shadow);
}
.child-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.child-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}
.child-card__name {
    font-size: 20px;
    font-weight: 700;
}
.child-card__age {
    font-size: 14px;
    color: var(--gray-400);
}

/* Journey card in dashboard */
.journey-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 12px;
}
.journey-card__title {
    font-weight: 600;
    margin-bottom: 8px;
}
.journey-card__progress {
    display: flex;
    gap: 6px;
}
.journey-card__step-dot {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-200);
}
.journey-card__step-dot--done {
    background: var(--primary);
}
.journey-card__step-dot--active {
    background: var(--yellow);
}

/* Add child / start journey */
.add-card {
    background: #fff;
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    min-height: 200px;
}
.add-card:hover {
    border-color: var(--primary);
    background: var(--green-50);
}
.add-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 12px;
}
.add-card__text {
    font-weight: 600;
    color: var(--gray-600);
}

/* ===== JOURNEY FLOW ===== */
.journey-page {
    padding: 100px 0 60px;
    min-height: 100vh;
    background: var(--gray-50);
}
.journey-page__nav {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.step-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    background: #fff;
    color: var(--gray-400);
    border: 1px solid var(--gray-100);
}
.step-nav-item--active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.step-nav-item--done {
    background: var(--green-50);
    color: var(--primary);
    border-color: var(--green-200);
}
.step-nav-item__number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.step-nav-item--active .step-nav-item__number {
    background: rgba(255,255,255,.25);
}
.step-nav-item--done .step-nav-item__number {
    background: var(--primary);
    color: #fff;
}

/* Journey content area */
.journey-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}
.journey-content__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}
.journey-content__subtitle {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* Suggestive prompts (AI assistent) */
.prompt-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-100);
}
.prompt-section__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.prompt-section__title::before {
    content: 'YP';
}
.prompt-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.prompt-btn {
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    background: var(--green-50);
    color: var(--green-700);
    border: 1px solid var(--green-200);
    transition: var(--transition);
    cursor: pointer;
}
.prompt-btn:hover {
    background: var(--green-100);
    border-color: var(--primary);
}
.prompt-btn--active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* AI response bubble */
.ai-response {
    background: var(--green-50);
    border-radius: var(--radius);
    padding: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    border-left: 3px solid var(--primary);
    margin-top: 16px;
    display: none;
}
.ai-response--visible {
    display: block;
    animation: fadeIn .3s ease;
}
.ai-response__loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
}
.ai-response__loading .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: bounce .6s ease infinite alternate;
}
.ai-response__loading .dot:nth-child(2) { animation-delay: .2s; }
.ai-response__loading .dot:nth-child(3) { animation-delay: .4s; }

/* Calculator tool */
.calc-tool {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}
.calc-tool__row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.calc-tool__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    width: 140px;
    flex-shrink: 0;
}
.calc-tool__input {
    width: 120px;
    padding: 10px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}
.calc-tool__input:focus {
    outline: none;
    border-color: var(--primary);
}
.calc-tool__result {
    padding-top: 16px;
    border-top: 2px solid var(--gray-200);
    margin-top: 16px;
}
.calc-tool__result-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}
.calc-tool__result-label {
    font-size: 14px;
    color: var(--gray-500);
}

/* ===== CERTIFICATE ===== */
.certificate {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}
.certificate::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--green-200);
    border-radius: calc(var(--radius-lg) - 4px);
    pointer-events: none;
}
.certificate__badge {
    font-size: 48px;
    margin-bottom: 16px;
}
.certificate__title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray-400);
    margin-bottom: 8px;
}
.certificate__name {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}
.certificate__text {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.certificate__details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
}
.certificate__detail-label {
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.certificate__detail-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
}
.certificate__code {
    font-size: 13px;
    color: var(--gray-400);
    font-family: monospace;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 30px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer__tagline {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
}
.footer__col h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 16px;
}
.footer__col a {
    display: block;
    font-size: 14px;
    padding: 4px 0;
    transition: var(--transition);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 24px;
    font-size: 13px;
}
.footer .nav__logo { margin-bottom: 0; }
.footer .nav__logo-text { color: #fff; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    to { transform: translateY(-4px); }
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero { padding: 120px 0 60px; }
    .hero__stats { gap: 24px; flex-wrap: wrap; }

    .nav__toggle { display: flex; }
    .nav__links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: var(--shadow);
    }
    .nav__links--open { display: flex; }
    .nav__cta { width: 100%; text-align: center; }

    .usp-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .dash__grid { grid-template-columns: 1fr; }
    .dash__header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .journey-content { padding: 24px; }
    .auth-card { padding: 24px; }
    .certificate { padding: 32px 24px; }
    .certificate__details { flex-direction: column; gap: 16px; }
    .calc-tool__row { flex-direction: column; align-items: flex-start; }
    .calc-tool__label { width: auto; }
    .calc-tool__input { width: 100%; }
}

/* ===== JOURNEY MASCOT ===== */
.journey-layout {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 40px;
    align-items: start;
    margin-top: 32px;
}
.journey-mascot-col {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.mascot-bubble {
    background: var(--gray-900);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    padding: 12px 14px;
    border-radius: 12px 12px 12px 4px;
    width: 100%;
    min-height: 52px;
    transition: opacity .3s ease, transform .3s ease;
    opacity: 0;
    transform: translateY(6px);
}
.mascot-bubble--visible {
    opacity: 1;
    transform: translateY(0);
}
.mascot-bubble__name {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 5px;
}
.journey-mascot-svg {
    width: 100%;
    max-width: 160px;
    display: block;
}
@media (max-width: 768px) {
    .journey-layout {
        grid-template-columns: 1fr;
    }
    .journey-mascot-col {
        display: none;
    }
}
/* Mascot mobile (boven form) */
.journey-mascot-mobile {
    display: none;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 20px;
}
.journey-mascot-mobile img,
.journey-mascot-mobile .yp-mascot-mini {
    width: 52px;
    flex-shrink: 0;
}
.journey-mascot-mobile .mascot-bubble {
    margin: 0;
    opacity: 1;
    transform: none;
    flex: 1;
    border-radius: 4px 12px 12px 12px;
}
@media (max-width: 768px) {
    .journey-mascot-mobile { display: flex; }
}
