* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #08752f;
    --green-dark: #075827;
    --green-soft: #edf8f0;

    --orange: #ef5a18;
    --orange-dark: #cf3f0a;
    --orange-soft: #fff2eb;

    --yellow: #f5bd08;
    --yellow-soft: #fff8dc;

    --red: #dc3825;
    --red-soft: #fff0ee;

    --text: #173025;
    --muted: #66736c;
    --border: #e5ebe6;
    --background: #fbfcfa;
    --white: #ffffff;

    --shadow: 0 18px 50px rgba(21, 60, 37, .08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Tahoma, Arial, sans-serif;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 92px;
    height: 56px;
    object-fit: contain;
}

.brand-name {
    padding-right: 12px;
    border-right: 1px solid var(--border);
}

.brand-name strong {
    display: block;
    color: var(--green-dark);
    font-size: 17px;
}

.brand-name span {
    display: block;
    color: var(--orange);
    font-size: 9px;
    letter-spacing: 1.5px;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-menu a {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    color: #48564f;
    transition: .2s ease;
}

.desktop-menu a:hover,
.desktop-menu a.active {
    color: var(--green);
}

.desktop-menu a.active::after {
    content: "";
    position: absolute;
    height: 2px;
    right: 0;
    left: 0;
    bottom: -10px;
    background: var(--green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login {
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    background: #fff;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 11px;
    transition: .2s ease;
}

.btn-green {
    background: var(--green);
    color: #fff;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 9px 25px rgba(8, 117, 47, .18);
}

.btn:hover {
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    width: 43px;
    height: 43px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: white;
    color: var(--green-dark);
    cursor: pointer;
    font-size: 21px;
}

.mobile-menu {
    display: none;
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 50%, rgba(245,189,8,.07), transparent 23%),
        radial-gradient(circle at 92% 10%, rgba(8,117,47,.06), transparent 25%),
        #fff;
}

.hero-grid {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-soft);
    color: var(--green-dark);
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
}

.badge span {
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.25;
    letter-spacing: -2px;
    color: var(--green-dark);
}

.hero h1 span {
    display: block;
    color: var(--orange);
}

.hero-description {
    max-width: 620px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 16px;
    line-height: 2;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.btn-main {
    padding: 15px 22px;
    background: var(--green);
    color: white;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 14px 30px rgba(8,117,47,.18);
}

.btn-outline {
    padding: 14px 20px;
    background: white;
    color: var(--green-dark);
    border: 1px solid #bcd2c4;
    font-size: 13px;
    font-weight: 700;
}

.privacy-note {
    margin-top: 15px;
    color: #78837d;
    font-size: 11px;
}

.privacy-note span {
    color: var(--green);
    font-weight: bold;
}


/* HERO LOGO */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-showcase {
    width: min(100%, 470px);
    min-height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-showcase img {
    position: relative;
    z-index: 2;
    width: 360px;
    border-radius: 22px;
    mix-blend-mode: multiply;
}

.logo-glow {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(245,189,8,.13),
            rgba(239,90,24,.07) 45%,
            rgba(8,117,47,.04) 65%,
            transparent 72%);
}

.bars {
    position: absolute;
    left: 18px;
    bottom: 20px;
    z-index: 3;
    display: flex;
    align-items: end;
    gap: 7px;
    opacity: .13;
}

.bar {
    width: 25px;
    border-radius: 20px;
}

.bar.green {
    height: 80px;
    background: var(--green);
}

.bar.orange {
    height: 125px;
    background: var(--orange);
}

.bar.yellow {
    height: 170px;
    background: var(--yellow);
}


/* STATUS */

.project-status {
    padding: 0 0 80px;
    background: #fff;
}

.status-panel {
    display: grid;
    grid-template-columns: .75fr 1.25fr 1fr;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.score-area {
    text-align: center;
}

.score-ring {
    width: 145px;
    height: 145px;
    margin: auto;
    padding: 12px;
    border-radius: 50%;
    background: conic-gradient(
        var(--green) 0 55%,
        var(--yellow) 55% 72%,
        var(--orange) 72% 82%,
        #edf0ed 82% 100%
    );
}

.score-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.score-inner strong {
    font-size: 34px;
    line-height: 1;
    color: var(--green-dark);
}

.score-inner span {
    font-size: 11px;
    margin-top: 7px;
}

.score-area small {
    display: block;
    margin-top: 9px;
    color: var(--muted);
}

.status-main {
    padding-inline: 20px;
    border-inline: 1px solid var(--border);
}

.status-main h2,
.important-alerts h2 {
    font-size: 16px;
    margin-bottom: 18px;
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mini-status {
    text-align: center;
    padding: 18px 10px;
    border-radius: 15px;
}

.mini-status strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
}

.mini-status span {
    font-size: 10px;
    font-weight: 700;
}

.mini-status.good {
    background: var(--green-soft);
    color: var(--green);
}

.mini-status.danger {
    background: var(--red-soft);
    color: var(--red);
}

.mini-status.warning {
    background: var(--yellow-soft);
    color: #b67b00;
}

.alert-item {
    display: flex;
    gap: 11px;
    margin-bottom: 14px;
}

.alert-icon {
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    font-weight: bold;
}

.danger-alert .alert-icon {
    background: var(--red);
}

.warning-alert .alert-icon {
    background: var(--yellow);
}

.alert-item strong {
    display: block;
    font-size: 11px;
    margin-bottom: 3px;
}

.danger-alert strong {
    color: var(--red);
}

.warning-alert strong {
    color: #bc8100;
}

.alert-item p {
    font-size: 10px;
    color: var(--muted);
}


/* COMMON */

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.section-label {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.section-label span {
    color: var(--orange);
}

.section-title h2 {
    margin-top: 8px;
    font-size: clamp(27px, 4vw, 39px);
    color: var(--green-dark);
}

.section-title p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
}


/* FEATURES */

.features {
    background: #fbfcfa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.feature-card {
    background: white;
    padding: 28px 23px;
    border: 1px solid var(--border);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(20, 54, 34, .04);
    transition: .25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    color: white;
    font-size: 23px;
    font-weight: bold;
}

.green-icon {
    background: var(--green);
}

.orange-icon {
    background: var(--orange);
}

.red-icon {
    background: var(--red);
}

.yellow-icon {
    background: var(--yellow);
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.9;
}


/* STEPS */

.how {
    background: #fffdf6;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 14px;
}

.step-card {
    min-height: 240px;
    position: relative;
    padding: 38px 20px 22px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 53, 39, .05);
}

.step-number {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    font-weight: bold;
}

.step-green .step-number {
    background: var(--green);
}

.step-orange .step-number {
    background: var(--orange);
}

.step-red .step-number {
    background: var(--red);
}

.step-yellow .step-number {
    background: var(--yellow);
}

.step-icon {
    font-size: 39px;
    margin: 12px 0;
}

.step-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--muted);
    font-size: 11px;
}

