:root {
    --primary-base: #059669;
    --primary-hover: #047857;
    --primary-light: #ECFDF5;
    --primary-subtle: #D1FAE5;
    --secondary-base: #0284C7;
    --secondary-hover: #0369A1;
    --secondary-light: #F0F9FF;
    --secondary-subtle: #E0F2FE;
    --accent-base: #10B981;
    --accent-amber: #F59E0B;
    --accent-indigo: #6366F1;
    --accent-emerald-tint: #F0FDF4;
    --bg-page-primary: #F8FAFC;
    --bg-page-secondary: #FFFFFF;
    --bg-surface-elevated: #FFFFFF;
    --bg-surface-muted: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-disabled: #94A3B8;
    --border-subtle: #E2E8F0;
    --border-medium: #CBD5E1;
    --border-highlight: #A7F3D0;
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-page-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--primary-base);
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

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

.text-muted {
    color: var(--text-muted) !important;
}

.btn-app-primary {
    background: var(--primary-base);
    color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-app-primary:hover {
    background: var(--primary-hover);
    color: #FFFFFF;
}

.btn-app-secondary {
    background: var(--accent-emerald-tint);
    color: var(--primary-base);
    border: 1px solid var(--border-highlight);
    border-radius: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.btn-app-secondary:hover {
    background: #DCFCE7;
    color: var(--primary-hover);
}

.btn-app-outline {
    background: #FFFFFF;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    border-radius: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-app-outline:hover {
    background: var(--bg-page-primary);
    border-color: var(--text-disabled);
    color: var(--text-primary);
}

/* ===== header ===== */
.site-header-block {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
    z-index: 1030;
}

.site-header-block .navbar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.site-header-block .site-brand-logo {
    max-width: 44px;
    max-height: 44px;
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-header-block .site-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.site-header-block .site-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #475569;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-header-block .site-nav-link:hover,
.site-header-block .site-nav-link:focus {
    color: #059669;
    background-color: #f0fdf4;
}

.site-header-block .site-btn-primary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    background-color: #059669;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.site-header-block .site-btn-primary:hover,
.site-header-block .site-btn-primary:focus {
    background-color: #047857;
    color: #ffffff;
}

.site-header-block .navbar-toggler {
    border: 1px solid #cbd5e1;
    padding: 0.4rem 0.65rem;
    border-radius: 0.5rem;
}

.site-header-block .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.25);
    outline: none;
}

@media (max-width: 991.98px) {
    .site-header-block #mainNavbarContent {
        background-color: #ffffff;
        padding: 1.25rem 0.5rem 0.75rem;
        border-top: 1px solid #f1f5f9;
        margin-top: 0.75rem;
    }

    .site-header-block .site-nav-link {
        padding: 0.65rem 0.75rem !important;
        font-size: 0.95rem;
    }

    .site-header-block .site-header-actions {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid #f1f5f9;
    }

    .site-header-block .site-btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* ===== hero ===== */
.moneytree-hero-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 60%, #F0FDFA 100%);
    min-height: 580px;
}

.moneytree-hero-section .moneytree-hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.moneytree-hero-section .moneytree-shape-circle-1 {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 70%);
}

.moneytree-hero-section .moneytree-shape-circle-2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, rgba(2, 132, 199, 0) 70%);
}

.moneytree-hero-section .moneytree-shape-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
}

.moneytree-hero-section .moneytree-badge-pill {
    display: inline-flex;
    align-items: center;
    background-color: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50rem;
}

.moneytree-hero-section .moneytree-hero-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.moneytree-hero-section .moneytree-text-gradient {
    background: linear-gradient(135deg, #059669 0%, #0284C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.moneytree-hero-section .moneytree-hero-desc {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 540px;
}

.moneytree-hero-section .moneytree-form-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06);
}

.moneytree-hero-section .moneytree-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748B;
}

.moneytree-hero-section .moneytree-input {
    background-color: #F8FAFC;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    height: 50px;
}

.moneytree-hero-section .moneytree-input::placeholder {
    color: #64748B;
    opacity: 1;
}

.moneytree-hero-section .moneytree-input:focus {
    background-color: #FFFFFF;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
    color: #0F172A;
}

.moneytree-hero-section .moneytree-btn-primary {
    background-color: #059669;
    color: #FFFFFF;
    border: 1px solid #059669;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.75rem;
    height: 50px;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.moneytree-hero-section .moneytree-btn-primary:hover {
    background-color: #047857;
    border-color: #047857;
    color: #FFFFFF;
}

.moneytree-hero-section .moneytree-form-helper {
    color: #64748B;
    font-size: 0.8rem;
    line-height: 1.4;
}

.moneytree-hero-section .moneytree-metric-number {
    color: #0F172A;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
}

.moneytree-hero-section .moneytree-metric-label {
    color: #64748B;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.moneytree-hero-section .moneytree-visual-canvas {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 1.5rem 0.5rem;
}

.moneytree-hero-section .moneytree-dashboard-mockup {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
    position: relative;
    z-index: 2;
}

.moneytree-hero-section .moneytree-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #10B981;
}

.moneytree-hero-section .moneytree-mockup-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A;
}

.moneytree-hero-section .moneytree-badge-status {
    background-color: #F0FDF4;
    color: #059669;
    border: 1px solid #A7F3D0;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50rem;
}

