﻿:root {
    --orange: #F47C20;
    --orange-dark: #E06A10;
    --orange-light: #fff9f4;
    --secondary: #E8E8E8;
    --navy: #152A56;
    --navy-deep: #0F2047;
    --text-dark: #1B2540;
    --text-muted: #5C6478;
    --bg-soft: #EFF4FB;
    --bg-card: #FFFFFF;
    --green: #1F8A70;
    --border-soft: #E3E8F2;
    --shadow: 0 12px 30px rgba(21, 42, 86, 0.10);
}

.mb-2 {
    margin-bottom: 8px;
}
.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.px-3 {
    padding-left: 12px;
    padding-right: 12px;
}
.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}
.pl-3 {
    padding-left: 12px;
}
.pr-3 {
    padding-right: 12px;
}
.overflow-hidden {
    overflow: hidden;
}
h1, h2, h3 {
    margin: 0 0 16px 0;
    font-weight: 700;
    color: var(--navy-deep);
}

p {
    color: var(--text-muted);
    margin: 0 0 20px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---------- Buttons ---------- */
.btn {
    border: none;
    border-radius: 10px;
    padding: 14px 26px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--orange-dark);
    }

.btn-outline {
    background: #fff;
    color: var(--navy-deep);
    border: 1.5px solid var(--navy-deep);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.chevron {
    /*font-size: 14px;*/
    margin-right:12px;
}

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(180deg, #F6F9FE 0%, #ffffff 100%);
    /*padding: 60px 0 100px;*/
    margin-top:40px;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

    .hero-text h1 {
        font-size: 36px;
        line-height: 1.5;
    }

        .hero-text h1 .accent {
            color: var(--orange);
            display: block;
        }

    .hero-text p {
        font-size: 16px;
        max-width: 520px;
        margin-bottom: 28px;
    }

.hero-actions {
    display: flex;
    gap: 14px;
}

.hero-visual {
    flex: 1;
    position: relative;
    min-height: 440px;
}

.hero-photo {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.float-card {
    position: absolute;
    background: var(--bg-card);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 14px 16px;
    font-size: 13px;
}

.rank-card {
    top: -10px;
    right: -10px;
    text-align: center;
    min-width: 140px;
}

.rank-label {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.rank-number {
    color: var(--orange);
    font-size: 26px;
    font-weight: 800;
}

.rank-sub {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 4px;
}

.suggest-card {
    top: 20px;
    left: -30px;
    width: 230px;
}

.suggest-title {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--navy-deep);
}

.suggest-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-top: 1px solid var(--border-soft);
}

    .suggest-row:first-of-type {
        border-top: none;
    }

.pct {
    font-weight: 700;
    font-size: 12px;
    border-radius: 6px;
    padding: 3px 7px;
    white-space: nowrap;
}

    .pct.green {
        background: #E4F6EF;
        color: var(--green);
    }

    .pct.orange {
        background: #FDECDD;
        color: var(--orange);
    }

.suggest-name {
    flex: 1;
    font-size: 12px;
    color: var(--text-dark);
}

    .suggest-name small {
        color: var(--text-muted);
    }

.suggest-icon {
    font-size: 16px;
}

.filter-card {
    bottom: 60px;
    right: -30px;
    width: 150px;
}

.filter-title {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 4px 0;
}

.donut-card {
    bottom: -20px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 220px;
}

.donut-title {
    display: none;
}

.donut-chart {
    width: 56px;
    height: 56px;
}

.donut {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-legend {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dotc {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
}

    .dotc.orange {
        background: var(--orange);
    }

    .dotc.green {
        background: var(--green);
    }

    .dotc.navy {
        background: var(--navy);
    }

/* ---------- What is Norato ---------- */
.what-section {
    padding: 12px 0;
}

.what-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.what-text {
    flex: 1;
}

    .what-text h2 {
        font-size: 28px;
    }

.what-image {
    flex: 1;
}

    .what-image img {
        width: 100%;
        border-radius: 16px;
    }

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.chip {
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy-deep);
    border: 1px solid var(--secondary);
}

.chip-icon {
    font-size: 16px;
}

/* ---------- Features ---------- */
.features-section {
    background: var(--bg-soft);
    padding: 12px 0;
}

.section-title {
    font-size: 28px;
}

    .section-title.center {
        text-align: center;
        /*margin-bottom: 12px;*/
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-right: 12px;
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    margin: 0;
}

/* ---------- Split blocks ---------- */
.split-block {
    margin: 12px 0;
    border-radius: 16px;
}

    .split-block.alt {
        background: var(--bg-soft);
    }

.split-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
.orange-light{
    background: var(--orange-light);
}

.split-text {
    flex: 1;
}

    .split-text h2 {
        font-size: 28px;
    }

    .split-text p {
        font-size: 15px;
    }

.split-image {
    flex: 1;
    position: relative;
}

    .split-image img {
        width: 100%;
        display: block;
    }

.tag-bubble {
    position: absolute;
    background: var(--bg-card);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.tag1 {
    top: -16px;
    right: 20px;
}

.tag2 {
    top: 40px;
    right: -24px;
}

.tag3 {
    bottom: -16px;
    right: 40px;
}

.tag4 {
    bottom: 40px;
    left: -20px;
}

.scenario-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.scenario-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--secondary);
    border-radius: 12px;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-deep);
    background: white;
}

.scenario-icon {
    width: 45px;
    height: 45  px;
    display: block;
    margin-left: 6px;
}

.scenario-card small {
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 12px;
}

.job-visual {
    padding-left: 0;
}

.stat-card {
    position: absolute;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.stat-money {
    top: -20px;
    right: -10px;
}

.stat-satisfaction {
    top: 20px;
    left: -30px;
}

.stat-growth {
    bottom: -20px;
    right: 20px;
}

.stat-icon {
    font-size: 20px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 11px;
}

.stat-value {
    font-weight: 800;
    color: var(--navy-deep);
    font-size: 15px;
}

    .stat-value.small-value {
        font-size: 13px;
    }

.decide-visual .sticky-note {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #FFF6C9;
    border-radius: 8px;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow);
    transform: rotate(-4deg);
}

/* ---------- CTA banner ---------- */
.cta-banner {
    margin-top: 80px;
    background: var(--navy-deep);
    border-radius: 20px;
    padding: 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-text {
    flex: 1;
    text-align: right;
}

    .cta-text h3 {
        color: #fff;
        font-size: 24px;
        margin-bottom: 8px;
    }

    .cta-text p {
        color: #B9C2DA;
        margin: 0;
    }

.cta-image {
    width: 220px;
    height: 110px;
    object-fit: cover;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-inner, .what-inner, .split-inner, .split-inner, .cta-inner {
        flex-direction: column;
    }

    div.reverse {
        flex-direction: column-reverse;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto !important;
    }

    .scenario-cards {
        grid-template-columns: 1fr;
    }
    .cta-inner {
        padding: 12px !important;
    }
    .cta-inner img {
        width: 100% !important;
        height: auto !important
    }
}
