﻿/* =========================================================
   CLEAR
   Client-Led Evaluation & Advisory for Real Estate
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f6f8f7;
    color: #17221d;
    line-height: 1.6;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e5ebe7;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #123d2b;
    color: white;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 800;
}

.logo strong {
    display: block;
    color: #123d2b;
    font-size: 20px;
    letter-spacing: 1px;
}

.logo small {
    display: block;
    color: #718078;
    font-size: 9px;
    line-height: 1.2;
    max-width: 180px;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .navbar nav button {
        background: transparent;
        border: none;
        color: #53625a;
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        transition: 0.2s;
    }

        .navbar nav button:hover {
            background: #edf3ef;
            color: #123d2b;
        }

.demo-button {
    border: none;
    background: #123d2b;
    color: white;
    padding: 11px 18px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s;
}

    .demo-button:hover {
        background: #1b5940;
        transform: translateY(-1px);
    }


/* =========================================================
   GENERAL
   ========================================================= */

main {
    width: 100%;
}

.hidden {
    display: none !important;
}

.app-section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 6%;
}

.section-label,
.mini-label {
    display: block;
    color: #5c806d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-label {
    margin-bottom: 12px;
}

.mini-label {
    margin-bottom: 5px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.primary-button,
.secondary-button {
    border-radius: 9px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.2s, background 0.2s, border 0.2s;
}

.primary-button {
    background: #123d2b;
    color: white;
    border: 1px solid #123d2b;
}

    .primary-button:hover {
        background: #1d5a41;
        transform: translateY(-1px);
    }

.secondary-button {
    background: white;
    color: #123d2b;
    border: 1px solid #cbd8d1;
}

    .secondary-button:hover {
        background: #f1f6f3;
        border-color: #123d2b;
    }


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 70px;
    padding: 90px 8%;
    background: radial-gradient( circle at 80% 20%, rgba(53, 124, 91, 0.12), transparent 35% ), linear-gradient( 135deg, #f7faf8, #edf4f0 );
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid #cbdcd2;
    border-radius: 100px;
    background: white;
    color: #416553;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ai-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #24a269;
    box-shadow: 0 0 0 4px rgba(36, 162, 105, 0.12);
}

.hero h1 {
    margin-top: 25px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3px;
    color: #10231a;
}

    .hero h1 span {
        display: block;
        color: #397a5c;
    }

.hero-subtitle {
    margin-top: 25px;
    color: #52625a;
    font-size: 21px;
}

    .hero-subtitle strong {
        color: #123d2b;
    }

.hero-description {
    max-width: 620px;
    margin-top: 18px;
    color: #69766f;
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.hero-button {
    padding: 14px 23px;
}


/* =========================================================
   HERO CARD
   ========================================================= */

.hero-card {
    max-width: 470px;
    width: 100%;
    justify-self: center;
    background: white;
    border: 1px solid #dfe8e2;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 25px 60px rgba(25, 55, 42, 0.12);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #567363;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-ai-status {
    padding: 5px 8px;
    background: #eef8f2;
    color: #248153;
    border-radius: 5px;
    font-size: 9px;
}

.hero-property {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 18px;
    margin-top: 22px;
}

.hero-property-image {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #dce8e1, #b9cec1 );
    border-radius: 12px;
    color: #6c8176;
    font-size: 9px;
    font-weight: 800;
    text-align: center;
}

.hero-match-label {
    display: block;
    color: #789084;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-match {
    display: block;
    margin: 2px 0 4px;
    color: #23774f;
    font-size: 40px;
    line-height: 1;
}

.hero-property-info h3 {
    margin-top: 8px;
    color: #17221d;
    font-size: 18px;
}

.hero-property-info p {
    color: #77847d;
    font-size: 12px;
}

.hero-match-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 22px;
}

    .hero-match-reasons div {
        padding: 9px;
        background: #f5f8f6;
        border-radius: 7px;
        color: #56655d;
        font-size: 11px;
    }

    .hero-match-reasons span {
        color: #24925f;
        font-weight: 800;
    }

.hero-card-footer {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #e7ece9;
    color: #7a857f;
    font-size: 11px;
    text-align: center;
}


/* =========================================================
   HOW CLEAR WORKS
   ========================================================= */

.how-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 6%;
}

