.btn-primary,
.feature-card,
.hero-image,
.referral-note {
    text-align: center
}

.btn-sticky i,
.feature-card i,
.summary-item i {
    color: var(--turf-green)
}

:root {
    --turf-green: #27764A;
    --sage-green: #6C9F75;
    --bright-gold: #FBDC1C;
    --bronze-spice: #C45E29;
    --dark-emerald: #1B6633;
    --text-dark: #1e2b3a;
    --bg-light: #F0F7F0;
    --white: #ffffff
}

.steps-list li,
h2 {
    position: relative
}

h2,
h3 {
    color: var(--dark-emerald)
}

:root {
    --shadow: 0 8px 20px rgba(39, 118, 74, 0.15);
    --border-radius: 24px
}

.btn-primary {
    background: var(--turf-green);
    border: none
}

.feature-card,
.summary-card {
    border-radius: var(--border-radius)
}

.btn-sticky {
    background: var(--bright-gold);
    color: var(--text-dark);
    transition: .2s
}

.btn-sticky i {
    margin-right: 8px
}

.summary-card {
    background: linear-gradient(145deg, var(--sage-green) 0, #e0f0e0 100%);
    padding: 1.5rem;
    border-left: 8px solid var(--bright-gold);
    margin: 2rem 0;
    box-shadow: var(--shadow)
}

.feature-grid,
.summary-grid {
    margin-top: 1rem
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem
}

.summary-item {
    background: rgba(255, 255, 255, .7);
    padding: .6rem;
    border-radius: 16px;
    font-size: .95rem;
    font-weight: 600
}

.summary-item i {
    width: 1.8rem
}

.referral-note {
    background: var(--bright-gold);
    color: #1e3a2e;
    padding: 1rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.2rem
}

.feature-card,
.steps-list {
    background: var(--bg-light)
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.feature-grid,
.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.hero-content {
    order: 2
}

.hero-image {
    order: 1
}

.hero-about img,
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow)
}

@media (min-width:600px) {
    .hero {
        flex-direction: row;
        align-items: center
    }

    .hero-content {
        flex: 1;
        order: 1
    }

    .hero-image {
        flex: 1;
        order: 2
    }
}

.feature-card {
    padding: 1.5rem .8rem;
    font-weight: 600;
    border: 1px solid #c8e0c8
}

.feature-card i {
    font-size: 2.2rem;
    margin-bottom: .5rem
}

.steps-list {
    border-radius: var(--border-radius);
    padding: 1.5rem;
    list-style: none;
    counter-reset: step-counter
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1.2rem;
    padding-left: 2.8rem;
    font-weight: 500
}

.steps-list li::before {
    content: counter(step-counter);
    background: var(--turf-green);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0
}

.nav-menu.active,
.navbar {
    display: flex
}

.screenshot-grid img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    background: #ddd
}

.badge,
h2::after {
    background: var(--bright-gold)
}

.disclaimer i {
    color: var(--bright-gold)
}

.nav-menu a,
body {
    color: var(--text-dark)
}

.badge {
    color: #1e3a2e;
    padding: .2rem 1rem;
    border-radius: 30px;
    font-weight: 700
}

.navbar,
body {
    background: var(--white)
}

@media (max-width:480px) {
    .btn-sticky {
        font-size: 1.1rem;
        padding: .6rem 1rem
    }

    .sticky-download {
        padding: .5rem 1rem
    }

    body {
        padding-bottom: 80px
    }

    .screenshot-grid {
        gap: .5rem
    }

    h1 {
        font-size: 1.9rem
    }

    h2 {
        font-size: 1.7rem
    }
}

@media (max-width:400px) {

    .screenshot-grid,
    .summary-grid {
        grid-template-columns: 1fr
    }

    .referral-note {
        font-size: 1rem
    }
}

img {
    max-width: 100%;
    height: auto
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --shadow: 0 8px 20px rgba(39, 118, 74, 0.1);
    --border-radius: 24px
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    padding-bottom: 90px;
    scroll-behavior: smooth
}

