.mataami-accounting-page {
    --brand: #FF6C1E;
    --brand-dark: #E05A10;
    --brand-light: #FFF3EC;
    --brand-pale: #FFF8F4;
    --dark: #111827;
    --dark-2: #1F2937;
    --mid: #374151;
    --muted: #6B7280;
    --muted-2: #9CA3AF;
    --border: #E5E7EB;
    --border-2: #F3F4F6;
    --bg: #FFFFFF;
    --bg-alt: #F9FAFB;
    --bg-dark: #0F172A;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
    --shadow-xl: 0 24px 60px rgba(0,0,0,.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-head: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.25s ease;
    font-family: var(--font-body);
    color: var(--mid);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

    /* ============================================================
   RESET & BASE
============================================================ */
    .mataami-accounting-page *,
    .mataami-accounting-page *::before,
    .mataami-accounting-page *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .mataami-accounting-page img {
        display: block;
        max-width: 100%;
    }

    .mataami-accounting-page a {
        text-decoration: none;
        color: inherit;
    }

    .mataami-accounting-page ul {
        list-style: none;
    }

    /* ============================================================
   LAYOUT
============================================================ */
    .mataami-accounting-page .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .mataami-accounting-page .section-pad {
        padding: 100px 0;
    }

    /* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
    .mataami-accounting-page .text-orange {
        color: var(--brand);
    }

    .mataami-accounting-page .section-eyebrow {
        display: inline-block;
        font-family: var(--font-head);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--brand);
        background: var(--brand-light);
        padding: 5px 14px;
        border-radius: 50px;
        margin-bottom: 20px;
    }

    .mataami-accounting-page .section-header {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 60px;
    }

    .mataami-accounting-page .section-title {
        font-family: var(--font-head);
        font-size: clamp(26px, 4vw, 38px);
        font-weight: 700;
        color: var(--dark);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .mataami-accounting-page .section-sub {
        font-size: 17px;
        color: var(--muted);
        line-height: 1.65;
    }

    /* ============================================================
   BUTTONS
============================================================ */
    .mataami-accounting-page .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-head);
        font-weight: 600;
        border-radius: 10px;
        border: 2px solid transparent;
        cursor: pointer;
        transition: var(--transition);
        white-space: nowrap;
        text-align: center;
        justify-content: center;
    }

    .mataami-accounting-page .btn--primary {
        background: var(--brand);
        color: #fff;
        border-color: var(--brand);
    }

        .mataami-accounting-page .btn--primary:hover {
            background: var(--brand-dark);
            border-color: var(--brand-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255,108,30,.30);
        }

    .mataami-accounting-page .btn--outline {
        background: transparent;
        color: var(--dark);
        border-color: var(--border);
    }

        .mataami-accounting-page .btn--outline:hover {
            border-color: var(--brand);
            color: var(--brand);
            transform: translateY(-2px);
        }

    .mataami-accounting-page .btn--ghost {
        background: transparent;
        color: var(--mid);
        border-color: var(--border);
    }

        .mataami-accounting-page .btn--ghost:hover {
            background: var(--bg-alt);
            color: var(--dark);
        }

    .mataami-accounting-page .btn--light {
        background: rgba(255,255,255,0.15);
        color: #fff;
        border-color: rgba(255,255,255,0.30);
    }

        .mataami-accounting-page .btn--light:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }

    .mataami-accounting-page .btn--sm {
        padding: 9px 20px;
        font-size: 13px;
    }

    .mataami-accounting-page .btn--md {
        padding: 12px 26px;
        font-size: 14px;
    }

    .mataami-accounting-page .btn--lg {
        padding: 15px 32px;
        font-size: 15px;
    }

    .mataami-accounting-page .btn--full {
        width: 100%;
    }

    /* ============================================================
   NAVBAR
============================================================ */
    .mataami-accounting-page .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 900;
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-2);
        transition: box-shadow .3s ease;
    }

        .mataami-accounting-page .navbar.scrolled {
            box-shadow: var(--shadow-md);
        }

    .mataami-accounting-page .navbar__inner {
        display: flex;
        align-items: center;
        gap: 32px;
        height: 70px;
    }

    .mataami-accounting-page .navbar__brand {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .mataami-accounting-page .navbar__logo-icon {
        flex-shrink: 0;
    }

    .mataami-accounting-page .navbar__name {
        display: block;
        font-family: var(--font-head);
        font-size: 16px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1.15;
    }

    .mataami-accounting-page .navbar__tagline {
        display: block;
        font-size: 10.5px;
        font-weight: 500;
        color: var(--muted);
        letter-spacing: .02em;
    }

    .mataami-accounting-page .navbar__links {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: auto;
    }

    .mataami-accounting-page .nav-link {
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 500;
        color: var(--mid);
        padding: 7px 14px;
        border-radius: 8px;
        transition: var(--transition);
    }

        .mataami-accounting-page .nav-link:hover {
            color: var(--brand);
            background: var(--brand-light);
        }

    .mataami-accounting-page .navbar__actions {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: 16px;
    }

    /* Burger */
    .mataami-accounting-page .navbar__burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: auto;
    }

        .mataami-accounting-page .navbar__burger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--dark);
            border-radius: 2px;
            transition: var(--transition);
        }

        .mataami-accounting-page .navbar__burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mataami-accounting-page .navbar__burger.active span:nth-child(2) {
            opacity: 0;
        }

        .mataami-accounting-page .navbar__burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

    /* Mobile nav */
    .mataami-accounting-page .mobile-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 850;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-8px);
        opacity: 0;
        transition: all .25s ease;
        pointer-events: none;
    }

        .mataami-accounting-page .mobile-nav.open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

    .mataami-accounting-page .mobile-nav__links {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 16px;
    }

        .mataami-accounting-page .mobile-nav__links .nav-link {
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 15px;
        }

    .mataami-accounting-page .mobile-nav__actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* ============================================================
   HERO SECTION