.section-heading {
    max-width: 750px;
    margin-bottom: 45px;
}

    .section-heading h2 {
        color: #14241c;
        font-size: clamp(35px, 4vw, 52px);
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

        .section-heading h2 span {
            color: #4d8067;
        }

    .section-heading p {
        margin-top: 15px;
        color: #718078;
        font-size: 15px;
    }

.clear-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.model-card {
    position: relative;
    padding: 30px;
    background: white;
    border: 1px solid #e1e9e4;
    border-radius: 15px;
    min-height: 360px;
    overflow: hidden;
    transition: 0.25s;
}

    .model-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(25, 55, 42, 0.08);
    }

.model-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #dce7e1;
    font-size: 40px;
    font-weight: 900;
}

.model-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #edf5f0;
    color: #27734e;
    border-radius: 13px;
    font-size: 21px;
}

.model-label {
    color: #5b806d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.model-card h3 {
    margin-top: 8px;
    font-size: 23px;
    color: #17221d;
}

.model-card p {
    margin-top: 10px;
    color: #728078;
    font-size: 13px;
}

.model-card ul {
    list-style: none;
    margin-top: 20px;
}

.model-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: #59675f;
    font-size: 12px;
}

    .model-card li span {
        color: #24925f;
        font-weight: 800;
    }

.clear-principle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
    padding: 22px;
    background: #123d2b;
    border-radius: 12px;
    color: white;
    font-size: 15px;
}

    .clear-principle span {
        color: #9ac4ae;
    }


/* =========================================================
   DISCOVER HEADER
   ========================================================= */

.discover-header,
.advisor-header,
.decision-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

    .discover-header h2,
    .advisor-header h2,
    .decision-header h2 {
        color: #14241c;
        font-size: clamp(35px, 4vw, 50px);
        line-height: 1.05;
        letter-spacing: -1.5px;
    }

        .discover-header h2 span,
        .advisor-header h2 span,
        .decision-header h2 span {
            color: #4d8067;
        }

    .discover-header p,
    .advisor-header p,
    .decision-header p {
        max-width: 650px;
        margin-top: 12px;
        color: #718078;
        font-size: 14px;
    }

.ai-status,
.advisor-status,
.decision-status {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 9px 13px;
    background: white;
    border: 1px solid #dce6e0;
    border-radius: 8px;
    color: #547061;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
}


/* =========================================================
   CRITERIA CARD
   ========================================================= */

.criteria-card {
    padding: 27px;
    background: white;
    border: 1px solid #dfe8e2;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 55, 43, 0.04);
}

.criteria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 23px;
}

    .criteria-header h3 {
        color: #1a2821;
        font-size: 20px;
    }

.criteria-count {
    color: #7b8981;
    font-size: 11px;
}

    .criteria-count strong {
        color: #27734e;
        font-size: 18px;
    }

.criteria-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr 1fr;
    gap: 15px;
}

.criteria-item label:first-child {
    display: block;
    margin-bottom: 7px;
    color: #68766e;
    font-size: 11px;
    font-weight: 700;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #d8e2dc;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

    .input-wrapper span {
        padding-left: 11px;
        color: #718078;
        font-size: 13px;
    }

    .input-wrapper input {
        width: 100%;
        padding: 10px 8px;
        border: none;
        outline: none;
        color: #24332b;
        background: transparent;
        font-size: 13px;
    }

.criteria-item select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d8e2dc;
    border-radius: 8px;
    background: white;
    color: #34433b;
    outline: none;
    font-size: 13px;
}

    .criteria-item select:focus,
    .input-wrapper:focus-within {
        border-color: #3e805f;
    }

.checkbox-item {
    display: flex;
    flex-direction: column;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    min-height: 39px;
    padding: 0 10px;
    border: 1px solid #d8e2dc;
    border-radius: 8px;
    color: #45554c !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

    .checkbox-label input {
        accent-color: #23774f;
    }

.criteria-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #e7ece9;
}

.criteria-note {
    color: #78847e;
    font-size: 11px;
}

    .criteria-note span {
        color: #39805c;
    }

    .criteria-note strong {
        color: #53645a;
    }

.analyze-button {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: #123d2b;
    color: white;
    padding: 12px 19px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    transition: 0.2s;
}

    .analyze-button:hover {
        background: #1d5a41;
        transform: translateY(-1px);
    }


/* =========================================================
   RESULTS HEADER
   ========================================================= */

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 55px;
    margin-bottom: 22px;
}

    .results-header h3 {
        color: #1b2922;
        font-size: 23px;
    }