.navbar {
    justify-content: space-between;
    align-items: center;
    padding: .7rem 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 100
}

.nav-menu,
h2::after {
    position: absolute;
    left: 0
}

.logo img {
    width: 48px;
    height: 48px;
    display: block;
    border-radius: 12px
}

.hamburger {
    background: 0 0;
    border: none;
    font-size: 2rem;
    color: var(--turf-green);
    cursor: pointer;
    display: block
}

.nav-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    top: 70px;
    width: 100%;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    border-radius: 0 0 20px 20px
}

.nav-menu a {
    text-decoration: none;
    font-weight: 600;
    padding: .7rem 0;
    border-bottom: 1px solid #d4e8d4;
    font-size: 1.2rem
}

.breadcrumb a,
.nav-menu a:hover {
    color: var(--turf-green)
}

@media (min-width:768px) {
    .hamburger {
        display: none
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        width: auto;
        background: 0 0;
        box-shadow: none;
        padding: 0;
        gap: 2rem
    }

    .nav-menu a {
        border-bottom: none;
        padding: 0;
        font-size: 1rem
    }
}

.breadcrumb,
.value-card {
    background: var(--bg-light)
}

.breadcrumb {
    padding: .7rem 1.2rem;
    border-radius: 40px;
    margin: 1rem 1.2rem 0;
    font-size: .95rem
}

.container,
.footer .container {
    max-width: 600px;
    margin: 0 auto
}

.breadcrumb a {
    text-decoration: none;
    font-weight: 500
}

.breadcrumb span,
h1 {
    color: var(--text-dark)
}

.container {
    padding: 0 1.2rem
}

.team-member,
.value-card {
    padding: 1.5rem 1rem;
    text-align: center
}

h1 {
    line-height: 1.3;
    font-size: 2.4rem;
    color: var(--dark-emerald);
    margin: 1.5rem 0 1rem
}

h2 {
    font-size: 2rem;
    color: var(--turf-green);
    margin: 2rem 0 1rem;
    padding-bottom: .5rem
}

h2::after {
    content: '';
    width: 70px;
    height: 4px;
    bottom: 0;
    border-radius: 4px
}

h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 .5rem
}

.hero-about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin: 1.5rem 0
}

.team-grid,
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 2rem 0
}

.values-grid {
    gap: 1rem
}

.value-card {
    border-radius: var(--border-radius);
    border: 1px solid #c8e0c8
}

.value-card i {
    font-size: 2.5rem;
    color: var(--turf-green);
    margin-bottom: .5rem
}

.team-grid {
    gap: 1.5rem
}

.team-member {
    background: #fff;
    border-radius: 30px;
    box-shadow: var(--shadow)
}

.btn-primary,
.btn-sticky {
    border-radius: 60px;
    display: inline-block;
    text-decoration: none
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    background: #ddd
}

.btn-primary {
    background: var(--turf-green);
    color: #fff;
    font-weight: 700;
    padding: .9rem 2rem;
    font-size: 1.2rem;
    box-shadow: 0 8px 14px rgba(39, 118, 74, .3);
    transition: background .2s
}

.btn-primary:hover {
    background: var(--dark-emerald)
}

.btn-sticky {
    background: var(--bright-gold);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.4rem;
    padding: .8rem 1.8rem;
    border: 2px solid #fff
}

.sticky-download {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--turf-green);
    padding: .8rem 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, .15);
    z-index: 200;
    text-align: center
}

.footer {
    background: #1a2e24;
    color: #ddd;
    padding: 2rem 1.5rem 1rem;
    margin-top: 3rem;
    font-size: .9rem
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem
}

.footer-links a {
    color: var(--bright-gold);
    text-decoration: none
}

.disclaimer {
    border-top: 1px solid #3a5a4a;
    padding-top: 1.5rem;
    text-align: center;
    font-size: .85rem
}

@media (max-width:480px) {
    .btn-sticky {
        font-size: 1.1rem;
        padding: .6rem 1rem
    }

    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.8rem
    }

    .team-grid,
    .values-grid {
        grid-template-columns: 1fr
    }
}