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

body {
    font-family: Arial, sans-serif;
}

.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 35, 15, 0.45), rgba(0, 35, 15, 0.45)),
        url("../images/hero.png") center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 30px;
}

.content {
    max-width: 900px;
}

h1 {
    font-size: clamp(42px, 7vw, 88px);
    margin-bottom: 20px;
}

p {
    font-size: clamp(18px, 2.5vw, 28px);
    margin-bottom: 32px;
}

.button {
    display:inline-block;
    background:#67b82e;
    color:white;
    padding:18px 36px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}
header {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 60px;
    z-index:100;
}

.logo{
    color:white;
    font-size:42px;
    font-weight:800;
    letter-spacing:-1px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:35px;
     font-size:18px;
    font-weight:600;
    margin-left:40px;
    margin-left:40px
    transition:.3s;
}

nav a:hover{
    color:#67b82e;
}.services {
    padding: 100px 30px;
    background: #f7f9f4;
    color: #17351d;
}

.section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #67b82e;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
}

.section-heading p {
    margin: 0;
    color: #5d6b60;
    font-size: 19px;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 42px 34px;
    background: white;
    border: 1px solid rgba(23, 53, 29, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(21, 55, 27, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(21, 55, 27, 0.15);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 26px;
    background: #e9f6df;
    border-radius: 18px;
    font-size: 32px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 27px;
}

.service-card p {
    margin: 0;
    color: #617064;
    font-size: 17px;
    line-height: 1.7;
}

@media (max-width: 850px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 75px 22px;
    }
}.why-us {
    padding: 110px 30px;
    background: #17351d;
    color: white;
}

.why-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #8ed55c;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-text h2 {
    margin-bottom: 24px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
}

.why-text p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.8;
}

.secondary-button {
    display: inline-block;
    padding: 16px 28px;
    border: 2px solid #8ed55c;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}.legal-button {
    display: inline-block;
    padding: 16px 28px;
    border: 2px solid #8ed55c;
    border-radius: 50px;
    background: transparent;
    color: #17351d;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.legal-button:hover {
    background: #8ed55c;
    color: #17351d;
    transform: translateY(-3px);
}

.secondary-button:hover {
    background: #8ed55c;
    color: #17351d;
    transform: translateY(-3px);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
}

.benefit-number {
    margin-bottom: 18px;
    color: #8ed55c;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.benefit-item h3 {
    margin-bottom: 12px;
    font-size: 23px;
}

.benefit-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .why-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .why-us {
        padding: 80px 22px;
    }
}.results {
    padding: 110px 30px;
    background: #f4f6f1;
}

.results-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading h2 {
    margin-bottom: 20px;
    color: #17351d;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
}

.section-heading p {
    color: #58625a;
    font-size: 18px;
    line-height: 1.75;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.comparison-card {
    overflow: hidden;
    background: white;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(23, 53, 29, 0.1);
}

.comparison-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 360px;
    padding: 25px;
    background-position: center;
    background-size: cover;
}

.comparison-image span {
    display: inline-block;
    padding: 9px 18px;
    background: rgba(23, 53, 29, 0.9);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.placeholder-before {
    background:
        linear-gradient(rgba(45, 52, 38, 0.15), rgba(45, 52, 38, 0.15)),
        linear-gradient(135deg, #91866c, #c7bd9e);
}

.placeholder-after {
    background:
        linear-gradient(rgba(31, 78, 36, 0.1), rgba(31, 78, 36, 0.1)),
        linear-gradient(135deg, #367b3c, #8ed55c);
}

.comparison-content {
    padding: 30px;
}

.comparison-content h3 {
    margin-bottom: 14px;
    color: #17351d;
    font-size: 26px;
}

.comparison-content p {
    margin: 0;
    color: #606a62;
    font-size: 16px;
    line-height: 1.7;
}

.results-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-top: 45px;
    padding: 26px 30px;
    background: #17351d;
    border-radius: 18px;
    color: white;
}

.results-note a {
    color: #8ed55c;
    font-weight: 800;
    text-decoration: none;
}

.results-note a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-image {
        min-height: 280px;
    }

    .results-note {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .results {
        padding: 80px 22px;
    }
}.pricing {
    padding: 110px 30px;
    background: white;
}

.pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 38px 32px;
    background: #f4f6f1;
    border: 1px solid #e0e7dd;
    border-radius: 24px;
}

.price-card h3 {
    margin-bottom: 18px;
    color: #17351d;
    font-size: 27px;
    line-height: 1.2;
}

.price-label {
    margin-bottom: 14px;
    color: #62b936;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.price {
    margin-bottom: 22px;
    color: #17351d;
    font-size: 17px;
}

.price strong {
    font-size: 32px;
}

.price-card > p {
    margin-bottom: 24px;
    color: #5f6961;
    line-height: 1.7;
}

.price-card ul {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.price-card li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 26px;
    color: #3f4941;
    line-height: 1.5;
}

.price-card li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #62b936;
    font-weight: 900;
    content: "✓";
}