.moneytree-hero-section .moneytree-balance-box {
    background: linear-gradient(135deg, #F0FDFA 0%, #ECFDF5 100%);
    border: 1px solid #A7F3D0;
    border-radius: 1rem;
    padding: 1.25rem;
}

.moneytree-hero-section .moneytree-balance-label {
    color: #475569;
    font-size: 0.8rem;
    font-weight: 500;
}

.moneytree-hero-section .moneytree-balance-value {
    color: #0F172A;
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.moneytree-hero-section .moneytree-balance-diff {
    color: #059669;
    font-size: 0.825rem;
    font-weight: 600;
}

.moneytree-hero-section .moneytree-bar-group {
    font-size: 0.825rem;
}

.moneytree-hero-section .moneytree-bar-label {
    color: #475569;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.moneytree-hero-section .moneytree-progress {
    height: 8px;
    background-color: #F1F5F9;
    border-radius: 4px;
}

.moneytree-hero-section .moneytree-progress-fill-1 {
    background-color: #059669;
}

.moneytree-hero-section .moneytree-progress-fill-2 {
    background-color: #0284C7;
}

.moneytree-hero-section .moneytree-progress-fill-3 {
    background-color: #F59E0B;
}

.moneytree-hero-section .moneytree-bar-value {
    color: #64748B;
    font-size: 0.75rem;
    text-align: right;
    margin-top: 0.15rem;
}

.moneytree-hero-section .moneytree-mockup-footer {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.moneytree-hero-section .moneytree-footer-notice {
    color: #0F172A;
    font-size: 0.75rem;
    font-weight: 600;
}

.moneytree-hero-section .moneytree-footer-tag {
    color: #059669;
    font-size: 0.75rem;
    font-weight: 600;
}

.moneytree-hero-section .moneytree-floating-card {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 0.875rem;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
}

.moneytree-hero-section .moneytree-card-top {
    top: -22px;
    right: -10px;
}

.moneytree-hero-section .moneytree-card-bottom {
    bottom: -22px;
    left: -10px;
}

.moneytree-hero-section .moneytree-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.moneytree-hero-section .bg-emerald-light {
    background-color: #ECFDF5;
}

.moneytree-hero-section .bg-cyan-light {
    background-color: #F0F9FF;
}

.moneytree-hero-section .moneytree-float-label {
    color: #64748B;
    font-size: 0.7rem;
    font-weight: 500;
}

.moneytree-hero-section .moneytree-float-val {
    color: #0F172A;
    font-size: 0.85rem;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .moneytree-hero-section .moneytree-hero-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .moneytree-hero-section .moneytree-hero-desc {
        font-size: 0.95rem;
    }

    .moneytree-hero-section .moneytree-card-top {
        top: -15px;
        right: 0;
    }

    .moneytree-hero-section .moneytree-card-bottom {
        bottom: -15px;
        left: 0;
    }

    .moneytree-hero-section .moneytree-floating-card {
        padding: 0.5rem 0.75rem;
    }
}

/* ===== features-grid ===== */
.features-grid-section {
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.features-grid-section .features-grid-badge {
    background-color: #ECFDF5;
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50rem;
    border: 1px solid #A7F3D0;
    letter-spacing: -0.01em;
}

.features-grid-section .features-grid-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.features-grid-section .features-grid-lead {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.features-grid-section .features-grid-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.features-grid-section .features-grid-card:hover {
    border-color: #A7F3D0;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
}

.features-grid-section .features-grid-media {
    display: block;
    width: 100%;
    height: 200px;
    background-color: #F1F5F9;
    overflow: hidden;
    position: relative;
}

.features-grid-section .features-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.features-grid-section .features-grid-card:hover .features-grid-img {
    transform: scale(1.03);
}

.features-grid-section .features-grid-body {
    padding: 1.5rem;
}

.features-grid-section .features-grid-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background-color: #ECFDF5;
    color: #059669;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid #D1FAE5;
}

.features-grid-section .features-grid-item-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0F172A;
}

.features-grid-section .features-grid-item-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.features-grid-section .features-grid-item-link:hover {
    color: #059669;
}

.features-grid-section .features-grid-item-desc {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.features-grid-section .features-grid-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #F0FDF4;
    color: #059669;
    border: 1px solid #A7F3D0;
    border-radius: 0.75rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.features-grid-section .features-grid-btn:hover {
    background-color: #059669;
    color: #FFFFFF;
    border-color: #059669;
}

@media (max-width: 767.98px) {
    .features-grid-section .features-grid-title {
        font-size: 1.625rem;
        hyphens: auto;
    }

    .features-grid-section .features-grid-item-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .features-grid-section .features-grid-media {
        height: 180px;
    }

    .features-grid-section .features-grid-body {
        padding: 1.25rem;
    }
}

/* ===== common-mistakes ===== */
.common-mistakes-block {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.common-mistakes-block__badge {
    display: inline-flex;
    align-items: center;
    background-color: #ECFDF5;
    border: 1px solid #A7F3D0;
    padding: 0.35rem 0.85rem;
    border-radius: 50rem;
}

.common-mistakes-block__badge .badge-text {
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
}

.common-mistakes-block__title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.common-mistakes-block__subtitle {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.common-mistakes-block__tabs {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

.common-mistakes-block__tab-btn {
    background: transparent;
    border: none;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.common-mistakes-block__tab-btn:hover {
    color: #059669;
    background-color: #F0FDF4;
}

.common-mistakes-block__tab-btn.active {
    background-color: #059669;
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(5, 150, 105, 0.2);
}

.common-mistakes-block__card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.common-mistakes-block__card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
}

.common-mistakes-block__tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
}

.common-mistakes-block__tag.tag-danger {
    background-color: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

.common-mistakes-block__loss-label {
    font-size: 0.8125rem;
    color: #64748B;
}

.common-mistakes-block__loss-label strong {
    color: #DC2626;
    font-weight: 700;
}

.common-mistakes-block__card-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.common-mistakes-block__card-desc {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.6;
}

.common-mistakes-block__solution-box {
    background-color: #F0FDFA;
    border: 1px solid #A7F3D0;
    border-radius: 0.75rem;
}

.common-mistakes-block__solution-icon {
    color: #059669;
    font-size: 1rem;
}

.common-mistakes-block__solution-title {
    color: #065F46;
    font-size: 0.875rem;
    font-weight: 700;
}

.common-mistakes-block__solution-text {
    color: #047857;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.common-mistakes-block__border-light {
    border-color: #D1FAE5 !important;
}

.common-mistakes-block__card-link {
    color: #059669;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.common-mistakes-block__card-link:hover {
    color: #047857;
    text-decoration: underline;
}

.common-mistakes-block__banner {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
    border: 1px solid #A7F3D0;
    border-radius: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.06);
}

.common-mistakes-block__banner-icon {
    color: #059669;
    font-size: 1.1rem;
}

.common-mistakes-block__banner-tag {
    color: #059669;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.common-mistakes-block__banner-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
}

.common-mistakes-block__banner-desc {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.common-mistakes-block__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #059669;
    color: #FFFFFF;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    border: 1px solid transparent;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    transition: background-color 0.2s ease;
}

.common-mistakes-block__cta-btn:hover {
    background-color: #047857;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .common-mistakes-block__title {
        font-size: 1.45rem;
        hyphens: auto;
    }

    .common-mistakes-block__subtitle {
        font-size: 0.875rem;
    }

    .common-mistakes-block__card-title {
        font-size: 1.05rem;
    }

    .common-mistakes-block__banner-title {
        font-size: 1.15rem;
    }

    .common-mistakes-block__tabs {
        width: 100%;
    }

    .common-mistakes-block__tab-btn {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
        padding: 0.4rem 0.5rem;
        font-size: 0.8125rem;
    }
}

/* ===== objection-handling ===== */
.moneytree-objections {
    background-color: #F8FAFC;
    position: relative;
}

.moneytree-objections .moneytree-objections__badge {
    display: inline-flex;
    align-items: center;
    background-color: #ECFDF5;
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    border: 1px solid #A7F3D0;
}

.moneytree-objections .moneytree-objections__title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.moneytree-objections .moneytree-objections__subtitle {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.moneytree-objections .moneytree-objections__card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.moneytree-objections .moneytree-objections__card:hover {
    border-color: #A7F3D0;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
}

.moneytree-objections .moneytree-objections__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background-color: #ECFDF5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.moneytree-objections .moneytree-objections__card-title {
    color: #0F172A;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
}

.moneytree-objections .moneytree-objections__card-desc {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.6;
}

.moneytree-objections .moneytree-objections__accordion-container {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06);
}

.moneytree-objections .moneytree-objections__item {
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #F8FAFC;
    transition: border-color 0.2s ease;
}

.moneytree-objections .moneytree-objections__item.is-active {
    border-color: #A7F3D0;
    background-color: #FFFFFF;
}

.moneytree-objections .moneytree-objections__question-btn {
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    cursor: pointer;
}

.moneytree-objections .moneytree-objections__question-btn:focus {
    outline: 2px solid #059669;
    outline-offset: -2px;
}

.moneytree-objections .moneytree-objections__q-prefix {
    color: #059669;
    font-size: 1.125rem;
}

.moneytree-objections .moneytree-objections__q-text {
    color: #0F172A;
}

.moneytree-objections .moneytree-objections__chevron {
    color: #64748B;
    transition: transform 0.2s ease;
    font-size: 0.875rem;
}

.moneytree-objections .moneytree-objections__item.is-active .moneytree-objections__chevron {
    transform: rotate(180deg);
    color: #059669;
}

.moneytree-objections .moneytree-objections__answer-panel {
    display: none;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.moneytree-objections .moneytree-objections__item.is-active .moneytree-objections__answer-panel {
    display: block;
}

.moneytree-objections .moneytree-objections__answer-content {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
    border-top: 1px solid #F1F5F9;
    padding-top: 1rem;
}

.moneytree-objections .moneytree-objections__cta-box {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDFA 100%);
    border: 1px solid #A7F3D0;
    border-radius: 1rem;
    box-shadow: 0 2px 4px 0 rgba(15, 23, 42, 0.04);
}

.moneytree-objections .moneytree-objections__cta-title {
    color: #0F172A;
    font-size: 1.25rem;
    font-weight: 700;
}

.moneytree-objections .moneytree-objections__cta-text {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.moneytree-objections .moneytree-objections__btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #059669;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    transition: background-color 0.2s ease;
    min-height: 48px;
}

.moneytree-objections .moneytree-objections__btn-primary:hover {
    background-color: #047857;
    color: #FFFFFF;
}

.moneytree-objections .moneytree-objections__btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    color: #0F172A;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #CBD5E1;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    min-height: 48px;
}

.moneytree-objections .moneytree-objections__btn-outline:hover {
    background-color: #F8FAFC;
    border-color: #94A3B8;
    color: #0F172A;
}

@media (max-width: 767.98px) {
    .moneytree-objections .moneytree-objections__title {
        font-size: 16px;
        hyphens: auto;
    }

    .moneytree-objections .moneytree-objections__card-title {
        font-size: 14px;
        hyphens: auto;
    }

    .moneytree-objections .moneytree-objections__cta-title {
        font-size: 14px;
        hyphens: auto;
    }

    .moneytree-objections .moneytree-objections__question-btn {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .moneytree-objections .moneytree-objections__answer-panel {
        padding: 0 1rem 1rem 1rem;
    }

    .moneytree-objections .moneytree-objections__accordion-container {
        padding: 1rem;
    }

    .moneytree-objections .moneytree-objections__card {
        padding: 1.25rem;
    }
}

/* ===== case-study ===== */
.moneytree-case-study {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.moneytree-case-study__badge {
    background-color: #ECFDF5;
    color: #059669;
    border: 1px solid #A7F3D0;
    padding: 0.35rem 0.85rem;
    border-radius: 50rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.moneytree-case-study__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.25;
}

.moneytree-case-study__lead {
    font-size: 1rem;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.moneytree-case-study__card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.moneytree-case-study__profile-box {
    background-color: #F8FAFC;
    border-right: 1px solid #E2E8F0;
}

.moneytree-case-study__avatar {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #A7F3D0;
}

.moneytree-case-study__user-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
}

.moneytree-case-study__user-role {
    font-size: 0.8125rem;
    color: #64748B;
}

.moneytree-case-study__quote-box {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
}

.moneytree-case-study__quote-icon {
    color: #059669;
    font-size: 1.125rem;
}

.moneytree-case-study__quote-text {
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.6;
}

.moneytree-case-study__label {
    font-size: 0.8125rem;
    color: #64748B;
}

.moneytree-case-study__value {
    font-size: 0.8125rem;
    color: #0F172A;
    font-weight: 600;
}

.moneytree-case-study__step-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
}

.moneytree-case-study__step-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.moneytree-case-study__step-num {
    background-color: #ECFDF5;
    color: #059669;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 0.375rem;
}

.moneytree-case-study__step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0F172A;
}

.moneytree-case-study__list {
    list-style: none;
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.6;
}

.moneytree-case-study__list li {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: flex-start;
}

.moneytree-case-study__list li i {
    margin-top: 0.2rem;
}

.moneytree-case-study__interactive-area {
    background-color: #F0FDFA;
    border: 1px solid #A7F3D0;
    border-radius: 1rem;
}

.moneytree-case-study__metrics-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0F172A;
}

.moneytree-case-study__tab-group {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 0.5rem;
    padding: 0.2rem;
}

.moneytree-case-study__tab-btn {
    border: none;
    background: transparent;
    color: #475569;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.moneytree-case-study__tab-btn.active {
    background-color: #059669;
    color: #FFFFFF;
}

.moneytree-case-study__metric-item {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
}

.moneytree-case-study__metric-label {
    display: block;
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 0.35rem;
}

.moneytree-case-study__metric-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.moneytree-case-study__metric-sub {
    font-size: 0.75rem;
    color: #64748B;
}

.moneytree-case-study__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.moneytree-case-study__btn--primary {
    background-color: #059669;
    color: #FFFFFF;
    border: 1px solid #059669;
}

.moneytree-case-study__btn--primary:hover {
    background-color: #047857;
    border-color: #047857;
    color: #FFFFFF;
}

.moneytree-case-study__btn--outline {
    background-color: #FFFFFF;
    color: #0F172A;
    border: 1px solid #CBD5E1;
}

.moneytree-case-study__btn--outline:hover {
    background-color: #F8FAFC;
    border-color: #94A3B8;
    color: #0F172A;
}

@media (max-width: 767.98px) {
    .moneytree-case-study__title {
        font-size: 1.25rem;
    }

    .moneytree-case-study__profile-box {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
    }

    .moneytree-case-study__btn {
        width: 100%;
    }
}

/* ===== included-excluded ===== */
.moneytree-service-scope {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.moneytree-service-scope .moneytree-service-scope__badge {
    background-color: #ECFDF5;
    color: #059669;
    border: 1px solid #A7F3D0;
    padding: 0.35rem 0.9rem;
    border-radius: 50rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.moneytree-service-scope .moneytree-service-scope__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.moneytree-service-scope .moneytree-service-scope__subtitle {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.moneytree-service-scope .moneytree-service-scope__toggle-wrapper {
    background-color: #E2E8F0;
    border-radius: 0.75rem;
    gap: 0.25rem;
}

.moneytree-service-scope .moneytree-service-scope__toggle-btn {
    border: none;
    background: transparent;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 0.6rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.moneytree-service-scope .moneytree-service-scope__toggle-btn:hover {
    color: #0F172A;
}

.moneytree-service-scope .moneytree-service-scope__toggle-btn.active {
    background-color: #FFFFFF;
    color: #0F172A;
    box-shadow: 0 2px 4px 0 rgba(15, 23, 42, 0.06);
}

.moneytree-service-scope .moneytree-service-scope__card {
    background-color: #FFFFFF;
    border-radius: 1.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.moneytree-service-scope .moneytree-service-scope__card--included {
    border: 1px solid #A7F3D0;
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.05), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
}

.moneytree-service-scope .moneytree-service-scope__card--excluded {
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04);
}

.moneytree-service-scope .moneytree-service-scope__icon-box {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.moneytree-service-scope .moneytree-service-scope__icon-box--green {
    background-color: #ECFDF5;
    color: #059669;
}

.moneytree-service-scope .moneytree-service-scope__icon-box--gray {
    background-color: #F1F5F9;
    color: #64748B;
}

.moneytree-service-scope .moneytree-service-scope__card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
}

.moneytree-service-scope .moneytree-service-scope__card-desc {
    font-size: 0.8125rem;
    color: #64748B;
    display: block;
}

.moneytree-service-scope .moneytree-service-scope__bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.moneytree-service-scope .moneytree-service-scope__bullet--included {
    background-color: #ECFDF5;
    color: #059669;
}

.moneytree-service-scope .moneytree-service-scope__bullet--excluded {
    background-color: #FEF2F2;
    color: #DC2626;
}

.moneytree-service-scope .moneytree-service-scope__item-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.4;
}

.moneytree-service-scope .moneytree-service-scope__item-text {
    font-size: 0.84375rem;
    color: #475569;
    line-height: 1.5;
}

.moneytree-service-scope .moneytree-service-scope__notice-box {
    background-color: #FFFFFF;
    border: 1px dashed #CBD5E1;
    border-radius: 1rem;
}

.moneytree-service-scope .moneytree-service-scope__notice-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
}

.moneytree-service-scope .moneytree-service-scope__notice-link {
    color: #059669;
    text-decoration: underline;
    font-weight: 600;
}

.moneytree-service-scope .moneytree-service-scope__notice-link:hover {
    color: #047857;
}

@media (max-width: 767.98px) {
    .moneytree-service-scope .moneytree-service-scope__title {
        font-size: 1.375rem;
        hyphens: auto;
    }

    .moneytree-service-scope .moneytree-service-scope__card-title {
        font-size: 1.125rem;
    }

    .moneytree-service-scope .moneytree-service-scope__item-title {
        font-size: 0.875rem;
    }

    .moneytree-service-scope .moneytree-service-scope__item-text {
        font-size: 0.8125rem;
    }
}

/* ===== press-mentions ===== */
.press-mentions-section {
    background-color: #F8FAFC;
    color: #0F172A;
    overflow: hidden;
}

.press-mentions-section .press-badge {
    display: inline-flex;
    align-items: center;
    background-color: #ECFDF5;
    color: #059669;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 50rem;
    border: 1px solid #A7F3D0;
}

.press-mentions-section .press-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.press-mentions-section .press-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.press-mentions-section .press-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.press-mentions-section .press-card:hover {
    border-color: #A7F3D0;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
}

.press-mentions-section .press-media-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.press-mentions-section .press-media-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0284C7;
    background-color: #F0F9FF;
    padding: 0.2rem 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid #E0F2FE;
}

.press-mentions-section .press-media-date {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748B;
}

.press-mentions-section .press-media-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.press-mentions-section .press-quote-icon {
    color: #10B981;
    font-size: 1.25rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.press-mentions-section .press-quote-body {
    margin: 0 0 1.25rem 0;
    flex-grow: 1;
}

.press-mentions-section .press-quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

.press-mentions-section .press-card-footer {
    border-top: 1px solid #F1F5F9;
    padding-top: 1rem;
    margin-top: auto;
}

.press-mentions-section .press-reporter {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.press-mentions-section .reporter-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0F172A;
}

.press-mentions-section .reporter-field {
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

.press-mentions-section .press-stats-banner {
    background: #FFFFFF;
    border: 1px solid #A7F3D0;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.05);
}

.press-mentions-section .banner-pill-label {
    display: inline-flex;
    align-items: center;
    background-color: #ECFDF5;
    color: #047857;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 50rem;
    margin-bottom: 0.5rem;
}

.press-mentions-section .banner-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
}

.press-mentions-section .banner-desc {
    font-size: 0.875rem;
    color: #475569;
}

.press-mentions-section .press-btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #059669;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.press-mentions-section .press-btn-action:hover {
    background-color: #047857;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .press-mentions-section .press-main-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .press-mentions-section .press-media-name {
        font-size: 1.125rem;
    }

    .press-mentions-section .press-btn-action {
        width: 100%;
    }
}

/* ===== solutions-grid ===== */
.solutions-grid-section {
    background-color: #F8FAFC;
    position: relative;
}

.solutions-grid-section .solutions-grid-badge {
    background-color: #ECFDF5;
    border: 1px solid #A7F3D0;
    padding: 0.35rem 0.85rem;
    border-radius: 50rem;
}

.solutions-grid-section .solutions-grid-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
}