.results-info {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #638070;
    font-size: 11px;
}


/* =========================================================
   PROPERTY GRID
   ========================================================= */

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.property-card {
    overflow: hidden;
    background: white;
    border: 1px solid #dfe8e2;
    border-radius: 15px;
    box-shadow: 0 7px 20px rgba(27, 55, 42, 0.04);
    transition: 0.25s;
}

    .property-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(27, 55, 42, 0.09);
    }


/* =========================================================
   PROPERTY IMAGE
   ========================================================= */

.property-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: linear-gradient( 135deg, #dce8e1, #b7cbbd );
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #71857a;
    text-align: center;
}

    .image-placeholder span {
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.5px;
    }

    .image-placeholder small {
        margin-top: 5px;
        font-size: 9px;
    }

.match-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
    padding: 8px 9px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 9px;
    box-shadow: 0 5px 15px rgba(20, 40, 30, 0.1);
}

    .match-badge strong {
        color: #23774f;
        font-size: 20px;
        line-height: 1;
    }

    .match-badge span {
        margin-top: 3px;
        color: #718078;
        font-size: 8px;
        font-weight: 800;
        text-transform: uppercase;
    }


/* =========================================================
   PROPERTY CONTENT
   ========================================================= */

.property-content {
    padding: 21px;
}

.property-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

    .property-top h3 {
        color: #18251f;
        font-size: 18px;
        line-height: 1.2;
    }

.property-location {
    margin-top: 4px;
    color: #7b8881;
    font-size: 11px;
}

.save-button {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    border: 1px solid #dce5df;
    border-radius: 8px;
    background: white;
    color: #557066;
    font-size: 18px;
    transition: 0.2s;
}

    .save-button:hover {
        border-color: #3d7b5b;
        background: #edf5f0;
        color: #23774f;
    }

.property-price {
    margin-top: 15px;
    color: #173e2c;
    font-size: 25px;
    font-weight: 800;
}

.property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 9px;
    color: #66756d;
    font-size: 10px;
}

.secondary-details {
    margin-top: 5px;
    color: #849088;
}


/* =========================================================
   AI EXPLANATION
   ========================================================= */

.ai-explanation {
    margin-top: 18px;
    padding: 15px;
    background: #f5f8f6;
    border: 1px solid #e4ece7;
    border-radius: 10px;
}

.explanation-header {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #2d684b;
    font-size: 11px;
}

.explanation-icon {
    color: #2b8a5d;
}

.reason-list {
    margin-top: 10px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 5px;
    color: #617067;
    font-size: 10px;
}

    .reason-item span {
        color: #26915e;
        font-weight: 900;
    }

.concerns-section {
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid #dde7e1;
}

.concern-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a66a16;
    font-size: 10px;
    font-weight: 800;
}

.concern-item {
    margin-top: 5px;
    padding-left: 17px;
    color: #7d786e;
    font-size: 10px;
}


/* =========================================================
   PROPERTY ACTIONS
   ========================================================= */

.property-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 17px;
}

    .property-actions button {
        padding: 10px 8px;
        font-size: 11px;
    }


/* =========================================================
   AI DISCLAIMER
   ========================================================= */

.ai-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
    padding: 19px 21px;
    background: #edf5f0;
    border: 1px solid #d5e5db;
    border-radius: 11px;
}

.disclaimer-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    color: #278456;
}

.ai-disclaimer strong {
    color: #2c6249;
    font-size: 12px;
}

.ai-disclaimer p {
    margin-top: 3px;
    color: #718078;
    font-size: 10px;
}


/* =========================================================
   ADVISOR HEADER
   ========================================================= */

.advisor-header,
.decision-header {
    align-items: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #25a368;
    box-shadow: 0 0 0 4px rgba(37, 163, 104, 0.12);
}


/* =========================================================
   CLIENT SUMMARY
   ========================================================= */

.client-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 25px;
    background: white;
    border: 1px solid #dfe8e2;
    border-radius: 14px;
    margin-bottom: 22px;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #dcebe2;
    color: #276447;
    font-size: 14px;
    font-weight: 800;
}

.client-profile h3 {
    color: #19261f;
    font-size: 17px;
}

.client-profile p {
    color: #7a8780;
    font-size: 11px;
}

