:root {
    --font-body: "Roboto", sans-serif;
    --font-heading: "Roboto", sans-serif;
    --primary: #2f5d50;
    --primary-variant: #2f5d50;
    --accent: #2f5d50;
    --surface: #fff;
    --mint-bg: #659e8a2f;
    --surface-variant: #eef6f2;
    --on-surface: #40524d;
    --on-surface-strong: #0d1f1a;
    --outline: rgba(47, 93, 80, .16);
    --radius: 18px;
    --shadow-sm: 0 10px 28px rgba(3, 30, 22, .1);
    --shadow-md: 0 18px 48px rgba(3, 30, 22, .16);
    --shadow-lg: 0 26px 64px rgba(3, 30, 22, .2)
}

*,
:after,
:before {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body,
html {
    margin: 0;
    padding: 0
}

body {
    background: var(--surface);
    color: var(--on-surface);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--on-surface-strong);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -.015em;
    margin: 0 0 .5rem
}

h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.2
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2rem);
    line-height: 1.25
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.3
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.4
}

a,
button,
input,
li,
p,
span,
textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65
}

.lead {
    color: #2c3e36;
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    line-height: 1.6
}

.eyebrow {
    color: var(--primary);
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    margin-bottom: .625rem;
    text-transform: uppercase
}

a:focus-visible,
button:focus-visible {
    border-radius: .625rem;
    outline: 3px solid rgba(47, 93, 80, .35);
    outline-offset: 2px
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    padding-left: clamp(16px, 5vw, 40px);
    padding-right: clamp(16px, 5vw, 40px);
    width: 100%
}

header,
section {
    padding-left: 0;
    padding-right: 0;
    width: 100%
}

section {
    padding: 4.5rem 0
}

@media (max-width:768px) {
    section {
        padding: 3.5rem 0
    }
}

.section-mint {
    background: var(--mint-bg)
}

.section-wash {
    background: #fff
}

.btn {
    align-items: center;
    border-radius: .875rem;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-body);
    font-weight: 800;
    gap: .625rem;
    padding: .875rem 1.25rem;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease
}

.btn.primary {
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(47, 93, 80, .25);
    color: #fff
}

.btn.primary:focus-visible,
.btn.primary:hover {
    box-shadow: 0 12px 32px rgba(47, 93, 80, .35);
    transform: translateY(-2px)
}

.btn.ghost {
    background: #fff;
    border: 1px solid var(--outline);
    color: var(--primary)
}

.btn.ghost:focus-visible,
.btn.ghost:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(47, 93, 80, .18);
    transform: translateY(-2px)
}

.btns {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem;
    justify-content: flex-start;
    margin-top: 1.5rem
}

.frame {
    background: #fff;
    border: 1px solid rgba(47, 93, 80, .14);
    border-radius: 1.375rem;
    box-shadow: var(--shadow-md);
    max-width: 400px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%
}

.frame:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px)
}

.frame img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
    width: 100%
}

.frame:hover img {
    transform: scale(1.05)
}

.split {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1.05fr .95fr
}

@media (max-width:980px) {
    .split {
        gap: 2.5rem;
        grid-template-columns: 1fr
    }
}

.hero {
    background: #fff;
    border-bottom: 1px solid var(--outline);
    padding: 5rem 0 3.5rem
}

@media (max-width:768px) {
    .hero {
        padding: 3.5rem 0 2.5rem
    }
}

.hero .btns {
    margin-top: 1.5rem
}

#why .why-wrap {
    align-items: start;
    margin-top: 2.5rem
}

.why-steps {
    display: grid;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0 0 0 2rem;
    position: relative
}

.why-steps:before {
    background: rgba(47, 93, 80, .2);
    border-radius: 2px;
    bottom: 1.75rem;
    content: "";
    left: 1.75rem;
    position: absolute;
    top: 1.75rem;
    width: 2px
}

.why-steps .step {
    align-items: start;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 3.5rem 1fr;
    transition: transform .3s ease
}

.why-steps .step:hover {
    transform: translateX(8px)
}

.why-steps .badge {
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(47, 93, 80, .24);
    color: #fff;
    display: grid;
    flex-shrink: 0;
    height: 3.5rem;
    place-items: center;
    transition: all .3s ease;
    width: 3.5rem;
    z-index: 1
}