.solutions-grid-section .solutions-grid-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.25;
}

.solutions-grid-section .solutions-grid-subtitle {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
}

.solutions-grid-section .solutions-grid-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.solutions-grid-section .solutions-grid-card:hover {
    border-color: #A7F3D0;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
}

.solutions-grid-section .solutions-grid-img-wrap {
    height: 200px;
    background-color: #F1F5F9;
}

.solutions-grid-section .solutions-grid-img {
    height: 200px;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.solutions-grid-section .solutions-grid-card:hover .solutions-grid-img {
    opacity: 0.95;
}

.solutions-grid-section .solutions-grid-price-tag {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 0.5rem;
}

.solutions-grid-section .solutions-grid-category {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #059669;
}

.solutions-grid-section .solutions-grid-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.solutions-grid-section .solutions-grid-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.solutions-grid-section .solutions-grid-link:hover {
    color: #059669;
}

.solutions-grid-section .solutions-grid-card-text {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.solutions-grid-section .solutions-grid-action {
    border-color: #F1F5F9 !important;
}

.solutions-grid-section .solutions-grid-btn {
    background-color: #059669;
    color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.solutions-grid-section .solutions-grid-btn:hover {
    background-color: #047857;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .solutions-grid-section .solutions-grid-title {
        font-size: 1.375rem;
    }

    .solutions-grid-section .solutions-grid-card-title {
        font-size: 1.125rem;
    }

    .solutions-grid-section .solutions-grid-img-wrap,
    .solutions-grid-section .solutions-grid-img {
        height: 180px;
    }
}

/* ===== footer ===== */
.moneytree-footer-section {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.moneytree-footer-section .moneytree-footer-top {
    padding-bottom: 3rem;
}

.moneytree-footer-section .moneytree-footer-brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.moneytree-footer-section .moneytree-footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.moneytree-footer-section .moneytree-footer-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    object-fit: contain;
}

.moneytree-footer-section .moneytree-footer-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.moneytree-footer-section .moneytree-footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

.moneytree-footer-section .moneytree-footer-newsletter-box {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04);
}

.moneytree-footer-section .moneytree-newsletter-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.moneytree-footer-section .moneytree-newsletter-subtitle {
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 0.875rem;
    line-height: 1.4;
}

.moneytree-footer-section .moneytree-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.moneytree-footer-section .moneytree-newsletter-input {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    border-radius: 0.625rem;
    padding: 0.65rem 0.875rem;
    font-size: 0.875rem;
    outline: none;
}

.moneytree-footer-section .moneytree-newsletter-input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
    background-color: #FFFFFF;
    color: #0F172A;
}