.client-stats {
    display: flex;
    gap: 40px;
}

    .client-stats div {
        display: flex;
        flex-direction: column;
    }

    .client-stats strong {
        color: #27734e;
        font-size: 22px;
    }

    .client-stats span {
        color: #7b8781;
        font-size: 9px;
    }


/* =========================================================
   DASHBOARD GRID
   ========================================================= */

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 20px;
    margin-bottom: 22px;
}

.dashboard-card {
    background: white;
    border: 1px solid #dfe8e2;
    border-radius: 14px;
    padding: 23px;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 23px;
}

    .dashboard-card-header h3 {
        color: #1b2922;
        font-size: 19px;
    }

.live-label {
    color: #278154;
    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   JOURNEY
   ========================================================= */

.journey {
    position: relative;
    padding-left: 5px;
}

    .journey::before {
        content: "";
        position: absolute;
        left: 17px;
        top: 15px;
        bottom: 15px;
        width: 1px;
        background: #dce6e0;
    }

.journey-item {
    position: relative;
    display: flex;
    gap: 14px;
    padding-bottom: 20px;
}

.journey-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #cfdcd4;
    border-radius: 50%;
    color: #7c8b83;
    font-size: 10px;
    z-index: 1;
}

.journey-item.completed .journey-icon {
    background: #eaf5ef;
    border-color: #bcd9c8;
    color: #26774f;
}

.journey-item strong {
    display: block;
    color: #35453c;
    font-size: 12px;
}

.journey-item p {
    margin-top: 2px;
    color: #68766f;
    font-size: 11px;
}

.journey-item small {
    display: block;
    margin-top: 3px;
    color: #9aa49f;
    font-size: 9px;
}


/* =========================================================
   TRANSPARENCY SOURCES
   ========================================================= */

.source-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 9px;
}

.source-icon {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 7px;
    font-size: 14px;
}

.source-card strong {
    display: block;
    color: #33443a;
    font-size: 11px;
}

.source-card p {
    margin-top: 2px;
    color: #718078;
    font-size: 9px;
    line-height: 1.5;
}

.ai-source {
    background: #edf5f0;
}

    .ai-source .source-icon {
        color: #2a8157;
    }

.realtor-source {
    background: #f0f2f8;
}

    .realtor-source .source-icon {
        color: #596b96;
    }

.client-source {
    background: #f8f3e9;
}

    .client-source .source-icon {
        color: #a4792d;
    }


/* =========================================================
   PROFESSIONAL ADVICE
   ========================================================= */

.advice-card {
    padding: 25px;
    background: white;
    border: 1px solid #dfe8e2;
    border-radius: 14px;
    margin-bottom: 22px;
}

.advice-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

    .advice-header h3 {
        color: #1b2922;
        font-size: 20px;
    }

    .advice-header p {
        margin-top: 4px;
        color: #77847d;
        font-size: 11px;
    }

.realtor-badge {
    height: fit-content;
    padding: 6px 9px;
    background: #eef2f9;
    color: #5b6c96;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 800;
}

.advice-card textarea {
    width: 100%;
    min-height: 115px;
    margin-top: 18px;
    padding: 13px;
    resize: vertical;
    border: 1px solid #d8e2dc;
    border-radius: 9px;
    outline: none;
    color: #3b4a42;
    background: #fafcfb;
    font-size: 12px;
}

    .advice-card textarea:focus {
        border-color: #3d805f;
    }

.advice-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}

    .advice-actions span {
        color: #87918b;
        font-size: 9px;
    }

    .advice-actions button {
        white-space: nowrap;
    }

.advice-message {
    margin-top: 10px;
    font-size: 11px;
}


/* =========================================================
   REMUNERATION
   ========================================================= */

.remuneration-card {
    padding: 25px;
    background: #123d2b;
    border-radius: 14px;
    color: white;
}

.remuneration-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

    .remuneration-header .mini-label {
        color: #9bc1ad;
    }

    .remuneration-header h3 {
        margin-top: 4px;
        font-size: 22px;
    }

    .remuneration-header p {
        margin-top: 5px;
        color: #b2c8bc;
        font-size: 11px;
    }

.transparency-lock {
    padding: 7px 10px;
    border: 1px solid #426b57;
    border-radius: 7px;
    color: #b9d3c4;
    font-size: 9px;
}