.why-steps .step:hover .badge {
    box-shadow: 0 12px 24px rgba(47, 93, 80, .35);
    transform: scale(1.1)
}

.why-steps .badge svg {
    height: 22px;
    width: 22px
}

.why-steps h3 {
    color: var(--on-surface-strong);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 .5rem
}

.why-steps p {
    color: #2f4a41;
    font-size: .9375rem;
    margin: 0
}

.pricing-frame {
    margin-top: 1.5rem
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--outline);
    border-radius: 1.375rem;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    text-align: left
}

.pricing-card h3 {
    color: var(--on-surface-strong);
    font-size: 1.5rem;
    margin: 0 0 1rem
}

.price-tag {
    color: var(--primary);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: .5rem
}

.price-period {
    color: var(--on-surface);
    font-size: .875rem;
    font-weight: 400
}

.price-note {
    color: #2c3e36;
    font-size: .875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem
}

.pricing-card h4 {
    color: var(--on-surface-strong);
    font-size: 1.125rem;
    margin: 1.5rem 0 .75rem
}

.pricing-list {
    display: grid;
    gap: .625rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.pricing-list li {
    color: #2f4a41;
    font-size: .9375rem;
    line-height: 1.6;
    padding-left: 1.75rem;
    position: relative
}

.pricing-list li:before {
    color: var(--primary);
    content: "✓";
    font-size: 1.125rem;
    font-weight: 700;
    left: 0;
    position: absolute
}

.pricing-card .btns {
    margin-top: 1.75rem
}

.tiles {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem
}

@media (min-width:760px) {
    .tiles {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1020px) {
    .tiles {
        grid-template-columns: repeat(4, 1fr)
    }
}

.tile {
    background: #fff;
    border: 1px solid var(--outline);
    border-radius: 1.125rem;
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease
}

.tile:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px) scale(1.02)
}

.tile-icon {
    background: var(--primary);
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(47, 93, 80, .24);
    color: #fff;
    display: grid;
    height: 4.5rem;
    margin: 0 auto 1rem;
    place-items: center;
    transition: all .3s ease;
    width: 4.5rem
}

.tile:hover .tile-icon {
    box-shadow: 0 12px 28px rgba(47, 93, 80, .35);
    transform: scale(1.1)
}

.tile h3 {
    color: var(--on-surface-strong);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 .5rem
}

.tile p {
    color: #2f4a41;
    font-size: .9375rem;
    line-height: 1.6;
    margin: 0
}

.cta {
    background: linear-gradient(135deg, rgba(127, 224, 195, .08), rgba(47, 93, 80, .08));
    border: 2px solid rgba(47, 93, 80, .15);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    color: var(--on-surface-strong);
    margin: 0 auto;
    max-width: 1168px;
    padding: 24px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%
}

.cta:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px)
}

.cta h3 {
    color: var(--on-surface-strong);
    font-size: 1.875rem;
    margin: 0 0 0.5rem
}

.cta p {
    color: #2c3e36;
    font-size: 1.0625rem;
    margin: 0 0 1rem
}

.cta .btns {
    justify-content: center;
    margin-top: 0.5rem
}

@media (max-width:980px) {
    .container {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media (max-width:768px) {
    h1 {
        font-size: 2rem
    }

    .hero .btns {
        flex-direction: column;
        gap: .75rem
    }

    .btn {
        justify-content: center;
        width: 100%
    }

    .cta {
        padding: 2.5rem 1.5rem
    }

    .frame {
        max-width: 100%
    }

    .why-steps {
        padding-left: 0
    }

    .why-steps:before {
        left: .875rem
    }

    .why-steps .step {
        gap: 1rem;
        grid-template-columns: 3rem 1fr
    }

    .why-steps .badge {
        height: 3rem;
        width: 3rem
    }

    .why-steps .badge svg {
        height: 18px;
        width: 18px
    }
}

@media (max-width:560px) {
    .pricing-card {
        padding: 1.5rem
    }

    .price-tag {
        font-size: 1.875rem
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    :after,
    :before {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

#why h2 {
    text-align: center;
    margin-bottom: 2rem;
}