:root {
    --bg: #f2f2f0;
    --green: #43a359;
    --lime: #9be554;
    --dark: #06251c;
    --dark-2: #0b3428;
    --text: #10201b;
    --muted: #66736c;
    --white: #ffffff;
    --border: #dfe7df;
    --soft: #eef7ee;
    --gradient: linear-gradient(-70.2189deg, #9be554 0%, #43a359 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-gradient {
    background: var(--gradient);
    color: #06251c;
    box-shadow: 0 12px 26px rgba(67, 163, 89, 0.22);
}

.btn-gradient:hover {
    box-shadow: 0 18px 36px rgba(67, 163, 89, 0.28);
}

.btn-dark {
    background: var(--dark);
    color: white;
}

.btn-outline {
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(242, 242, 240, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(6, 37, 28, 0.08);
}

.nav-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    width: 130px;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 800;
    color: #263b34;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: white;
    font-size: 20px;
    cursor: pointer;
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

section:target .reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

/* HERO */
.hero {
    padding: 72px 0 60px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border);
    color: var(--green);
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero h1 {
    max-width: 900px;
    margin: auto;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.96;
    letter-spacing: -3.5px;
}

.hero h1 span {
    color: var(--green);
}

.hero-text {
    max-width: 620px;
    margin: 22px auto 28px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 16px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
}

/* HERO DASHBOARD */
.hero-visual {
    position: relative;
    max-width: 980px;
    margin: 65px auto 0;
}

.product-window {
    max-width: 980px;
    margin: auto;
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 35px 90px rgba(6, 37, 28, 0.12);
    overflow: hidden;
}

.window-top {
    height: 42px;
    background: #fafafa;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 1px solid #e9eee9;
}

.window-top span {
    width: 10px;
    height: 10px;
    background: #d7dfd7;
    border-radius: 50%;
}

.window-top strong {
    margin-left: 10px;
    font-size: 13px;
    color: var(--muted);
}

.product-screen {
    min-height: 430px;
    padding: 22px;
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    background: #ffffff;
}

.screen-sidebar {
    background: #f6f8f6;
    border-radius: 22px;
    padding: 18px;
    text-align: left;
}

.side-logo {
    font-weight: 900;
    color: var(--green);
    margin-bottom: 24px;
}
.side-logo img{
    width: 44%;
}

.screen-sidebar p {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 800;
    color: #6b756f;
}

.screen-sidebar .side-active {
    background: var(--green);
    color: white;
    padding: 10px 14px;
    border-radius: 999px;
}

.screen-main {
    background: #f8faf8;
    border-radius: 22px;
    padding: 22px;
    text-align: left;
}

.screen-main-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.screen-main-top small {
    color: var(--muted);
    font-weight: 700;
}

.screen-main-top h3 {
    margin-top: 6px;
    font-size: 22px;
}

.status-pill {
    background: #e8f7e9;
    color: var(--green);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.screen-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.screen-stats div {
    height: 98px;
    border-radius: 18px;
    background: white;
    border: 1px solid #e4ece4;
    padding: 16px;
}

.screen-stats small {
    color: var(--muted);
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.screen-stats strong {
    display: block;
    font-size: 24px;
    color: var(--dark);
}

.screen-stats span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--green);
    font-weight: 800;
}

.screen-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 16px;
}

.screen-chart {
    height: 210px;
    background: white;
    border: 1px solid #e4ece4;
    border-radius: 18px;
    padding: 20px;
}

.chart-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.chart-head small {
    color: var(--muted);
}

.bars {
    height: 145px;
    display: flex;
    align-items: end;
    gap: 12px;
}

.bars span {
    flex: 1;
    border-radius: 12px 12px 0 0;
    background: var(--green);
    animation: chartPulse 2.8s ease-in-out infinite alternate;
}

@keyframes chartPulse {
    from {
        transform: scaleY(0.78);
        opacity: 0.75;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.activity-card {
    background: white;
    border: 1px solid #e4ece4;
    border-radius: 18px;
    padding: 18px;
}

.activity-card strong {
    display: block;
    margin-bottom: 18px;
}

.activity-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 13px;
}

.activity-row span {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-row p {
    font-size: 13px;
    color: var(--muted);
}

.floating-chip {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(6, 37, 28, 0.12);
    padding: 13px 17px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    animation: softFloat 5s ease-in-out infinite;
    z-index: 2;
}

.chip-1 {
    left: -7%;
    top: 9%;
}

.chip-2 {
    right: 3%;
    top: 35%;
    animation-delay: 0.8s;
}

.chip-3 {
    left: 16%;
    bottom: -4%;
    animation-delay: 1.4s;
}

@keyframes softFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* BRAND MARQUEE */
.brand-strip {
    padding: 50px 0 90px;
}

.brand-strip h4 {
    text-align: center;
    margin-bottom: 28px;
    color: var(--muted);
}

.logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 58px;
    width: max-content;
    animation: logoScroll 35s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    width: 150px;
    height: 58px;
    border-radius: 999px;
    background: #eef7ee;
    border: 1px solid #d8ead8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-item img {
    max-width: 120px;
    max-height: 42px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.82;
    transition: 0.25s ease;
}

.logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* SECTION HEAD */
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.eyebrow {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -2px;
}

.section-head p {
    color: var(--muted);
    margin-top: 16px;
    line-height: 1.6;
}

/* DARK FEATURE SECTION */
.dark-section {
    margin: 0 12px;
    border-radius: 46px;
    padding: 90px 0;
    color: white;
    background: linear-gradient(135deg, #06251c 0%, #0b3428 100%);
}

.dark-section .section-head p {
    color: #b9cdc5;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.glow-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    min-height: 270px;
    transition: 0.3s ease;
}

.glow-card:hover {
    transform: translateY(-6px);
    border-color: rgba(155, 229, 84, 0.25);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #eef7ee;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 70px;
}

.glow-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.glow-card p {
    color: #bdd4cc;
    line-height: 1.6;
}

/* TOOLKIT */
.toolkit {
    padding: 105px 0;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.tool-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    min-height: 215px;
    box-shadow: 0 18px 50px rgba(6, 37, 28, 0.045);
}

.tool-card.large {
    grid-column: span 2;
}

.tool-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.tool-card h3 {
    margin: 22px 0 10px;
    font-size: 22px;
}

.tool-card p {
    color: var(--muted);
    line-height: 1.6;
}

/* SHOWCASE */
.showcase-section {
    padding: 100px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.showcase-grid h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.showcase-grid p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 26px;
}

.showcase-card {
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    min-height: auto;
}

.showcase-card img {
    width: 100%;
    display: block;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(6, 37, 28, 0.12);
}

/* STEPS */
.steps {
    padding: 95px 0;
    background: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step-card {
    background: #f8faf8;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 30px;
}

.step-no {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--muted);
    line-height: 1.6;
}

/* STATS */
.stats-section {
    padding: 80px 0 105px;
}

.stats-box {
    background: var(--dark);
    color: white;
    border-radius: 38px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.stats-box h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -2px;
}

.stats-box p {
    margin-top: 16px;
    color: #bdd1c8;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.stats-grid div {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 28px;
}

.stats-grid strong {
    display: block;
    font-size: 42px;
    color: var(--lime);
    margin-bottom: 6px;
}

.stats-grid span {
    color: #c8d8d1;
}

/* PRICING */
.pricing {
    padding: 105px 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

.price-card {
    background: white;
    border-radius: 30px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 70px rgba(6, 37, 28, 0.075);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    background: var(--dark);
    color: white;
    position: relative;
    overflow: visible;
    transform: translateY(-18px);
    padding-top: 34px;
}

.badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--dark);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
    z-index: 3;
}


.price-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.price-desc {
    color: var(--muted);
    min-height: 45px;
    font-size: 14px;
    line-height: 1.5;
}

.price-card.popular .price-desc {
    color: #d3e6dc;
}

.price {
    font-size: 43px;
    font-weight: 950;
    margin: 26px 0;
    letter-spacing: -2px;
}

.price span {
    font-size: 14px;
    color: var(--muted);
}

.price-card.popular .price span {
    color: #e2efe8;
}

.price-card ul {
    list-style: none;
    display: grid;
    gap: 13px;
    margin-top: 24px;
    font-size: 14px;
    flex: 1;
}

.plan-cta {
    width: 100%;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 36px;
    border: 1px dashed var(--border);
    border-radius: 24px;
    background: var(--soft);
    color: var(--muted);
    text-align: center;
}

.empty-state h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

.empty-state .btn {
    margin-top: 18px;
}

.price-card li::before {
    content: "✓";
    color: var(--green);
    margin-right: 9px;
    font-weight: 900;
}

.price-card.popular li::before {
    color: var(--lime);
}

/* COMPARE */
.compare {
    padding: 95px 0;
}

.table-wrap {
    overflow-x: auto;
    background: white;
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(6, 37, 28, 0.08);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

th,
td {
    padding: 18px;
    border-bottom: 1px solid #edf2ed;
    text-align: center;
    font-size: 14px;
}

th:first-child,
td:first-child {
    text-align: left;
}

th {
    background: #f7faf7;
}

/* APP CTA */
.app-cta {
    padding: 90px 0;
}

.app-box {
    border-radius: 36px;
    padding: 55px;
    background: linear-gradient(135deg, #06251c 0%, #124b38 100%);
    color: white;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 30px;
    align-items: center;
    overflow: hidden;
}

.app-box h2 {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1;
    letter-spacing: -2px;
}

.app-box p {
    margin: 18px 0 25px;
    color: #dfffea;
    line-height: 1.6;
}

.app-feature-list {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 12px 22px;
    margin: 0 0 28px;
}

.app-feature-list span {
    color: #e2f7e8;
    font-size: 14px;
    font-weight: 700;
}

.phone-dashboard {
    background: white;
    color: var(--text);
    border-radius: 34px;
    padding: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.phone-bar {
    width: 80px;
    height: 8px;
    background: #dbe8df;
    border-radius: 30px;
    margin: 0 auto 24px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.phone-header small {
    color: var(--muted);
    font-weight: 800;
}

.phone-header h3 {
    font-size: 34px;
    margin-top: 5px;
}

.phone-header span {
    background: #e8f7e9;
    color: var(--green);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
}

.phone-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.phone-mini-stats div {
    background: #f6f8f6;
    border: 1px solid #e4ece4;
    border-radius: 18px;
    padding: 16px;
}

.phone-mini-stats strong {
    display: block;
    font-size: 22px;
}

.phone-mini-stats small {
    color: var(--muted);
}

.phone-list {
    display: grid;
    gap: 13px;
}

.phone-list p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.phone-list span {
    width: 9px;
    height: 9px;
    background: var(--green);
    border-radius: 50%;
}

/* FAQ */
.faq {
    padding: 90px 0;
}

.faq-wrap {
    max-width: 820px;
    margin: auto;
}

.faq-item {
    border: 1px solid var(--border);
    background: white;
    border-radius: 18px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    padding: 19px 22px;
    cursor: pointer;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    text-align: left;
}

.faq-q:focus-visible {
    outline: 3px solid rgba(67, 163, 89, 0.3);
    outline-offset: -3px;
}

.faq-q span {
    transition: transform 0.2s ease;
}

.faq-item.active .faq-q span {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 22px 19px;
    color: var(--muted);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-a {
    display: block;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: white;
    padding: 36px 0 28px;
    border-radius: 40px 40px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 90px;
    gap: 24px;
}

.footer img {
    width: 125px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: #b7cbc3;
    font-size: 14px;
}

.footer-bottom {
    color: #b7cbc3;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card.popular {
        transform: none;
        margin-top: 16px;
    }
}

@media (max-width: 900px) {
    .nav-inner {
        height: 72px;
    }

    .logo img {
        width: 112px;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 82px;
        background: white;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        box-shadow: 0 20px 50px rgba(6, 37, 28, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.25s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-actions .btn-dark {
        display: none;
    }

    .nav-actions .btn-gradient {
        padding: 11px 16px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
    }

    .product-screen,
    .screen-content-grid,
    .showcase-grid,
    .stats-box,
    .stats-grid,
    .app-box {
        grid-template-columns: 1fr;
    }

    .screen-stats {
        grid-template-columns: 1fr;
    }

    .floating-chip {
        display: none;
    }

    .feature-grid,
    .tool-grid,
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .tool-card.large {
        grid-column: span 1;
    }

    .dark-section {
        border-radius: 32px;
        padding: 70px 0;
    }

    .stats-box,
    .app-box {
        padding: 34px;
    }

    .app-feature-list {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .container {
        width: calc(100% - 28px);
    }

    .nav-actions .btn-gradient {
        display: none;
    }

    .btn {
        padding: 12px 18px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .product-screen {
        padding: 14px;
    }

    .screen-main,
    .screen-sidebar {
        padding: 16px;
    }

    .section-head h2 {
        font-size: 34px;
    }

    .screen-main-top {
        flex-direction: column;
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .btn,
    .glow-card {
        transition: none;
    }
}