.remuneration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.remuneration-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
}

    .remuneration-item span {
        display: block;
        color: #91b5a2;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .remuneration-item strong {
        display: block;
        margin-top: 5px;
        color: white;
        font-size: 12px;
    }

    .remuneration-item .not-affected {
        color: #91d2ad;
    }

.remuneration-note {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a8c1b4;
}

    .remuneration-note span {
        color: #9bc7ad;
    }

    .remuneration-note p {
        font-size: 9px;
    }


/* =========================================================
   DECISION
   ========================================================= */

.decision-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.decision-step {
    position: relative;
    min-height: 245px;
    padding: 25px;
    background: white;
    border: 1px solid #dfe8e2;
    border-radius: 14px;
    transition: 0.2s;
}

    .decision-step:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(25, 55, 42, 0.07);
    }

    .decision-step.active {
        border-color: #aacbb8;
        background: #f3f8f5;
    }

.final-step {
    border-color: #9cc8ae;
    background: #edf7f1;
}

.decision-number {
    position: absolute;
    top: 17px;
    right: 18px;
    color: #d9e6df;
    font-size: 22px;
    font-weight: 900;
}

.decision-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf5f0;
    color: #27774f;
    border-radius: 11px;
    font-size: 18px;
    margin-bottom: 25px;
}

.decision-step > span {
    color: #5e826e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.decision-step h3 {
    margin-top: 6px;
    color: #1d2a23;
    font-size: 19px;
}

.decision-step p {
    margin-top: 7px;
    color: #748179;
    font-size: 11px;
}

.decision-arrow {
    color: #9aaba1;
    font-size: 24px;
}

.decision-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    padding: 25px;
    background: #123d2b;
    border-radius: 14px;
    color: white;
}

.decision-summary-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #a7d0b8;
    font-size: 20px;
}

.decision-summary span {
    color: #94b8a5;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.decision-summary h3 {
    margin-top: 4px;
    font-size: 23px;
}

.decision-summary p {
    margin-top: 3px;
    color: #b5c9bf;
    font-size: 10px;
}

.decision-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 45px 6%;
    background: #102b20;
    color: white;
    text-align: center;
}

    footer strong {
        display: block;
        font-size: 19px;
        letter-spacing: 1px;
    }

    footer p {
        margin-top: 3px;
        color: #a8bcb2;
        font-size: 10px;
    }

    footer span {
        display: block;
        margin-top: 15px;
        color: #718b7d;
        font-size: 9px;
    }


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .hero {
        grid-template-columns: 1fr;
        padding: 70px 6%;
    }

    .hero-card {
        justify-self: start;
    }

    .criteria-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .decision-flow {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .decision-arrow {
        display: none;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .navbar {
        min-height: auto;
        flex-wrap: wrap;
        gap: 12px;
        padding: 15px 5%;
    }

        .navbar nav {
            order: 3;
            width: 100%;
            justify-content: center;
        }

            .navbar nav button {
                padding: 8px 10px;
                font-size: 11px;
            }

    .demo-button {
        font-size: 10px;
        padding: 9px 11px;
    }


    .hero {
        padding: 55px 5%;
        gap: 40px;
    }

        .hero h1 {
            font-size: 47px;
            letter-spacing: -2px;
        }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-button {
        width: 100%;
    }

    .hero-property {
        grid-template-columns: 100px 1fr;
    }


    .how-section,
    .app-section {
        padding: 65px 5%;
    }

    .clear-model-grid {
        grid-template-columns: 1fr;
    }

    .clear-principle {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }


    .discover-header,
    .advisor-header,
    .decision-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .criteria-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .analyze-button {
        justify-content: center;
    }


    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }


    .client-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .client-stats {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .advice-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .advice-actions button {
            width: 100%;
        }


    .remuneration-header {
        flex-direction: column;
    }

    .remuneration-grid {
        grid-template-columns: 1fr;
    }


    .decision-flow {
        grid-template-columns: 1fr;
    }

    .decision-summary {
        align-items: flex-start;
    }

        .decision-summary h3 {
            font-size: 19px;
        }

    .decision-actions {
        flex-direction: column;
    }

        .decision-actions button {
            width: 100%;
        }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 450px) {

    .logo small {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-card {
        padding: 16px;
    }

    .hero-match-reasons {
        grid-template-columns: 1fr;
    }

    .property-actions {
        grid-template-columns: 1fr;
    }

    .client-stats {
        flex-direction: column;
        gap: 12px;
    }
}
