:root {
    --dark: #17231f;
    --dark-2: #22332d;
    --green: #315b4b;
    --green-hidden: #315b4b6a;
    --green-light: #dfeae4;
    --cream: #f7f5ef;
    --white: #ffffff;
    --text: #26332e;
    --muted: #68736e;
    --border: #dce1dd;

    --radius: 14px;
    --container: 1120px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}


h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    line-height: 1.15;
}


a {
    color: inherit;
    text-decoration: none;
}

.special-a {
    color: var(--green);
    font-weight: 600;
}


.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}


/* NAVBAR */

.navbar {
    height: 76px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}


.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-container img {
    height: 120px;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: white;
}


.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    background: white;
    color: var(--dark);

    border-radius: 9px;

    font-size: 11px;
    font-weight: 800;
}


.nav-button {
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 8px;

    color: white;

    font-size: 14px;
    font-weight: 600;

    transition: 0.2s;
}


.nav-button:hover {
    background: white;
    color: var(--dark);
}


/* HERO */

.hero {
    min-height: 720px;

    display: flex;
    align-items: center;

    padding-top: 100px;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(75, 120, 98, 0.25),
            transparent 35%
        ),
        var(--dark);

    color: white;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}


.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    opacity: 0.75;
}


.hero h1 {
    max-width: 680px;

    font-size: clamp(42px, 5vw, 68px);
    letter-spacing: -2.5px;
}


.hero h1 span {
    color: #8fb7a2;
}


.hero-text {
    max-width: 570px;

    margin-top: 25px;

    color: #c5d0cb;

    font-size: 17px;
}

.hero-small-text {
    max-width: 570px;

    margin-top: 25px;

    color: #c5d0cb;

    font-size: 14px;
}


.hero-buttons {
    display: flex;
    gap: 14px;

    margin-top: 34px;
}

.hero-grid img {
    width: 100%;
    max-width: 500px;
    height: auto;
    justify-self: center;
}


.primary-button,
.secondary-button,
.white-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 22px;

    border-radius: 9px;

    font-weight: 600;
    font-size: 14px;

    transition: 0.2s;
}


.primary-button {
    background: white;
    color: var(--dark);
}


.primary-button:hover {
    transform: translateY(-2px);
}


.secondary-button {
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
}


.secondary-button:hover {
    background: rgba(255,255,255,0.08);
}


.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 25px;

    color: #aebcb5;

    font-size: 13px;
}


.check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: #426b58;
    color: white;

    font-size: 11px;
}


/* GUIDE */

.hero-visual {
    position: relative;

    display: flex;
    justify-content: center;
}


.guide {
    width: 330px;
    min-height: 430px;

    padding: 25px;

    background: #f4f1e9;
    color: var(--dark);

    transform: rotate(4deg);

    box-shadow: 25px 30px 70px rgba(0,0,0,0.3);
}


.guide-shadow {
    position: absolute;

    width: 330px;
    height: 430px;

    background: #52675c;

    transform: rotate(-4deg);

    opacity: 0.35;
}


.guide-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    border-bottom: 1px solid #cfd3cc;

    padding-bottom: 14px;
}


.guide-logo {
    display: flex;
    flex-direction: column;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 0.9;
}


.guide-location {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}


.guide-title {
    margin-top: 25px;

    font-family: "Manrope", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 0.9;
}


.guide-title span {
    font-weight: 500;
}


.guide-subtitle {
    margin-top: 12px;

    font-size: 11px;
    line-height: 1.4;
}


.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;

    margin-top: 25px;
}


.business-card {
    height: 95px;

    padding: 10px;

    background: white;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.business-card strong {
    font-size: 10px;
    line-height: 1.1;
}


.business-icon {
    font-size: 9px;
    font-weight: 700;
    opacity: 0.5;
}


.guide-footer {
    margin-top: 20px;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;

    text-align: center;
}


/* STATS */

.stats {
    background: var(--green);

    color: white;
}


.stats-grid {
    min-height: 130px;

    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;

    align-items: center;

    text-align: center;
}


.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.stat strong {
    font-family: "Manrope", sans-serif;
    font-size: 30px;
}


.stat span {
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: 0.7;
}


.stat-divider {
    width: 1px;
    height: 45px;

    background: rgba(255,255,255,0.2);
}


/* GENERAL SECTIONS */

.value-section,
.contact-section {
    padding: 110px 0;
}


.section-heading {
    max-width: 650px;
    margin-bottom: 60px;
}


.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.section-heading h2 {
    font-size: clamp(35px, 4vw, 52px);
    letter-spacing: -1.5px;
}


.section-heading h2 span {
    color: var(--green);
}


.section-heading p {
    margin-top: 20px;

    color: var(--muted);
    font-size: 16px;
}


/* VALUE CARDS */

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.value-card {
    padding: 32px;

    background: var(--cream);

    border-radius: var(--radius);
}


.value-number {
    margin-bottom: 55px;

    color: var(--green);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


.value-card h3 {
    font-size: 21px;
}


.value-card p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 14px;
}


/* HOW IT WORKS */

.how-section {
    padding: 110px 0;

    background: var(--cream);
}


.steps {
    max-width: 850px;
    margin: 0 auto;
}


.step {
    display: grid;
    grid-template-columns: 90px 1fr;

    gap: 30px;

    padding: 35px 0;

    border-bottom: 1px solid var(--border);
}


.step:last-child {
    border-bottom: none;
}


.step-number {
    font-family: "Manrope", sans-serif;

    font-size: 24px;
    font-weight: 800;

    color: var(--green);
}


.step h3 {
    font-size: 22px;
}


.step p {
    max-width: 550px;

    margin-top: 8px;

    color: var(--muted);
}


/* CTA */

.cta {
    padding: 80px 0;

    background: var(--dark);
}


.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


.cta h2 {
    max-width: 650px;

    color: white;

    font-size: clamp(34px, 4vw, 50px);
}


.cta h2 span {
    color: #8fb7a2;
}


.cta p {
    margin-top: 15px;

    color: #aebbb5;
}


.white-button {
    flex-shrink: 0;

    background: white;
    color: var(--dark);
}


.white-button:hover {
    transform: translateY(-2px);
}


/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;
    align-items: start;
}