============================================================ */
    .mataami-accounting-page .hero {
        min-height: 100vh;
        padding: 130px 0 80px;
        background: linear-gradient(160deg, #fff 60%, var(--brand-pale) 100%);
        position: relative;
        overflow: hidden;
    }

        .mataami-accounting-page .hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,108,30,.08) 0%, transparent 70%);
            pointer-events: none;
        }

    .mataami-accounting-page .hero__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .mataami-accounting-page .hero__eyebrow {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-head);
        font-size: 13px;
        font-weight: 600;
        color: var(--brand);
        letter-spacing: .06em;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    .mataami-accounting-page .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--brand);
        animation: mataami-accounting-pulse 2s ease-in-out infinite;
    }

@keyframes mataami-accounting-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.8);
    }
}

.mataami-accounting-page .hero__headline {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 22px;
}

.mataami-accounting-page .hero__sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 36px;
}

.mataami-accounting-page .hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.mataami-accounting-page .hero__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mataami-accounting-page .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dark);
    background: #fff;
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

/* ---- Hero Dashboard Mock ---- */
.mataami-accounting-page .hero__visual {
    position: relative;
}

.mataami-accounting-page .dashboard-mock {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.95;
    max-width: 520px;
    margin-left: auto;
}

.mataami-accounting-page .mock-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 16px 18px;
    border: 1px solid var(--border-2);
}

.mataami-accounting-page .mock-card--top-left {
    top: 5%;
    left: 0;
    width: 52%;
}

.mataami-accounting-page .mock-card--top-right {
    top: 5%;
    right: 0;
    width: 44%;
}

.mataami-accounting-page .mock-card--center {
    top: 35%;
    left: 8%;
    width: 70%;
    z-index: 2;
}

.mataami-accounting-page .mock-card--bottom-left {
    bottom: 4%;
    left: 0;
    width: 42%;
}

.mataami-accounting-page .mock-card--bottom-right {
    bottom: 4%;
    right: 0;
    width: 52%;
}

.mataami-accounting-page .mock-card__label {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 6px;
}

.mataami-accounting-page .mock-card__value {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.mataami-accounting-page .mock-card__trend {
    font-size: 11px;
    font-weight: 500;
}

    .mataami-accounting-page .mock-card__trend.up {
        color: #10B981;
    }

    .mataami-accounting-page .mock-card__trend.down {
        color: #F59E0B;
    }

.mataami-accounting-page .mock-card__bar {
    height: 4px;
    background: var(--border-2);
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}

.mataami-accounting-page .mock-card__bar-fill {
    height: 100%;
    background: var(--brand);
    border-radius: 4px;
}

.mataami-accounting-page .mock-card__mini-chart {
    margin-top: 8px;
}

.mataami-accounting-page .mock-card__bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 36px;
    margin-top: 8px;
}