.step-arrow {
    color: #a7bd96;
    font-size: 25px;
}


/* ABOUT */

.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about h2 {
    margin-top: 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.5;
    color: var(--green-dark);
}

.about-text p {
    color: var(--muted);
    font-size: 14px;
    line-height: 2;
}

.about-text .disclaimer {
    margin-top: 18px;
    padding: 15px;
    background: var(--yellow-soft);
    border-right: 3px solid var(--yellow);
    border-radius: 8px;
    font-size: 11px;
}


/* CTA */

.cta-section {
    padding: 0 0 75px;
    background: white;
}

.cta-box {
    min-height: 150px;
    position: relative;
    overflow: hidden;
    padding: 30px 35px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        linear-gradient(
            100deg,
            var(--green-dark) 0%,
            var(--green) 32%,
            #8e9e16 68%,
            var(--yellow) 100%
        );
    color: white;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 27px;
}

.cta-content p {
    font-size: 12px;
    margin-top: 5px;
    color: rgba(255,255,255,.85);
}

.cta-button {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    padding: 14px 22px;
    border-radius: 11px;
    background: white;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: bold;
}

.cta-bars {
    position: absolute;
    left: 25px;
    bottom: -20px;
    height: 150px;
    display: flex;
    align-items: end;
    gap: 8px;
    opacity: .75;
}

.cta-bars span {
    width: 38px;
    border-radius: 30px 30px 0 0;
}

.cta-bars span:nth-child(1) {
    height: 70px;
    background: #078136;
}

.cta-bars span:nth-child(2) {
    height: 110px;
    background: var(--orange);
}

.cta-bars span:nth-child(3) {
    height: 145px;
    background: var(--yellow);
}


/* FOOTER */

.footer {
    padding: 55px 0 20px;
    background: #f7f9f6;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-brand img {
    width: 120px;
    mix-blend-mode: multiply;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.9;
}

.footer-links h3 {
    font-size: 13px;
    margin-bottom: 14px;
}

.footer-links a {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
}

.footer-links a:hover {
    color: var(--green);
}

.copyright {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    color: #87918c;
    font-size: 10px;
}


/* TABLET */

@media (max-width: 1000px) {

    .desktop-menu {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu {
        padding: 10px 20px 20px;
        background: white;
        border-top: 1px solid var(--border);
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu a {
        padding: 12px 15px;
        border-radius: 9px;
        font-size: 13px;
    }

    .mobile-menu a:hover {
        background: var(--green-soft);
    }

    .mobile-menu .mobile-start {
        background: var(--green);
        color: white;
        text-align: center;
        margin-top: 5px;
    }

    .hero-grid {
        min-height: auto;
        padding: 75px 0;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .status-panel {
        grid-template-columns: 1fr 2fr;
    }

    .important-alerts {
        grid-column: 1 / -1;
        padding-top: 20px;
        border-top: 1px solid var(--border);
    }

    .status-main {
        border-left: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .step-arrow {
        display: none;
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav {
        min-height: 70px;
    }

    .brand img {
        width: 70px;
        height: 45px;
    }

    .brand-name {
        display: none;
    }

    .login,
    .btn-green {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 55px 0 35px;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .badge {
        font-size: 10px;
    }

    .hero h1 {
        font-size: clamp(37px, 12vw, 53px);
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .logo-showcase {
        min-height: 250px;
    }

    .logo-showcase img {
        width: min(280px, 85%);
    }

    .logo-glow {
        width: 270px;
        height: 270px;
    }

    .bars {
        display: none;
    }

    .project-status {
        padding-bottom: 55px;
    }

    .status-panel {
        grid-template-columns: 1fr;
        padding: 22px 17px;
    }

    .status-main {
        border: 0;
        padding: 20px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .status-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .important-alerts {
        grid-column: auto;
        border: 0;
        padding-top: 0;
    }

    .section {
        padding: 65px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 29px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        min-height: auto;
        padding: 38px 22px 25px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about h2 {
        font-size: 29px;
    }

    .cta-box {
        padding: 35px 22px;
        text-align: center;
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 25px;
    }

    .cta-button {
        width: 100%;
    }

    .cta-bars {
        opacity: .13;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .copyright {
        flex-direction: column;
        gap: 7px;
        text-align: center;
    }
}


/* VERY SMALL PHONES */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 35px;
    }

    .status-cards {
        grid-template-columns: 1fr;
    }

    .mini-status {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-inline: 17px;
    }

    .mini-status strong {
        margin: 0;
    }
}