.contact-intro h2 {
    font-size: clamp(36px, 4vw, 50px);
}


.contact-intro h2 span {
    color: var(--green);
}


.contact-intro > p {
    margin-top: 20px;

    color: var(--muted);
}


.contact-detail {
    display: flex;
    gap: 15px;

    margin-top: 35px;
}


.contact-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green-light);
    color: var(--green);

    font-weight: 700;
}


.contact-detail strong {
    font-size: 14px;
}


.contact-detail p {
    margin-top: 3px;

    color: var(--muted);

    font-size: 13px;
}


/* FORM */

.contact-form {
    padding: 35px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {
    display: flex;
    flex-direction: column;

    margin-bottom: 20px;
}


.form-group label {
    margin-bottom: 7px;

    font-size: 13px;
    font-weight: 600;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: white;

    color: var(--text);

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: 0.2s;
}


.form-group textarea {
    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);

    box-shadow: 0 0 0 3px rgba(49,91,75,0.08);
}


.submit-button {
    width: 100%;

    padding: 15px;

    border: none;
    border-radius: 8px;

    background: var(--green-hidden);
    color: white;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor:help;

    transition: 0.2s;
}


.submit-button:hover {
    background: var(--green-hidden);
}


.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


.submit-button span {
    margin-left: 8px;
}


.form-message {
    display: none;

    margin-top: 15px;

    padding: 12px;

    border-radius: 7px;

    font-size: 13px;
}


.form-message.success {
    display: block;

    background: var(--green-light);
    color: var(--green);
}


.form-message.error {
    display: block;

    background: #f7e5e5;
    color: #9b3d3d;
}


.form-disclaimer {
    margin-top: 15px;

    color: var(--muted);

    font-size: 11px;
    text-align: center;
}


/* FOOTER */

footer {
    padding: 35px 0;

    background: #111b17;

    color: white;
}


.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer-content p {
    color: #87958e;

    font-size: 12px;
}


.copyright {
    color: #65716c;

    font-size: 11px;
}

/* PRICING */

.pricing-section {
    padding: 110px 0;
    background: white;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}


.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 35px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: white;

    transition: 0.2s;
}


.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}


.pricing-card.featured {
    border: 2px solid var(--green);

    box-shadow: 0 15px 40px rgba(49, 91, 75, 0.1);
}


.pricing-badge {
    position: absolute;

    top: -13px;
    left: 25px;

    padding: 5px 10px;

    border-radius: 20px;

    background: var(--green);
    color: white;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}


.pricing-label {
    color: var(--green);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.pricing-card h3 {
    margin-top: 18px;

    font-size: 44px;
    letter-spacing: -1.5px;
}


.pricing-card h3 span {
    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}


.pricing-card h3.custom-price {
    font-size: 40px;
}


.pricing-description {
    min-height: 65px;

    margin-top: 12px;

    color: var(--muted);

    font-size: 14px;
}


.pricing-button {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: auto;
    padding: 13px;

    border-radius: 8px;

    background: var(--green);
    color: white;

    font-size: 13px;
    font-weight: 600;

    transition: 0.2s;
}


.pricing-button:hover {
    background: var(--dark);
}


@media (max-width: 850px) {

    .pricing-grid {
        grid-template-columns: 1fr;
    }

}



/* MOBILE */

@media (max-width: 850px) {

    .hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .hero-content {
        text-align: center;
    }


    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons {
        justify-content: center;
    }


    .hero-note {
        justify-content: center;
    }


    .hero-visual {
        margin-bottom: 30px;
    }


    .value-grid {
        grid-template-columns: 1fr;
    }


    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, var(--container));
    }


    .nav-button {
        padding: 8px 12px;

        font-size: 12px;
    }


    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .primary-button,
    .secondary-button {
        justify-content: center;
    }


    .guide,
    .guide-shadow {
        width: 285px;
        min-height: 370px;
        height: 370px;
    }


    .guide-title {
        font-size: 29px;
    }


    .business-card {
        height: 75px;
    }


    .stats-grid {
        grid-template-columns: 1fr;

        padding: 25px 0;
        gap: 20px;
    }


    .stat-divider {
        display: none;
    }


    .value-section,
    .contact-section,
    .how-section {
        padding: 80px 0;
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-form {
        padding: 22px;
    }


    .step {
        grid-template-columns: 55px 1fr;

        gap: 15px;
    }


    .step-number {
        font-size: 18px;
    }


    .step h3 {
        font-size: 18px;
    }


    .footer-content {
        flex-direction: column;

        align-items: flex-start;
    }

}