.mataami-accounting-page .mock-bar {
    flex: 1;
    background: var(--border-2);
    border-radius: 3px;
}

    .mataami-accounting-page .mock-bar.active {
        background: var(--brand);
    }

.mataami-accounting-page .mock-card__branches {
    margin-top: 4px;
}

.mataami-accounting-page .branch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--muted);
    padding: 3px 0;
    font-weight: 500;
}

.mataami-accounting-page .branch-pct {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--brand);
    font-size: 11px;
}

/* Float animations */
@keyframes mataami-accounting-float1 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes mataami-accounting-float2 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes mataami-accounting-float3 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.mataami-accounting-page .float-1 {
    animation: mataami-accounting-float1 4.5s ease-in-out infinite;
}

.mataami-accounting-page .float-2 {
    animation: mataami-accounting-float2 5.5s ease-in-out infinite;
}

.mataami-accounting-page .float-3 {
    animation: mataami-accounting-float3 3.8s ease-in-out infinite;
}

/* ============================================================
   PROBLEM SECTION
============================================================ */
.mataami-accounting-page .problems {
    background: var(--bg-alt);
}

.mataami-accounting-page .problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mataami-accounting-page .problem-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 28px;
    transition: var(--transition);
}

    .mataami-accounting-page .problem-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: rgba(255,108,30,.2);
    }

.mataami-accounting-page .problem-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.mataami-accounting-page .problem-card h3 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.mataami-accounting-page .problem-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* ============================================================
   SOLUTION SECTION
============================================================ */
.mataami-accounting-page .solution {
    background: #fff;
}

.mataami-accounting-page .solution__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mataami-accounting-page .solution__list {
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .mataami-accounting-page .solution__list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        color: var(--mid);
        font-weight: 500;
    }

.mataami-accounting-page .solution__check {
    flex-shrink: 0;
    margin-top: 1px;
}

.mataami-accounting-page .solution__card-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mataami-accounting-page .sol-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .mataami-accounting-page .sol-card:hover {
        transform: translateX(6px);
        border-color: rgba(255,108,30,.25);
        box-shadow: var(--shadow-md);
    }

.mataami-accounting-page .sol-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mataami-accounting-page .bg-orange {
    background: var(--brand);
}

.mataami-accounting-page .bg-blue {
    background: #3B82F6;
}

.mataami-accounting-page .bg-teal {
    background: #10B981;
}

.mataami-accounting-page .sol-card__title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.mataami-accounting-page .sol-card__sub {
    font-size: 12px;
    color: var(--muted);
}

.mataami-accounting-page .sol-card__status {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    font-family: var(--font-head);
}

    .mataami-accounting-page .sol-card__status.green {
        background: #ECFDF5;
        color: #059669;
    }

/* stagger cards */
.mataami-accounting-page .sol-card--1 {
    animation: mataami-accounting-float3 5s ease-in-out infinite;
}

.mataami-accounting-page .sol-card--2 {
    animation: mataami-accounting-float1 6s ease-in-out infinite;
}

.mataami-accounting-page .sol-card--3 {
    animation: mataami-accounting-float2 4.5s ease-in-out infinite;
}

.mataami-accounting-page .sol-card--4 {
    animation: mataami-accounting-float3 5.5s ease-in-out infinite;
}

/* ============================================================
   CORE FEATURES SECTION
============================================================ */
.mataami-accounting-page .features {
    background: var(--bg-alt);
}

.mataami-accounting-page .features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mataami-accounting-page .feature-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 24px;
    transition: var(--transition);
    cursor: default;
}

    .mataami-accounting-page .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(255,108,30,.25);
    }

        .mataami-accounting-page .feature-card:hover .feature-card__icon {
            background: var(--brand);
        }

            .mataami-accounting-page .feature-card:hover .feature-card__icon svg path,
            .mataami-accounting-page .feature-card:hover .feature-card__icon svg polyline,
            .mataami-accounting-page .feature-card:hover .feature-card__icon svg rect,
            .mataami-accounting-page .feature-card:hover .feature-card__icon svg circle {
                stroke: #fff;
            }

.mataami-accounting-page .feature-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.mataami-accounting-page .feature-card h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.mataami-accounting-page .feature-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ============================================================
   BENEFITS SECTION