.price-button {
    display: block;
    margin-top: auto;
    padding: 15px 20px;
    border: 2px solid #17351d;
    border-radius: 50px;
    color: #17351d;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.price-button:hover {
    background: #17351d;
    color: white;
    transform: translateY(-2px);
}

.featured-price {
    background: #17351d;
    border-color: #17351d;
    color: white;
    transform: translateY(-16px);
    box-shadow: 0 22px 55px rgba(23, 53, 29, 0.18);
}

.featured-price h3,
.featured-price .price,
.featured-price li {
    color: white;
}

.featured-price > p {
    color: rgba(255, 255, 255, 0.74);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 22px;
    padding: 7px 13px;
    background: #8ed55c;
    border-radius: 50px;
    color: #17351d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.primary-price-button {
    background: #8ed55c;
    border-color: #8ed55c;
    color: #17351d;
}

.primary-price-button:hover {
    background: white;
    border-color: white;
    color: #17351d;
}

.pricing-note {
    margin: 34px 0 0;
    color: #727b73;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 950px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .featured-price {
        transform: none;
    }
}

@media (max-width: 600px) {
    .pricing {
        padding: 80px 22px;
    }

    .price-card > p {
    margin-bottom: 24px;
    color: #5f6961;
    line-height: 1.7;
}.featured-price > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.65;
}
}.contact-section {
    padding: 110px 30px;
    background: #17351d;
    color: white;
}

.contact-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-text h2 {
    margin-bottom: 24px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
}

.contact-text > p {
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.75;
}

.contact-details {
    display: grid;
    gap: 20px;
}

.contact-detail {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-detail strong,
.contact-detail span {
    display: block;
}

.contact-detail strong {
    margin-bottom: 6px;
    color: #8ed55c;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-detail span {
    color: rgba(255, 255, 255, 0.82);
}

.contact-form {
    padding: 38px;
    background: white;
    border-radius: 24px;
    color: #17351d;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.18);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d8dfd5;
    border-radius: 12px;
    background: #f7f8f5;
    color: #17351d;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #62b936;
    box-shadow: 0 0 0 3px rgba(98, 185, 54, 0.14);
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    color: #626b63;
    font-size: 13px;
    line-height: 1.5;
}

.privacy-check input {
    margin-top: 3px;
}

.submit-button {
    width: 100%;
    padding: 17px 22px;
    border: 0;
    border-radius: 50px;
    background: #8ed55c;
    color: #17351d;
    font-family: inherit;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
}

.submit-button:hover {
    background: #73c842;
    transform: translateY(-2px);
}

.form-note {
    margin: 14px 0 0;
    color: #7a827b;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 80px 22px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}.site-footer {
    padding: 70px 30px 25px;
    background: #0d2512;
    color: white;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 45px;
}

.footer-brand h3 {
    margin-bottom: 16px;
    font-size: 28px;
}

.footer-brand p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
}

.footer-links h4 {
    margin: 0 0 8px;
    color: #8ed55c;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #8ed55c;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

@media (max-width: 750px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}.legal-page{

padding:100px 30px;

background:#f6f7f4;

min-height:100vh;

}

.legal-container{

max-width:900px;

margin:auto;

background:white;

padding:60px;

border-radius:24px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.legal-container h1{

font-size:52px;

margin-bottom:40px;

color:#17351d;

}

.legal-container h2{

margin-top:40px;

margin-bottom:12px;

color:#17351d;

}

.legal-container p{

line-height:1.8;

font-size:17px;

color:#4f5851;

}