.moneytree-footer-section .moneytree-newsletter-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.moneytree-footer-section .moneytree-newsletter-btn {
    background: #059669;
    color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.moneytree-footer-section .moneytree-newsletter-btn:hover {
    background: #047857;
    color: #FFFFFF;
}

.moneytree-footer-section .moneytree-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.moneytree-footer-section .moneytree-footer-nav-list,
.moneytree-footer-section .moneytree-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.moneytree-footer-section .moneytree-footer-link {
    color: #475569;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.moneytree-footer-section .moneytree-footer-link:hover {
    color: #059669;
}

.moneytree-footer-section .moneytree-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
}

.moneytree-footer-section .moneytree-contact-icon {
    color: #059669;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.moneytree-footer-section .moneytree-contact-text {
    color: #475569;
    word-break: break-word;
}

.moneytree-footer-section .moneytree-whatsapp-link {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.moneytree-footer-section .moneytree-whatsapp-link:hover {
    color: #047857;
    text-decoration: underline;
}

.moneytree-footer-section .moneytree-footer-bottom {
    border-top: 1px solid #E2E8F0;
    padding-top: 1.75rem;
}

.moneytree-footer-section .moneytree-copyright-text,
.moneytree-footer-section .moneytree-notice-text {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

@media (min-width: 576px) {
    .moneytree-footer-section .moneytree-input-group {
        flex-direction: row;
    }

    .moneytree-footer-section .moneytree-newsletter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 767.98px) {
    .moneytree-footer-section {
        padding-top: 3.5rem;
    }

    .moneytree-footer-section .moneytree-footer-heading {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .moneytree-footer-section .moneytree-footer-desc,
    .moneytree-footer-section .moneytree-footer-link,
    .moneytree-footer-section .moneytree-contact-item {
        font-size: 0.875rem;
    }

    .moneytree-footer-section .moneytree-notice-text {
        margin-top: 0.5rem;
    }
}

/* ===== PAGE: cookies ===== */
.policy-content { color: #0F172A; background-color: #FFFFFF; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 1rem; line-height: 1.7; word-break: keep-all; hyphens: auto; padding: 2.5rem 1.5rem; border-radius: 1rem; border: 1px solid #E2E8F0; box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06); margin: 0 auto; max-width: 960px; } .policy-content h1, .policy-content h2, .policy-content h3, .policy-content h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #0F172A; line-height: 1.3; margin-top: 2.25rem; margin-bottom: 1rem; } .policy-content h2 { font-size: 1.5rem; border-bottom: 1px solid #E2E8F0; padding-bottom: 0.5rem; } .policy-content h3 { font-size: 1.25rem; color: #0F172A; margin-top: 1.5rem; } .policy-content p { color: #475569; margin-bottom: 1.25rem; line-height: 1.75; } .policy-content ul, .policy-content ol { margin-top: 0.5rem; margin-bottom: 1.5rem; padding-left: 1.5rem; color: #475569; } .policy-content li { margin-bottom: 0.5rem; line-height: 1.6; } .policy-content strong { color: #0F172A; font-weight: 600; } .policy-content a { color: #059669; text-decoration: none; font-weight: 500; transition: color 0.15s ease-in-out; } .policy-content a:hover, .policy-content a:focus { color: #047857; text-decoration: underline; } @media (max-width: 767.98px) { .policy-content { padding: 1.5rem 1rem; border-radius: 0.75rem; font-size: 0.9375rem; } .policy-content h1 { font-size: 18px !important; } .policy-content h2 { font-size: 16px !important; margin-top: 1.75rem; padding-bottom: 0.375rem; } .policy-content h3 { font-size: 14px !important; margin-top: 1.25rem; } .policy-content h4 { font-size: 13px !important; } .policy-content p, .policy-content li { line-height: 1.6; } }

/* ===== PAGE: features ===== */
.features-page-section {
  background-color: #F8FAFC;
  min-height: auto;
}

.features-page-section .features-header-wrapper {
  max-width: 720px;
}

.features-page-section .features-badge {
  background-color: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50rem;
}

.features-page-section .features-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0F172A;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.features-page-section .features-main-subtitle {
  color: #475569;
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.features-page-section .feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.features-page-section .feature-card:hover {
  border-color: #A7F3D0;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
}

.features-page-section .feature-card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #F1F5F9;
  overflow: hidden;
}

.features-page-section .feature-card-img-link {
  width: 100%;
  height: 100%;
}

.features-page-section .feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.features-page-section .feature-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 50rem;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06);
}

.features-page-section .feature-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 0;
}

.features-page-section .feature-title-link {
  color: #0F172A;
  text-decoration: none;
  transition: color 0.2s ease;
}

.features-page-section .feature-title-link:hover {
  color: #059669;
}

.features-page-section .feature-card-desc {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.features-page-section .feature-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #F0FDF4;
  color: #059669;
  border: 1px solid #A7F3D0;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.features-page-section .feature-action-btn:hover {
  background-color: #059669;
  color: #FFFFFF;
  border-color: #059669;
}

@media (max-width: 767.98px) {
  .features-page-section .features-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .features-page-section .feature-card-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .features-page-section .features-main-subtitle {
    font-size: 0.875rem;
  }
  .features-page-section .feature-card-img-wrap {
    height: 180px;
  }
}

/* ===== PAGE: solutions ===== */
.solutions-section{background-color:#F8FAFC;font-family:'Inter',sans-serif}.solutions-section__badge{display:inline-block;padding:0.4rem 1rem;background-color:#ECFDF5;color:#059669;font-weight:600;font-size:0.875rem;border-radius:50rem;border:1px solid #A7F3D0}.solutions-section__title{font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;color:#0F172A;font-size:2rem;line-height:1.25}.solutions-section__subtitle{max-width:680px;font-size:1.05rem;line-height:1.6}.solutions-section__card{background-color:#FFFFFF;border:1px solid #E2E8F0;border-radius:1rem;overflow:hidden;transition:box-shadow 0.2s ease,border-color 0.2s ease}.solutions-section__card:hover{border-color:#CBD5E1;box-shadow:0 10px 20px -3px rgba(15,23,42,0.08)}.solutions-section__card-img-wrap{height:200px;overflow:hidden;background-color:#F1F5F9}.solutions-section__card-img{height:100%;width:100%;object-fit:cover}.solutions-section__tag{display:inline-block;padding:0.25rem 0.65rem;background-color:#F0FDF4;color:#059669;font-size:0.75rem;font-weight:600;border-radius:0.375rem;border:1px solid #A7F3D0}.solutions-section__price{font-weight:700;color:#0F172A;font-size:1rem}.solutions-section__card-title a{color:#0F172A;transition:color 0.2s ease}.solutions-section__card-title a:hover{color:#059669}.solutions-section__card-desc{font-size:0.925rem;line-height:1.5}.solutions-section__btn-outline{background-color:#FFFFFF;color:#0F172A;border:1px solid #CBD5E1;border-radius:0.75rem;font-weight:600;padding:0.6rem 1.25rem;transition:background-color 0.2s ease,border-color 0.2s ease}.solutions-section__btn-outline:hover{background-color:#F8FAFC;border-color:#94A3B8;color:#0F172A}.solutions-section__btn-primary{background-color:#059669;color:#FFFFFF;border:1px solid #059669;border-radius:0.75rem;font-weight:600;padding:0.6rem 1.25rem;box-shadow:0 4px 12px rgba(5,150,105,0.2);transition:background-color 0.2s ease,border-color 0.2s ease}.solutions-section__btn-primary:hover{background-color:#047857;border-color:#047857;color:#FFFFFF}.solutions-section__form-wrapper{background:linear-gradient(135deg,#FFFFFF 0%,#F0FDFA 100%);border:1px solid #E2E8F0;border-radius:1.5rem;box-shadow:0 10px 25px -5px rgba(15,23,42,0.05)}.solutions-section__form-heading{font-family:'Plus Jakarta Sans',sans-serif;color:#0F172A;font-weight:700}.solutions-section__selected-badge{background-color:#ECFDF5;border:1px solid #A7F3D0}.solutions-section__input{background-color:#FFFFFF;border:1px solid #CBD5E1;border-radius:0.6rem;padding:0.7rem 1rem;color:#0F172A;font-size:0.95rem}.solutions-section__input::placeholder{color:#94A3B8;opacity:1}.solutions-section__input:focus{background-color:#FFFFFF;border-color:#059669;box-shadow:0 0 0 3px rgba(5,150,105,0.15);color:#0F172A}@media(max-width:767.98px){.solutions-section__title{font-size:1.5rem}.solutions-section__card-title{font-size:1.1rem}}

/* ===== PAGE: blog ===== */
.blog-section { background-color: #F8FAFC; }
.blog-section .blog-badge { background-color: #ECFDF5; color: #059669; font-size: 0.875rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 50rem; border: 1px solid #A7F3D0; }
.blog-section .blog-main-title { color: #0F172A; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 2.25rem; line-height: 1.3; }
.blog-section .blog-subtitle { max-width: 680px; font-size: 1.05rem; line-height: 1.6; color: #64748B; }
.blog-section .blog-search-box .form-control { border: 1px solid #E2E8F0; border-radius: 0.75rem; background-color: #FFFFFF; color: #0F172A; padding: 0.75rem 1rem 0.75rem 2.75rem; box-shadow: 0 1px 2px 0 rgba(15, 23, 42, 0.04); }
.blog-section .blog-search-box .form-control:focus { border-color: #059669; box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15); outline: none; }
.blog-section .blog-search-box .form-control::placeholder { color: #94A3B8; }
.blog-section .blog-filter-btn { background-color: #FFFFFF; color: #475569; border: 1px solid #CBD5E1; border-radius: 0.75rem; padding: 0.55rem 1.1rem; font-size: 0.9rem; font-weight: 600; transition: all 0.2s ease; }
.blog-section .blog-filter-btn:hover { background-color: #F1F5F9; color: #0F172A; border-color: #94A3B8; }
.blog-section .blog-filter-btn.active { background-color: #059669; color: #FFFFFF; border-color: #059669; box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2); }
.blog-section .blog-card { background-color: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06); transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.blog-section .blog-card:hover { border-color: #A7F3D0; box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08); }
.blog-section .blog-card-img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.3s ease; }
.blog-section .blog-card:hover .blog-card-img { transform: scale(1.03); }
.blog-section .blog-category-tag { background-color: rgba(15, 23, 42, 0.75); color: #FFFFFF; font-size: 0.75rem; font-weight: 600; padding: 0.35rem 0.75rem; border-radius: 50rem; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.blog-section .blog-card-meta { font-size: 0.8125rem; color: #64748B; }
.blog-section .blog-card-title { font-size: 1.25rem; font-weight: 700; line-height: 1.4; }
.blog-section .blog-card-title a { color: #0F172A; transition: color 0.2s ease; }
.blog-section .blog-card-title a:hover { color: #059669; }
.blog-section .blog-card-excerpt { font-size: 0.9375rem; line-height: 1.6; color: #475569; }
.blog-section .blog-card-footer { border-top-color: #F1F5F9 !important; }
.blog-section .blog-read-more-btn { background-color: #F0FDF4; color: #059669; border: 1px solid #A7F3D0; border-radius: 0.5rem; padding: 0.35rem 0.85rem; font-size: 0.85rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; transition: all 0.2s ease; }
.blog-section .blog-read-more-btn:hover { background-color: #DCFCE7; color: #047857; border-color: #059669; }
@media (max-width: 767.98px) { .blog-section .blog-main-title { font-size: 1.125rem; hyphens: auto; } .blog-section .blog-card-title { font-size: 0.875rem; } .blog-section .blog-subtitle { font-size: 0.875rem; } .blog-section .blog-filter-tabs { width: 100%; justify-content: flex-start; } .blog-section .blog-card-img { height: 180px; } }

/* ===== PAGE: contact ===== */
.mtc-contact-page { background-color: #F8FAFC; color: #0F172A; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.mtc-contact-page .mtc-contact-card { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 1rem; padding: 1.75rem 1.25rem; box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06); transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.mtc-contact-page .mtc-contact-card:hover { border-color: #A7F3D0; box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08); }
.mtc-contact-page .mtc-contact-icon { width: 56px; height: 56px; border-radius: 50%; background: #ECFDF5; color: #059669; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; }
.mtc-contact-page .mtc-contact-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 700; color: #0F172A; line-height: 1.3; }
.mtc-contact-page .mtc-contact-card-desc { font-size: 0.875rem; color: #475569; line-height: 1.5; min-height: 42px; }
.mtc-contact-page .mtc-contact-card-link { font-size: 0.95rem; font-weight: 600; color: #059669; text-decoration: none; word-break: break-all; display: inline-block; }
.mtc-contact-page .mtc-contact-card-link:hover { color: #047857; text-decoration: underline; }
.mtc-contact-page .mtc-contact-card-text { font-size: 0.9rem; font-weight: 500; color: #0F172A; word-break: keep-all; }
.mtc-contact-page .mtc-form-wrapper { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 1.25rem; padding: 2.25rem; box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.06); }
.mtc-contact-page .mtc-form-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.75rem; font-weight: 800; color: #0F172A; line-height: 1.25; }
.mtc-contact-page .mtc-form-subtitle { font-size: 0.95rem; color: #475569; line-height: 1.6; }
.mtc-contact-page .mtc-label { font-size: 0.875rem; font-weight: 600; color: #0F172A; margin-bottom: 0.35rem; display: block; }
.mtc-contact-page .mtc-required { color: #DC2626; }
.mtc-contact-page .mtc-input, .mtc-contact-page .mtc-select, .mtc-contact-page .mtc-textarea { background-color: #F8FAFC; border: 1px solid #CBD5E1; color: #0F172A; border-radius: 0.6rem; padding: 0.65rem 0.9rem; font-size: 0.95rem; }
.mtc-contact-page .mtc-input:focus, .mtc-contact-page .mtc-select:focus, .mtc-contact-page .mtc-textarea:focus { background-color: #FFFFFF; border-color: #059669; outline: none; box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15); color: #0F172A; }
.mtc-contact-page .mtc-input::placeholder, .mtc-contact-page .mtc-textarea::placeholder { color: #94A3B8; opacity: 1; }
.mtc-contact-page .mtc-checkbox { border-color: #CBD5E1; cursor: pointer; }
.mtc-contact-page .mtc-checkbox:checked { background-color: #059669; border-color: #059669; }
.mtc-contact-page .mtc-checkbox:focus { box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15); }
.mtc-contact-page .mtc-checkbox-label { font-size: 0.85rem; color: #475569; cursor: pointer; }
.mtc-contact-page .mtc-submit-btn { background: #059669; color: #FFFFFF; font-weight: 600; font-size: 1.05rem; padding: 0.85rem 1.75rem; border-radius: 0.75rem; border: 1px solid transparent; box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2); transition: background-color 0.2s ease, border-color 0.2s ease; }
.mtc-contact-page .mtc-submit-btn:hover { background: #047857; color: #FFFFFF; border-color: transparent; }
.mtc-contact-page .mtc-info-side-panel { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 1.25rem; padding: 1.75rem; box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04); }
.mtc-contact-page .mtc-side-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; color: #0F172A; line-height: 1.35; }
.mtc-contact-page .mtc-guide-list { list-style: none; }
.mtc-contact-page .mtc-guide-num { width: 28px; height: 28px; border-radius: 50%; background: #ECFDF5; color: #059669; font-size: 0.875rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mtc-contact-page .mtc-guide-heading { font-size: 0.95rem; color: #0F172A; margin-bottom: 0.15rem; }
.mtc-contact-page .mtc-guide-desc { font-size: 0.85rem; color: #64748B; line-height: 1.5; }
.mtc-contact-page .mtc-faq-box { background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 1.25rem; padding: 1.75rem; box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04); }
.mtc-contact-page .mtc-faq-item { border: 1px solid #E2E8F0; border-radius: 0.75rem; overflow: hidden; }
.mtc-contact-page .mtc-faq-toggle { background: #F8FAFC; border: none; padding: 0.85rem 1rem; text-align: left; cursor: pointer; color: #0F172A; font-size: 0.9rem; font-weight: 600; line-height: 1.4; transition: background-color 0.2s ease; }
.mtc-contact-page .mtc-faq-toggle:hover { background: #F1F5F9; }
.mtc-contact-page .mtc-faq-arrow { color: #64748B; font-size: 0.75rem; transition: transform 0.2s ease; margin-left: 0.5rem; flex-shrink: 0; }
.mtc-contact-page .mtc-faq-toggle.is-active .mtc-faq-arrow { transform: rotate(180deg); color: #059669; }
.mtc-contact-page .mtc-faq-content { display: none; padding: 0.85rem 1rem; font-size: 0.85rem; color: #475569; background: #FFFFFF; border-top: 1px solid #E2E8F0; line-height: 1.55; }
.mtc-contact-page .mtc-faq-content.is-open { display: block; }
@media (max-width: 767.98px) { .mtc-contact-page .mtc-form-title { font-size: 1.35rem; } .mtc-contact-page .mtc-contact-card-title { font-size: 1.1rem; } .mtc-contact-page .mtc-side-title { font-size: 1.15rem; } .mtc-contact-page .mtc-form-wrapper { padding: 1.5rem 1.25rem; } .mtc-contact-page .mtc-info-side-panel, .mtc-contact-page .mtc-faq-box { padding: 1.25rem 1rem; } }

.review-card.review-main {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    margin-bottom: 1.25rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.review-card .review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.review-card .review-user-group {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.review-card .review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ECFDF5;
    flex-shrink: 0;
}

.review-card .review-user-meta {
    display: flex;
    flex-direction: column;
}

.review-card .review-user-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-card .review-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.3;
}

.review-card .review-badge-verified {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
    background-color: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 50rem;
    padding: 0.15rem 0.55rem;
}

.review-card .review-timestamp {
    font-size: 0.8125rem;
    color: #64748B;
    margin-top: 0.2rem;
}

.review-card .review-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #F59E0B;
    font-size: 0.875rem;
    background: #FEF3C7;
    padding: 0.35rem 0.65rem;
    border-radius: 0.5rem;
}

.review-card .review-rating-score {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #78350F;
    margin-left: 0.25rem;
}

.review-card .review-body {
    margin-bottom: 1.25rem;
}

.review-card .review-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.review-card .review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.review-card .review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #F1F5F9;
}

.review-card .review-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-card .review-action-btn {
    background: transparent;
    border: 1px solid #E2E8F0;
    border-radius: 0.5rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.review-card .review-action-btn:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    color: #0F172A;
}

.review-card .review-count {
    font-weight: 700;
    margin-left: 0.25rem;
    color: #059669;
}

.review-card .review-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0284C7;
    background-color: #F0F9FF;
    border: 1px solid #BAE6FD;
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    display: inline-flex;
    align-items: center;
}

.review-card.review-reply {
    display: flex;
    gap: 1rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-left: 3px solid #059669;
    border-radius: 0.875rem;
    padding: 1.5rem;
    margin-left: 2rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.review-card .review-reply-indicator {
    color: #059669;
    font-size: 1.125rem;
    padding-top: 0.25rem;
    flex-shrink: 0;
}

.review-card .review-reply-content {
    flex: 1;
    min-width: 0;
}

.review-card .review-avatar.review-avatar-team {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #A7F3D0;
    flex-shrink: 0;
}

.review-card .review-badge-official {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #059669;
    border-radius: 50rem;
    padding: 0.15rem 0.55rem;
}

.review-card .review-badge-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
    background-color: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 576px) {
    .review-card.review-reply {
        margin-left: 0.75rem;
        padding: 1.25rem;
        gap: 0.5rem;
    }

    .review-card.review-main {
        padding: 1.25rem;
    }
}


/* ===== PAGE TEMPLATE: features-list ===== */
body.detail-features-page {
    background-color: #F8FAFC;
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.site-header-block {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
    z-index: 1030;
}

.site-header-block .navbar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.site-header-block .site-brand-logo {
    max-width: 44px;
    max-height: 44px;
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-header-block .site-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.site-header-block .site-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #475569;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-header-block .site-nav-link:hover,
.site-header-block .site-nav-link:focus,
.site-header-block .site-nav-link.active {
    color: #059669;
    background-color: #f0fdf4;
}

.site-header-block .site-btn-primary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    background-color: #059669;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.site-header-block .site-btn-primary:hover,
.site-header-block .site-btn-primary:focus {
    background-color: #047857;
    color: #ffffff;
}

.site-header-block .navbar-toggler {
    border: 1px solid #cbd5e1;
    padding: 0.4rem 0.65rem;
    border-radius: 0.5rem;
}

.site-header-block .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.25);
    outline: none;
}

@media (max-width: 991.98px) {
    .site-header-block #mainNavbarContent {
        background-color: #ffffff;
        padding: 1.25rem 0.5rem 0.75rem;
        border-top: 1px solid #f1f5f9;
        margin-top: 0.75rem;
    }

    .site-header-block .site-nav-link {
        padding: 0.65rem 0.75rem !important;
        font-size: 0.95rem;
    }

    .site-header-block .site-header-actions {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid #f1f5f9;
    }

    .site-header-block .site-btn-primary {
        width: 100%;
        text-align: center;
    }
}

.moneytree-detail-hero-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border-bottom: 1px solid #E2E8F0;
}

.moneytree-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #94A3B8;
}

.moneytree-breadcrumb-link {
    color: #059669;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.moneytree-breadcrumb-link:hover {
    color: #047857;
    text-decoration: underline;
}

.moneytree-breadcrumb .breadcrumb-item.active {
    color: #64748B;
    font-size: 0.875rem;
}

.moneytree-badge-pill {
    display: inline-flex;
    align-items: center;
    background-color: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 50rem;
}

.moneytree-version-tag {
    font-size: 0.8125rem;
    color: #0284C7;
    background-color: #F0F9FF;
    border: 1px solid #BAE6FD;
    padding: 0.3rem 0.75rem;
    border-radius: 50rem;
    font-weight: 600;
}

.moneytree-detail-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.moneytree-detail-subtitle {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.moneytree-meta-stat-item {
    display: flex;
    flex-direction: column;
}

.moneytree-meta-label {
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

.moneytree-meta-val {
    font-size: 0.875rem;
    color: #0F172A;
    font-weight: 700;
}

.moneytree-detail-banner-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 0.75rem;
}

.moneytree-detail-hero-img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
}

.moneytree-section-heading {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.moneytree-sub-heading {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
}

.moneytree-lead-paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
}

.moneytree-highlight-box {
    background: #F0FDFA;
    border: 1px solid #A7F3D0;
}

.moneytree-highlight-title {
    color: #065F46;
    font-size: 1.125rem;
    font-weight: 700;
}

.moneytree-highlight-text {
    color: #047857;
    font-size: 0.95rem;
    line-height: 1.6;
}

.moneytree-styled-list {
    list-style-type: square;
    padding-left: 1.25rem;
    color: #334155;
}

.moneytree-styled-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.moneytree-spec-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.moneytree-spec-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
}

.moneytree-spec-desc {
    font-size: 0.875rem;
    color: #64748B;
}

.moneytree-step-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.moneytree-step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ECFDF5;
    color: #059669;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.moneytree-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
}

.moneytree-step-desc {
    font-size: 0.875rem;
    color: #64748B;
    line-height: 1.5;
}

.moneytree-share-btn {
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #475569;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.moneytree-share-btn:hover {
    background: #059669;
    color: #FFFFFF;
    border-color: #059669;
}

.moneytree-accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.moneytree-accordion-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #0F172A;
    font-size: 0.95rem;
    background-color: #FFFFFF;
    padding: 1rem 1.25rem;
}

.moneytree-accordion-btn:not(.collapsed) {
    color: #059669;
    background-color: #F0FDF4;
    box-shadow: none;
}

.moneytree-accordion-btn:focus {
    box-shadow: none;
    border-color: #A7F3D0;
}

.moneytree-accordion-body {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    background-color: #FFFFFF;
}

.review-card {
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.25rem;
    background: #FFFFFF;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.875rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-user-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-author-name {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
}

.review-badge-verified {
    font-size: 0.75rem;
    color: #059669;
    background: #ECFDF5;
    padding: 0.15rem 0.5rem;
    border-radius: 50rem;
    font-weight: 600;
}

.review-badge-official {
    font-size: 0.75rem;
    color: #0284C7;
    background: #F0F9FF;
    padding: 0.15rem 0.5rem;
    border-radius: 50rem;
    font-weight: 600;
}

.review-timestamp {
    font-size: 0.75rem;
    color: #94A3B8;
}

.review-rating {
    color: #F59E0B;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.review-rating-score {
    color: #0F172A;
    font-weight: 700;
    margin-left: 0.35rem;
}

.review-headline {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.review-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
    padding-top: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-actions {
    display: flex;
    gap: 0.5rem;
}

.review-action-btn {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 0.5rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.review-action-btn.active {
    background: #ECFDF5;
    border-color: #A7F3D0;
    color: #059669;
    font-weight: 600;
}

.review-tag,
.review-badge-status {
    font-size: 0.75rem;
    color: #64748B;
    background: #F1F5F9;
    padding: 0.25rem 0.6rem;
    border-radius: 0.375rem;
}

.review-reply {
    margin-left: 1.5rem;
    background: #F8FAFC;
    position: relative;
    display: flex;
    gap: 0.75rem;
}

.review-reply-indicator {
    color: #94A3B8;
    font-size: 1rem;
    padding-top: 0.5rem;
}

.review-reply-content {
    flex-grow: 1;
}

.moneytree-review-counter-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #059669;
    background: #ECFDF5;
    padding: 0.35rem 0.75rem;
    border-radius: 50rem;
}

.moneytree-form-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
}

.moneytree-form-sub-label {
    font-size: 0.8125rem;
    color: #64748B;
}

.moneytree-input-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.25rem;
}

.moneytree-input-control,
.moneytree-textarea-control {
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    font-size: 0.875rem;
    border-radius: 0.625rem;
    padding: 0.6rem 0.875rem;
}

.moneytree-input-control:focus,
.moneytree-textarea-control:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
    background: #FFFFFF;
    color: #0F172A;
}

.moneytree-star-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 1.25rem;
    color: #CBD5E1;
    cursor: pointer;
    transition: color 0.15s ease;
}

.moneytree-star-btn.active {
    color: #F59E0B;
}

.moneytree-rating-text-val {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0F172A;
}

.moneytree-btn-submit {
    background: #059669;
    color: #FFFFFF;
    border: 1px solid #059669;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.5rem;
    border-radius: 0.625rem;
    transition: background 0.15s ease;
}

.moneytree-btn-submit:hover {
    background: #047857;
    color: #FFFFFF;
}

.moneytree-status-message {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    padding: 0.75rem 1rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.moneytree-sidebar-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
}

.moneytree-feature-nav-link {
    color: #334155;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    transition: all 0.15s ease;
}

.moneytree-feature-nav-link:hover {
    background: #ECFDF5;
    color: #059669;
    border-color: #A7F3D0;
}

.moneytree-sidebar-cta {
    background: linear-gradient(135deg, #F0FDFA 0%, #ECFDF5 100%);
    border: 1px solid #A7F3D0;
}

.moneytree-cta-icon-circle {
    width: 48px;
    height: 48px;
    background: #059669;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.moneytree-cta-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
}

.moneytree-cta-desc {
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.5;
}

.moneytree-btn-cta {
    background: #059669;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
    border-radius: 0.625rem;
    border: 1px solid transparent;
}

.moneytree-btn-cta:hover {
    background: #047857;
    color: #FFFFFF;
}

.moneytree-footer-section {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.moneytree-footer-section .moneytree-footer-top {
    padding-bottom: 3rem;
}

.moneytree-footer-section .moneytree-footer-brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.moneytree-footer-section .moneytree-footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.moneytree-footer-section .moneytree-footer-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    object-fit: contain;
}

.moneytree-footer-section .moneytree-footer-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.moneytree-footer-section .moneytree-footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

.moneytree-footer-section .moneytree-footer-newsletter-box {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04);
}

.moneytree-footer-section .moneytree-newsletter-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.moneytree-footer-section .moneytree-newsletter-subtitle {
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 0.875rem;
    line-height: 1.4;
}

.moneytree-footer-section .moneytree-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.moneytree-footer-section .moneytree-newsletter-input {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    border-radius: 0.625rem;
    padding: 0.65rem 0.875rem;
    font-size: 0.875rem;
    outline: none;
}

.moneytree-footer-section .moneytree-newsletter-input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
    background-color: #FFFFFF;
    color: #0F172A;
}

.moneytree-footer-section .moneytree-newsletter-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.moneytree-footer-section .moneytree-newsletter-btn {
    background: #059669;
    color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.moneytree-footer-section .moneytree-newsletter-btn:hover {
    background: #047857;
    color: #FFFFFF;
}

.moneytree-footer-section .moneytree-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.moneytree-footer-section .moneytree-footer-nav-list,
.moneytree-footer-section .moneytree-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.moneytree-footer-section .moneytree-footer-link {
    color: #475569;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.moneytree-footer-section .moneytree-footer-link:hover {
    color: #059669;
}

.moneytree-footer-section .moneytree-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
}

.moneytree-footer-section .moneytree-contact-icon {
    color: #059669;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.moneytree-footer-section .moneytree-contact-text {
    color: #475569;
    word-break: break-word;
}

.moneytree-footer-section .moneytree-whatsapp-link {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.moneytree-footer-section .moneytree-whatsapp-link:hover {
    color: #047857;
    text-decoration: underline;
}

.moneytree-footer-section .moneytree-footer-bottom {
    border-top: 1px solid #E2E8F0;
    padding-top: 1.75rem;
}

.moneytree-footer-section .moneytree-copyright-text,
.moneytree-footer-section .moneytree-notice-text {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

@media (min-width: 576px) {
    .moneytree-footer-section .moneytree-input-group {
        flex-direction: row;
    }

    .moneytree-footer-section .moneytree-newsletter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 767.98px) {
    .moneytree-detail-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .moneytree-section-heading {
        font-size: 1rem;
    }

    .moneytree-sub-heading {
        font-size: 0.875rem;
    }

    .review-reply {
        margin-left: 0.5rem;
    }

    .moneytree-footer-section {
        padding-top: 3.5rem;
    }

    .moneytree-footer-section .moneytree-footer-heading {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .moneytree-footer-section .moneytree-footer-desc,
    .moneytree-footer-section .moneytree-footer-link,
    .moneytree-footer-section .moneytree-contact-item {
        font-size: 0.875rem;
    }
}

/* ===== PAGE TEMPLATE: solutions-list ===== */
.site-header-block {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
    z-index: 1030;
}

.site-header-block .navbar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.site-header-block .site-brand-logo {
    max-width: 44px;
    max-height: 44px;
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-header-block .site-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.site-header-block .site-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #475569;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-header-block .site-nav-link:hover,
.site-header-block .site-nav-link:focus {
    color: #059669;
    background-color: #f0fdf4;
}

.site-header-block .site-btn-primary,
.site-btn-primary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    background-color: #059669;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.site-header-block .site-btn-primary:hover,
.site-btn-primary:hover {
    background-color: #047857;
    color: #ffffff;
}

.site-btn-outline {
    background-color: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.site-btn-outline:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.site-btn-secondary {
    background-color: #f0fdf4;
    color: #059669;
    border: 1px solid #a7f3d0;
    border-radius: 0.75rem;
    font-weight: 600;
}

.site-btn-secondary:hover {
    background-color: #dcfce7;
    color: #047857;
}

.detail-page-body {
    background-color: #f8fafc;
    color: #0f172a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.moneytree-hero-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 60%, #F0FDFA 100%);
    min-height: 480px;
}

.moneytree-hero-section .moneytree-hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.moneytree-hero-section .moneytree-shape-circle-1 {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 70%);
}

.moneytree-hero-section .moneytree-shape-circle-2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, rgba(2, 132, 199, 0) 70%);
}

.moneytree-hero-section .moneytree-shape-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
}

.moneytree-hero-section .moneytree-badge-pill {
    display: inline-flex;
    align-items: center;
    background-color: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50rem;
}

.moneytree-hero-section .moneytree-hero-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
}

.moneytree-hero-section .moneytree-hero-desc {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
}

.detail-hero-img {
    border-radius: 1.25rem;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08);
    max-height: 380px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.solution-content-card {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06);
}

.solution-price-badge {
    background-color: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.5rem;
}

.solution-share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.solution-share-btn:hover {
    background-color: #059669;
    color: #ffffff;
}

.detail-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0f172a;
    font-size: 1.5rem;
    line-height: 1.3;
}

.detail-subheading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #0f172a;
    font-size: 1.2rem;
    line-height: 1.35;
}

.detail-paragraph {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.detail-feature-box {
    background-color: #f0fdfa;
    border: 1px solid #a7f3d0;
}

.detail-list {
    padding-left: 1.25rem;
    color: #334155;
    line-height: 1.7;
}

.tab-btn {
    background-color: transparent;
    border: none;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    color: #64748b;
    border-radius: 0.5rem;
    cursor: pointer;
}

.tab-btn.active {
    background-color: #ecfdf5;
    color: #059669;
}

/* Distinct visual styles for solution tabs */
#tab-specs {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #059669;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

#tab-specs .table {
    margin-bottom: 0;
}

#tab-process {
    background: linear-gradient(135deg, #F0F9FF 0%, #EFF6FF 100%);
    border: 1px solid #BAE6FD;
    border-left: 4px solid #0EA5E9;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

#tab-process .detail-process-list {
    counter-reset: process-step;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#tab-process .detail-process-list li {
    counter-increment: process-step;
    position: relative;
    padding-left: 2.75rem;
    margin-bottom: 0.85rem;
}

#tab-process .detail-process-list li::before {
    content: counter(process-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #0EA5E9;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

#tab-faq {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-left: 4px solid #F59E0B;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

#tab-faq .accordion-item {
    background: #FFFFFF;
    border: 1px solid #FDE68A !important;
    border-radius: 0.5rem;
    overflow: hidden;
}

#tab-faq .accordion-button {
    padding: 0.85rem 1rem;
}

#tab-faq .js-accordion-content {
    background: #FEF3C7 !important;
    border-top: 1px solid #FDE68A !important;
}

.form-input-custom {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.form-input-custom:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
    background-color: #ffffff;
    color: #0f172a;
}

.form-input-custom::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.form-select-star-rating {
    color: #F59E0B;
    font-weight: 600;
}

.form-select-star-rating option {
    color: #F59E0B;
}

.sidebar-solution-link {
    background-color: #f8fafc;
    color: #334155;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.sidebar-solution-link:hover {
    background-color: #ecfdf5;
    color: #059669;
    border-color: #a7f3d0;
}

.sidebar-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.review-user-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

.review-badge-verified,
.review-badge-official {
    font-size: 0.75rem;
    color: #059669;
    background-color: #ecfdf5;
    padding: 0.15rem 0.5rem;
    border-radius: 50rem;
}

.review-timestamp {
    font-size: 0.75rem;
    color: #94a3b8;
}

.review-rating {
    color: #f59e0b;
    font-size: 0.85rem;
}

.review-rating-score {
    color: #0f172a;
    font-weight: 700;
    margin-left: 0.25rem;
}

.review-headline {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.review-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.review-action-btn {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.85rem;
    margin-right: 0.75rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.review-action-btn.active {
    color: #059669;
    font-weight: 600;
}

.review-tag,
.review-badge-status {
    font-size: 0.75rem;
    color: #64748b;
}

.review-reply {
    margin-left: 2rem;
    border-left: 3px solid #059669;
    background-color: #f8fafc;
}

.moneytree-footer-section {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.moneytree-footer-section .moneytree-footer-top {
    padding-bottom: 3rem;
}

.moneytree-footer-section .moneytree-footer-brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.moneytree-footer-section .moneytree-footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.moneytree-footer-section .moneytree-footer-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    object-fit: contain;
}

.moneytree-footer-section .moneytree-footer-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.moneytree-footer-section .moneytree-footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

.moneytree-footer-section .moneytree-footer-newsletter-box {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04);
}

.moneytree-footer-section .moneytree-newsletter-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.moneytree-footer-section .moneytree-newsletter-subtitle {
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 0.875rem;
    line-height: 1.4;
}

.moneytree-footer-section .moneytree-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.moneytree-footer-section .moneytree-newsletter-input {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    border-radius: 0.625rem;
    padding: 0.65rem 0.875rem;
    font-size: 0.875rem;
    outline: none;
}

.moneytree-footer-section .moneytree-newsletter-input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
    background-color: #FFFFFF;
    color: #0F172A;
}

.moneytree-footer-section .moneytree-newsletter-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.moneytree-footer-section .moneytree-newsletter-btn {
    background: #059669;
    color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.moneytree-footer-section .moneytree-newsletter-btn:hover {
    background: #047857;
    color: #FFFFFF;
}

.moneytree-footer-section .moneytree-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.moneytree-footer-section .moneytree-footer-nav-list,
.moneytree-footer-section .moneytree-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.moneytree-footer-section .moneytree-footer-link {
    color: #475569;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.moneytree-footer-section .moneytree-footer-link:hover {
    color: #059669;
}

.moneytree-footer-section .moneytree-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
}

.moneytree-footer-section .moneytree-contact-icon {
    color: #059669;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.moneytree-footer-section .moneytree-contact-text {
    color: #475569;
    word-break: break-word;
}

.moneytree-footer-section .moneytree-whatsapp-link {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.moneytree-footer-section .moneytree-whatsapp-link:hover {
    color: #047857;
    text-decoration: underline;
}

.moneytree-footer-section .moneytree-footer-bottom {
    border-top: 1px solid #E2E8F0;
    padding-top: 1.75rem;
}

.moneytree-footer-section .moneytree-copyright-text,
.moneytree-footer-section .moneytree-notice-text {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

@media (min-width: 576px) {
    .moneytree-footer-section .moneytree-input-group {
        flex-direction: row;
    }

    .moneytree-footer-section .moneytree-newsletter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 767.98px) {
    .moneytree-hero-section .moneytree-hero-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .detail-heading {
        font-size: 1rem;
        hyphens: auto;
    }

    .detail-subheading {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .review-reply {
        margin-left: 0.5rem;
    }
}

/* ===== PAGE TEMPLATE: blog-list ===== */
.site-header-block {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
    z-index: 1030;
}

.site-header-block .navbar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.site-header-block .site-brand-logo {
    max-width: 44px;
    max-height: 44px;
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-header-block .site-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.site-header-block .site-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #475569;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.site-header-block .site-nav-link:hover,
.site-header-block .site-nav-link:focus {
    color: #059669;
    background-color: #f0fdf4;
}

.site-header-block .site-btn-primary {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    background-color: #059669;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.site-header-block .site-btn-primary:hover,
.site-header-block .site-btn-primary:focus {
    background-color: #047857;
    color: #ffffff;
}

.site-header-block .navbar-toggler {
    border: 1px solid #cbd5e1;
    padding: 0.4rem 0.65rem;
    border-radius: 0.5rem;
}

.site-header-block .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.25);
    outline: none;
}

@media (max-width: 991.98px) {
    .site-header-block #mainNavbarContent {
        background-color: #ffffff;
        padding: 1.25rem 0.5rem 0.75rem;
        border-top: 1px solid #f1f5f9;
        margin-top: 0.75rem;
    }

    .site-header-block .site-nav-link {
        padding: 0.65rem 0.75rem !important;
        font-size: 0.95rem;
    }

    .site-header-block .site-header-actions {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid #f1f5f9;
    }

    .site-header-block .site-btn-primary {
        width: 100%;
        text-align: center;
    }
}

.blog-detail-template {
    background-color: #f8fafc;
    min-height: 80vh;
}

.blog-detail-template .blog-breadcrumb .breadcrumb-item a {
    color: #059669;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-detail-template .blog-breadcrumb .breadcrumb-item.active {
    color: #64748b;
    font-size: 0.875rem;
}

.blog-detail-template .badge-pill {
    display: inline-flex;
    align-items: center;
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50rem;
}

.blog-detail-template .blog-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.25;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.blog-detail-template .blog-main-subtitle {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.6;
}

.blog-detail-template .blog-author-meta {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}

.blog-detail-template .blog-author-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.blog-detail-template .blog-author-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

.blog-detail-template .blog-post-date {
    font-size: 0.8125rem;
    color: #64748b;
}

.blog-detail-template .blog-share-label {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 600;
}

.blog-detail-template .blog-share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.2s, color 0.2s;
}

.blog-detail-template .blog-share-btn:hover {
    background-color: #059669;
    color: #ffffff;
}

.blog-detail-template .blog-main-visual img {
    max-height: 440px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.blog-detail-template .blog-content-body {
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
}

.blog-detail-template .blog-content-h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-detail-template .blog-content-h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    line-height: 1.35;
}

.blog-detail-template .blog-content-p {
    color: #475569;
    margin-bottom: 1.25rem;
}

.blog-detail-template .blog-highlight-box {
    background: #f0fdfa;
    border-left: 4px solid #059669;
}

.blog-detail-template .blog-content-list {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
    color: #475569;
}

.blog-detail-template .blog-content-list li {
    margin-bottom: 0.5rem;
}

.blog-detail-template .blog-tab-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.15rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-detail-template .blog-tab-btn.active {
    background: #059669;
    border-color: #059669;
    color: #ffffff;
}

.blog-detail-template .blog-panel-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #0f172a;
}

.blog-detail-template .blog-panel-text {
    font-size: 0.925rem;
    color: #475569;
    line-height: 1.6;
}

.blog-detail-template .blog-comments-count {
    color: #059669;
    font-size: 1.125rem;
}

.blog-detail-template .blog-moderation-badge {
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 0.375rem;
}

.blog-detail-template .review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.blog-detail-template .review-main {
    border-left: 3px solid #059669;
}

.blog-detail-template .review-reply {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.blog-detail-template .review-reply-indicator {
    color: #94a3b8;
    font-size: 1.25rem;
}

.blog-detail-template .review-reply-content {
    flex-grow: 1;
}

.blog-detail-template .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-detail-template .review-user-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-detail-template .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-detail-template .review-avatar-team {
    border: 2px solid #059669;
}

.blog-detail-template .review-user-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-detail-template .review-author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.blog-detail-template .review-badge-verified {
    font-size: 0.75rem;
    color: #059669;
    font-weight: 600;
}

.blog-detail-template .review-badge-official {
    font-size: 0.75rem;
    background: #ecfdf5;
    color: #059669;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.blog-detail-template .review-timestamp {
    font-size: 0.75rem;
    color: #64748b;
}

.blog-detail-template .review-rating {
    color: #f59e0b;
    font-size: 0.8125rem;
}

.blog-detail-template .review-rating-score {
    color: #0f172a;
    font-weight: 700;
    margin-left: 0.25rem;
}

.blog-detail-template .review-headline {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.blog-detail-template .review-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.blog-detail-template .review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.blog-detail-template .review-actions {
    display: flex;
    gap: 0.75rem;
}

.blog-detail-template .review-action-btn {
    background: none;
    border: none;
    padding: 0;
    color: #64748b;
    cursor: pointer;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
}

.blog-detail-template .review-action-btn:hover,
.blog-detail-template .review-action-btn.active {
    color: #059669;
}

.blog-detail-template .review-tag,
.blog-detail-template .review-badge-status {
    color: #64748b;
    font-size: 0.75rem;
}

.blog-detail-template .blog-form-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #0f172a;
}

.blog-detail-template .blog-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.blog-detail-template .blog-input,
.blog-detail-template .blog-textarea {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    font-size: 0.875rem;
    border-radius: 0.5rem;
}

.blog-detail-template .blog-input::placeholder,
.blog-detail-template .blog-textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.blog-detail-template .blog-input:focus,
.blog-detail-template .blog-textarea:focus {
    background-color: #ffffff;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
    color: #0f172a;
}

.blog-detail-template .blog-btn-submit {
    background-color: #059669;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.blog-detail-template .blog-btn-submit:hover {
    background-color: #047857;
    color: #ffffff;
}

.blog-detail-template .blog-form-alert {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: 0.875rem;
}

.blog-detail-template .blog-sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0f172a;
}

.blog-detail-template .blog-recent-item-title {
    font-weight: 600;
    font-size: 0.925rem;
    color: #0f172a;
    transition: color 0.2s;
    line-height: 1.4;
}

.blog-detail-template .blog-recent-link:hover .blog-recent-item-title {
    color: #059669;
}

.blog-detail-template .blog-recent-date {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.blog-detail-template .blog-sidebar-desc {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .blog-detail-template .blog-main-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .blog-detail-template .blog-content-h2 {
        font-size: 1rem;
    }

    .blog-detail-template .blog-content-h3 {
        font-size: 0.875rem;
    }

    .blog-detail-template .review-reply {
        margin-left: 0.75rem;
    }
}

.moneytree-footer-section {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.moneytree-footer-section .moneytree-footer-top {
    padding-bottom: 3rem;
}

.moneytree-footer-section .moneytree-footer-brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.moneytree-footer-section .moneytree-footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.moneytree-footer-section .moneytree-footer-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    object-fit: contain;
}

.moneytree-footer-section .moneytree-footer-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.moneytree-footer-section .moneytree-footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

.moneytree-footer-section .moneytree-footer-newsletter-box {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04);
}

.moneytree-footer-section .moneytree-newsletter-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.moneytree-footer-section .moneytree-newsletter-subtitle {
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 0.875rem;
    line-height: 1.4;
}

.moneytree-footer-section .moneytree-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.moneytree-footer-section .moneytree-newsletter-input {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    border-radius: 0.625rem;
    padding: 0.65rem 0.875rem;
    font-size: 0.875rem;
    outline: none;
}

.moneytree-footer-section .moneytree-newsletter-input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
    background-color: #FFFFFF;
    color: #0F172A;
}

.moneytree-footer-section .moneytree-newsletter-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.moneytree-footer-section .moneytree-newsletter-btn {
    background: #059669;
    color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.moneytree-footer-section .moneytree-newsletter-btn:hover {
    background: #047857;
    color: #FFFFFF;
}

.moneytree-footer-section .moneytree-footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.moneytree-footer-section .moneytree-footer-nav-list,
.moneytree-footer-section .moneytree-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.moneytree-footer-section .moneytree-footer-link {
    color: #475569;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.moneytree-footer-section .moneytree-footer-link:hover {
    color: #059669;
}

.moneytree-footer-section .moneytree-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
}

.moneytree-footer-section .moneytree-contact-icon {
    color: #059669;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.moneytree-footer-section .moneytree-contact-text {
    color: #475569;
    word-break: break-word;
}

.moneytree-footer-section .moneytree-whatsapp-link {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.moneytree-footer-section .moneytree-whatsapp-link:hover {
    color: #047857;
    text-decoration: underline;
}

.moneytree-footer-section .moneytree-footer-bottom {
    border-top: 1px solid #E2E8F0;
    padding-top: 1.75rem;
}

.moneytree-footer-section .moneytree-copyright-text,
.moneytree-footer-section .moneytree-notice-text {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

@media (min-width: 576px) {
    .moneytree-footer-section .moneytree-input-group {
        flex-direction: row;
    }

    .moneytree-footer-section .moneytree-newsletter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 767.98px) {
    .moneytree-footer-section {
        padding-top: 3.5rem;
    }

    .moneytree-footer-section .moneytree-footer-heading {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .moneytree-footer-section .moneytree-footer-desc,
    .moneytree-footer-section .moneytree-footer-link,
    .moneytree-footer-section .moneytree-contact-item {
        font-size: 0.875rem;
    }

    .moneytree-footer-section .moneytree-notice-text {
        margin-top: 0.5rem;
    }
}