============================================================ */
.mataami-accounting-page .benefits {
    background: var(--dark);
}

    .mataami-accounting-page .benefits .section-eyebrow {
        background: rgba(255,108,30,.2);
        color: #FF8C4A;
    }

    .mataami-accounting-page .benefits .section-title {
        color: #fff;
    }

    .mataami-accounting-page .benefits .section-sub {
        color: rgba(255,255,255,.6);
    }

.mataami-accounting-page .benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mataami-accounting-page .benefit-block {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    transition: var(--transition);
}

    .mataami-accounting-page .benefit-block:hover {
        background: rgba(255,108,30,.08);
        border-color: rgba(255,108,30,.25);
        transform: translateY(-4px);
    }

.mataami-accounting-page .benefit-block__num {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--brand);
    margin-bottom: 16px;
}

.mataami-accounting-page .benefit-block h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.25;
}

.mataami-accounting-page .benefit-block p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS SECTION
============================================================ */
.mataami-accounting-page .how-it-works {
    background: #fff;
}

.mataami-accounting-page .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.mataami-accounting-page .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.mataami-accounting-page .step__number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
    box-shadow: 0 6px 20px rgba(255,108,30,.35);
}

.mataami-accounting-page .step__connector {
    position: absolute;
    top: 26px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), rgba(255,108,30,.25));
    z-index: 0;
}

.mataami-accounting-page .step__content h3 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.mataami-accounting-page .step__content p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* ============================================================
   DASHBOARD PREVIEW SECTION
============================================================ */
.mataami-accounting-page .dashboard-preview {
    background: var(--bg-alt);
}

.mataami-accounting-page .dash-preview {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    background: #fff;
}

.mataami-accounting-page .dash-preview__topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    padding: 12px 20px;
}

.mataami-accounting-page .dash-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

    .mataami-accounting-page .dash-dot.red {
        background: #EF4444;
    }

    .mataami-accounting-page .dash-dot.yellow {
        background: #F59E0B;
    }

    .mataami-accounting-page .dash-dot.green {
        background: #10B981;
    }

.mataami-accounting-page .dash-preview__url {
    font-family: var(--font-head);
    font-size: 12px;
    color: rgba(255,255,255,.45);
    margin-left: 12px;
    letter-spacing: .03em;
}

.mataami-accounting-page .dash-preview__body {
    display: flex;
    min-height: 480px;
}

/* Sidebar */
.mataami-accounting-page .dash-sidebar {
    width: 180px;
    flex-shrink: 0;
    background: #F9FAFB;
    border-right: 1px solid var(--border);
    padding: 24px 0;
}

.mataami-accounting-page .dash-sidebar__item {
    padding: 10px 20px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    cursor: default;
    border-radius: 0;
    transition: var(--transition);
}

    .mataami-accounting-page .dash-sidebar__item:hover {
        color: var(--brand);
        background: var(--brand-light);
    }

    .mataami-accounting-page .dash-sidebar__item.active {
        color: var(--brand);
        background: var(--brand-light);
        font-weight: 700;
        border-right: 3px solid var(--brand);
    }

/* Main area */
.mataami-accounting-page .dash-main {
    flex: 1;
    padding: 28px;
    overflow: hidden;
}

/* KPIs */
.mataami-accounting-page .dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.mataami-accounting-page .dash-kpi {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid var(--border);
}

    .mataami-accounting-page .dash-kpi.highlight {
        background: var(--brand-light);
        border-color: rgba(255,108,30,.25);
    }

.mataami-accounting-page .dash-kpi__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 8px;
}

.mataami-accounting-page .dash-kpi__value {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1;
}

    .mataami-accounting-page .dash-kpi__value.orange {
        color: var(--brand);
    }

.mataami-accounting-page .dash-kpi__change {
    font-size: 11.5px;
    font-weight: 600;
}

    .mataami-accounting-page .dash-kpi__change.up {
        color: #059669;
    }

    .mataami-accounting-page .dash-kpi__change.down {
        color: #D97706;
    }

/* Chart + Branch col */
.mataami-accounting-page .dash-body-row {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 16px;
    margin-bottom: 24px;
}

.mataami-accounting-page .dash-chart-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.mataami-accounting-page .dash-chart-title {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.mataami-accounting-page .dash-chart {
    width: 100%;
}

.mataami-accounting-page .dash-side-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mataami-accounting-page .dash-branch-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    flex: 1;
}

.mataami-accounting-page .dash-branch-card__title {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.mataami-accounting-page .dash-branch-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--mid);
    font-weight: 500;
}

.mataami-accounting-page .dash-branch-bar {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

    .mataami-accounting-page .dash-branch-bar div {
        height: 100%;
        background: var(--brand);
        border-radius: 4px;
    }

.mataami-accounting-page .pct {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
    min-width: 30px;
    text-align: right;
}

/* Table */
.mataami-accounting-page .dash-table-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    overflow-x: auto;
}

.mataami-accounting-page .dash-table-title {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 14px;
}

.mataami-accounting-page .dash-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

    .mataami-accounting-page .dash-table th {
        font-family: var(--font-head);
        font-size: 11px;
        font-weight: 700;
        color: var(--muted-2);
        text-transform: uppercase;
        letter-spacing: .05em;
        text-align: left;
        padding: 6px 12px 6px 0;
        border-bottom: 1px solid var(--border);
    }

    .mataami-accounting-page .dash-table td {
        padding: 10px 12px 10px 0;
        color: var(--mid);
        border-bottom: 1px solid var(--border-2);
        font-size: 13px;
    }

    .mataami-accounting-page .dash-table tbody tr:last-child td {
        border-bottom: none;
    }

.mataami-accounting-page .status {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-head);
}

    .mataami-accounting-page .status.approved {
        background: #ECFDF5;
        color: #059669;
    }

    .mataami-accounting-page .status.pending {
        background: #FFFBEB;
        color: #D97706;
    }

/* ============================================================
   USE CASES SECTION
============================================================ */
.mataami-accounting-page .use-cases {
    background: #fff;
}

.mataami-accounting-page .use-cases__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.mataami-accounting-page .use-case-card {
    text-align: center;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px 20px;
    transition: var(--transition);
}

    .mataami-accounting-page .use-case-card:hover {
        background: #fff;
        border-color: var(--brand);
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.mataami-accounting-page .use-case-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.mataami-accounting-page .use-case-card h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.mataami-accounting-page .use-case-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ============================================================
   FAQ SECTION
============================================================ */
.mataami-accounting-page .faq {
    background: var(--bg-alt);
}

.mataami-accounting-page .faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mataami-accounting-page .faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow .2s ease;
}

    .mataami-accounting-page .faq-item.open {
        box-shadow: var(--shadow-md);
        border-color: rgba(255,108,30,.25);
    }

.mataami-accounting-page .faq-item__question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}

    .mataami-accounting-page .faq-item__question:hover {
        color: var(--brand);
    }

.mataami-accounting-page .faq-item__icon {
    flex-shrink: 0;
    transition: transform .3s ease;
}

.mataami-accounting-page .faq-item.open .faq-item__icon {
    transform: rotate(180deg);
}

.mataami-accounting-page .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
}

.mataami-accounting-page .faq-item.open .faq-item__answer {
    max-height: 200px;
}

.mataami-accounting-page .faq-item__answer p {
    padding: 0 24px 20px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================================
   FINAL CTA SECTION
============================================================ */
.mataami-accounting-page .final-cta {
    background: linear-gradient(135deg, var(--brand) 0%, #FF8C3A 100%);
    position: relative;
    overflow: hidden;
}

    .mataami-accounting-page .final-cta::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        pointer-events: none;
    }

    .mataami-accounting-page .final-cta::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        pointer-events: none;
    }

.mataami-accounting-page .final-cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.mataami-accounting-page .final-cta__eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.15);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.mataami-accounting-page .final-cta__title {
    font-family: var(--font-head);
    font-size: clamp(26px, 4.5vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.mataami-accounting-page .final-cta__sub {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.mataami-accounting-page .final-cta__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
============================================================ */
.mataami-accounting-page .footer {
    background: var(--dark);
    padding: 60px 0 40px;
}

.mataami-accounting-page .footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: flex-start;
}

.mataami-accounting-page .footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.mataami-accounting-page .footer__brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    max-width: 280px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.mataami-accounting-page .footer__copy {
    font-size: 13px;
    color: rgba(255,255,255,.25);
}

.mataami-accounting-page .footer__links {
    display: flex;
    gap: 60px;
}

.mataami-accounting-page .footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mataami-accounting-page .footer__col-title {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.mataami-accounting-page .footer__col a {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    transition: var(--transition);
}

    .mataami-accounting-page .footer__col a:hover {
        color: var(--brand);
    }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.mataami-accounting-page .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

    .mataami-accounting-page .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.mataami-accounting-page .reveal--delay-1 {
    transition-delay: .12s;
}

.mataami-accounting-page .reveal--delay-2 {
    transition-delay: .24s;
}

.mataami-accounting-page .reveal--delay-3 {
    transition-delay: .36s;
}

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 1024px) {
    .mataami-accounting-page .features__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mataami-accounting-page .use-cases__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mataami-accounting-page .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .mataami-accounting-page .step__connector {
        display: none;
    }

    .mataami-accounting-page .dash-preview__body {
        flex-direction: column;
    }

    .mataami-accounting-page .dash-sidebar {
        width: 100%;
        display: flex;
        padding: 12px 16px;
        gap: 4px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        overflow-x: auto;
    }

    .mataami-accounting-page .dash-sidebar__item {
        white-space: nowrap;
        padding: 8px 14px;
        border-radius: 8px;
    }

        .mataami-accounting-page .dash-sidebar__item.active {
            border-right: none;
            border-bottom: 2px solid var(--brand);
        }

    .mataami-accounting-page .dash-body-row {
        grid-template-columns: 1fr;
    }

    .mataami-accounting-page .dash-kpis {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 768px) {
    .mataami-accounting-page .section-pad {
        padding: 70px 0;
    }

    /* Navbar */
    .mataami-accounting-page .navbar__links {
        display: none;
    }

    .mataami-accounting-page .navbar__actions {
        display: none;
    }

    .mataami-accounting-page .navbar__burger {
        display: flex;
    }

    .mataami-accounting-page .mobile-nav {
        display: block;
    }

    /* Hero */
    .mataami-accounting-page .hero {
        padding: 100px 0 60px;
    }

    .mataami-accounting-page .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mataami-accounting-page .hero__visual {
        order: -1;
    }

    .mataami-accounting-page .dashboard-mock {
        aspect-ratio: 1 / 0.7;
        max-width: 100%;
    }

    .mataami-accounting-page .mock-card--top-left {
        top: 2%;
        left: 0;
        width: 50%;
    }

    .mataami-accounting-page .mock-card--top-right {
        top: 2%;
        right: 0;
        width: 46%;
    }

    .mataami-accounting-page .mock-card--center {
        top: 34%;
        left: 4%;
        width: 75%;
    }

    .mataami-accounting-page .mock-card--bottom-left {
        bottom: 2%;
        left: 0;
        width: 44%;
    }

    .mataami-accounting-page .mock-card--bottom-right {
        bottom: 2%;
        right: 0;
        width: 52%;
    }

    /* Grids */
    .mataami-accounting-page .problems__grid {
        grid-template-columns: 1fr;
    }

    .mataami-accounting-page .solution__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mataami-accounting-page .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mataami-accounting-page .benefits__grid {
        grid-template-columns: 1fr;
    }

    .mataami-accounting-page .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mataami-accounting-page .use-cases__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Dashboard */
    .mataami-accounting-page .dash-kpis {
        grid-template-columns: 1fr;
    }

    .mataami-accounting-page .dash-table th:nth-child(4),
    .mataami-accounting-page .dash-table td:nth-child(4) {
        display: none;
    }

    /* Footer */
    .mataami-accounting-page .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mataami-accounting-page .footer__links {
        flex-direction: column;
        gap: 32px;
    }

    /* CTA */
    .mataami-accounting-page .hero__cta,
    .mataami-accounting-page .final-cta__buttons {
        flex-direction: column;
    }

    .mataami-accounting-page .btn--lg {
        width: 100%;
    }

    /* Steps */
    .mataami-accounting-page .step {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 20px;
        padding: 0;
    }

    .mataami-accounting-page .step__number {
        flex-shrink: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .mataami-accounting-page .features__grid {
        grid-template-columns: 1fr;
    }

    .mataami-accounting-page .use-cases__grid {
        grid-template-columns: 1fr;
    }

    .mataami-accounting-page .hero__badges {
        flex-direction: column;
    }
}