/* ==== CSS RESET & BASE ==== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: #F6F4F0;
    font-family: 'Lato', Arial, sans-serif;
    color: #23482B;
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    letter-spacing: 0.03em;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}
a {
    color: #357152;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #51B063;
    outline: none;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #23482B;
}
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}
h4, h5, h6 {
    margin-bottom: 10px;
}
p {
    margin-bottom: 16px;
}
ul, ol {
    margin-left: 24px;
    margin-bottom: 16px;
}
li {
    margin-bottom: 10px;
}
strong {
    font-weight: bold;
}

/* ==== LAYOUT CONTAINER ==== */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 18px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

@media (min-width: 992px) {
    .content-wrapper {
        flex-direction: row;
        gap: 40px;
    }
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

@media (max-width: 768px) {
    .content-wrapper, .content-grid, .text-image-section, .card-container {
        flex-direction: column;
        gap: 24px;
    }
    .testimonial-card {
        align-items: stretch;
    }
}

/* ==== HEADER ==== */
header {
    background: #FFFFFF;
    padding: 0;
    border-bottom: 1px solid #e2ded9;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
    gap: 18px;
    position: relative;
}
.brand-logo img {
    height: 48px;
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}
.main-nav a {
    padding: 8px 0;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
    color: #51B063;
    background: #e7f1ea;
}
.cta-btn {
    display: inline-block;
    background: #357152;
    color: #fff;
    border-radius: 99px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 13px 32px;
    margin-left: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(35, 72, 43, 0.12);
    transition: background 0.18s, box-shadow 0.18s, color 0.16s;
    outline: none;
    text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
    background: #51B063;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(81, 176, 99, 0.15);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 2.1rem;
    color: #357152;
    margin-left: 14px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    background: #EFF8F1;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.6,0.18,0.36,1);
    visibility: hidden;
    opacity: 0;
}
.mobile-menu.open {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}
.mobile-menu-close {
    background: transparent;
    border: none;
    color: #23482B;
    font-size: 2.1rem;
    align-self: flex-end;
    margin: 24px 24px 8px 0;
    cursor: pointer;
    transition: color 0.2s;
}
.mobile-menu-close:hover {
    color: #357152;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    margin-top: 24px;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.24rem;
    font-weight: 500;
    color: #357152;
    border-radius: 8px;
    padding: 12px 26px;
    transition: background 0.19s, color 0.18s;
    width: 100%;
    max-width: 320px;
    text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #d8eedd;
    color: #23482B;
}

@media (min-width: 1025px) {
    .mobile-menu,
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* ==== HERO ==== */
.hero {
    background: #EFF8F1 url('../assets/organic-bg2.svg') repeat;
    background-blend-mode: multiply;
    padding: 76px 0 64px 0;
    border-bottom-left-radius: 44px 25px;
    border-bottom-right-radius: 84px 38px;
    box-shadow: 0 10px 28px -16px rgba(30,60,36,0.10);
}
.hero .content-wrapper {
    align-items: flex-start;
    gap: 36px;
}
.hero h1 {
    font-size: 2.7rem;
    color: #357152;
    margin-bottom: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
    font-size: 1.15rem;
    color: #23482B;
    margin-bottom: 18px;
}
@media (max-width: 768px) {
    .hero { padding: 36px 0 30px 0; border-radius: 0 0 44px 24px; }
    .hero .content-wrapper { gap: 20px; }
    .hero h1 { font-size: 1.7rem; }
}

/* ==== FEATURES ==== */
.features {
    background: #F6F4F0;
    border-radius: 44px 44px 28px 28px;
    margin-top: -28px;
    box-shadow: 0 2px 16px -10px rgba(30,60,36,0.06);
}
.features h2 {
    text-align: left;
    color: #357152;
    margin-bottom: 36px;
}
.features .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.feature-card {
    background: #fff;
    border-radius: 22px 38px 18px 32px;
    box-shadow: 0 4px 18px -10px rgba(35,113,82,0.09);
    padding: 30px 26px 26px 26px;
    flex: 1 1 240px;
    min-width: 210px;
    max-width: 290px;
    transition: box-shadow 0.18s, transform 0.16s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card img {
    height: 50px;
    margin-bottom: 14px;
}
.feature-card h3 {
    font-size: 1.14rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #357152;
    text-align: center;
}
.feature-card p {
    font-size: 1rem;
    text-align: center;
    color: #23482B;
}
.feature-card:hover, .feature-card:focus {
    box-shadow: 0 10px 32px -8px rgba(81,176,99,0.15);
    transform: translateY(-6px) scale(1.025);
}
@media (max-width: 768px) {
    .features .content-wrapper { flex-direction: column; gap: 16px; }
}

/* ==== ABOUT SNIPPET / GENERAL TEXT SECTION ==== */
.about-snippet, .experience, .values {
    background: #fff;
    border-radius: 24px 52px 32px 28px;
    box-shadow: 0 2px 10px -4px rgba(35,113,82,0.07);
    padding-top: 32px;
    padding-bottom: 32px;
}
.text-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.text-section ul {
    padding-left: 1.4em;
}
.text-section li {
    color: #357152;
    font-size: 1rem;
    margin-bottom: 8px;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
    background: #EFF8F1;
    border-radius: 38px 26px 44px 38px;
    box-shadow: 0 2px 14px -10px rgba(81,176,99,0.10);
    padding-top: 38px;
    padding-bottom: 38px;
}
.testimonials h2 {
    color: #23482B;
    margin-bottom: 30px;
}
.testimonials .content-wrapper {
    flex-wrap: wrap;
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border-radius: 24px 54px 24px 24px;
    box-shadow: 0 3px 16px -7px rgba(35,113,82,0.09);
    padding: 24px 22px 20px 22px;
    min-width: 230px;
    max-width: 380px;
    flex: 1 1 260px;
    margin-bottom: 20px;
    position: relative;
    color: #23482B;
    font-size: 1.02rem;
    transition: box-shadow 0.19s, transform 0.16s;
}
.testimonial-card:hover, .testimonial-card:focus {
    box-shadow: 0 8px 30px -6px rgba(81,176,99,0.14);
    transform: translateY(-3px) scale(1.02);
}
.testimonial-card .author {
    margin-top: 18px;
    color: #357152;
    font-weight: 600;
    font-size: 0.97rem;
    text-align: right;
}
@media (max-width: 768px) {
    .testimonials .content-wrapper { flex-direction: column; gap: 16px; }
    .testimonial-card { min-width: 0; max-width: 100%; }
}

/* ==== CTA SECTION ==== */
.cta {
    background: #357152;
    border-radius: 38px 54px 12px 56px;
    box-shadow: 0 6px 32px -18px rgba(35,113,82,0.23);
    padding: 44px 0 42px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}
.cta h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 25px;
    font-family: 'Montserrat', Arial, sans-serif;
}
.cta .cta-btn {
    background: #fff;
    color: #357152;
    font-size: 1.07rem;
    font-weight: 700;
    padding: 16px 44px;
    letter-spacing: 0.01em;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
    background: #EFF8F1;
    color: #23482B;
}

/* ==== VALUE CARDS ==== */
.values .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 0;
}
.value-card {
    background: #EFF8F1;
    border-radius: 30px 50px 20px 32px;
    box-shadow: 0 5px 18px -8px rgba(35,113,82,0.10);
    padding: 32px 22px 22px 22px;
    flex: 1 1 200px;
    min-width: 180px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.15s;
    margin-bottom: 20px;
}
.value-card img {
    height: 44px;
    margin-bottom: 12px;
}
.value-card h3 {
    color: #357152;
    margin-bottom: 10px;
}
.value-card p {
    color: #23482B;
    font-size: 0.99rem;
    text-align: center;
}
.value-card:hover, .value-card:focus {
    box-shadow: 0 10px 32px -8px rgba(81,176,99,0.13);
    transform: translateY(-4px) scale(1.015);
}

@media (max-width: 768px) {
  .values .content-wrapper { flex-direction: column; }
  .value-card { min-width: 0; max-width: 100%; }
}

/* ==== SERVICE CARDS/LIST ==== */
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 8px;
}
.service-card {
    background: #fff;
    border-radius: 22px 46px 16px 20px;
    box-shadow: 0 3px 14px -6px rgba(35,113,82,0.09);
    padding: 28px 20px 24px 20px;
    flex: 1 1 250px;
    min-width: 220px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.18s, transform 0.13s;
    margin-bottom: 20px;
    position: relative;
}
.service-card img {
    height: 42px;
    margin-bottom: 10px;
}
.service-card h2 {
    font-size: 1.18rem;
    color: #357152;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.service-card p {
    text-align: center;
    color: #23482B;
    font-size: 0.99rem;
    margin-bottom: 10px;
    min-height: 62px;
}
.service-price {
    background: #EFF8F1;
    padding: 7px 18px;
    border-radius: 99px;
    color: #357152;
    font-size: 1.06rem;
    font-weight: 600;
    align-self: flex-end;
    margin-top: 8px;
}
.service-card:hover, .service-card:focus {
    box-shadow: 0 10px 32px -8px rgba(81,176,99,0.12);
    transform: translateY(-6px) scale(1.018);
}

@media (max-width: 768px) {
  .service-list { flex-direction: column; }
  .service-card { min-width: 0; max-width: 100%; }
}

/* ==== PROCESS STEPS ==== */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
    padding: 0 0 0 0;
    margin-bottom: 0;
}
.process-steps li {
    background: #EFF8F1;
    border-radius: 24px 44px 18px 24px;
    padding: 20px 28px;
    min-width: 140px;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #23482B;
    font-size: 1.01rem;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 7px -3px rgba(81,176,99,0.08);
}
.process-steps img {
    height: 30px;
}
@media (max-width: 768px) {
    .process-steps { flex-direction: column; gap: 12px; }
    .process-steps li { width: 100%; }
}

/* ==== EXPERIENCE SECTION ==== */
.metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 18px;
}
.metrics div {
    background: #EFF8F1;
    border-radius: 22px 36px 14px 18px;
    font-size: 1.12rem;
    color: #23482B;
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 16px 23px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .metrics { flex-direction: column; gap: 10px; }
}

/* ==== PRICING TABLE ==== */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 28px;
    background: #fff;
    border-radius: 32px 22px 36px 18px;
    overflow: hidden;
    box-shadow: 0 3px 16px -8px rgba(35,113,82,0.09);
    font-size: 1rem;
}
.pricing-table th, .pricing-table td {
    padding: 18px 15px 17px 15px;
    text-align: left;
}
.pricing-table thead tr {
    background: #EFF8F1;
    color: #357152;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    border-bottom: 1px solid #d1dfdb;
}
.pricing-table tbody tr {
    border-bottom: 1px solid #e7f1ea;
    transition: background 0.14s;
}
.pricing-table tbody tr:last-child {
    border-bottom: none;
}
.pricing-table tbody tr:hover {
    background: #f2faed;
}
@media (max-width: 768px) {
    .pricing-table th, .pricing-table td { font-size: 0.96rem; padding: 12px 9px; }
}

/* ==== FAQ ==== */
.faq {
    background: #EFF8F1;
    border-radius: 30px 44px 32px 18px;
    padding-top: 32px;
    padding-bottom: 32px;
    margin-bottom: 54px;
}
.faq .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: #fff;
    border-radius: 20px 44px 18px 18px;
    padding: 18px 22px;
    box-shadow: 0 3px 14px -6px rgba(35,113,82,0.06);
    transition: box-shadow 0.14s, transform 0.12s;
}
.faq-item h3 {
    color: #357152;
    margin-bottom: 6px;
    font-size: 1.12rem;
}
.faq-item p {
    margin-bottom: 0;
}
.faq-item:hover, .faq-item:focus {
    box-shadow: 0 8px 30px -10px rgba(81,176,99,0.10);
    transform: translateY(-2px);
}

/* ==== CONTACT PAGE ==== */
.contact-information {
    background: #EFF8F1;
    border-radius: 16px 36px 18px 30px;
    padding: 22px 28px;
    margin-bottom: 20px;
    font-size: 1.03rem;
}
.contact-information ul {
    margin-left: 1.2em;
}
.map-embed {
    background: #fff;
    border-radius: 18px 40px 12px 22px;
    padding: 18px 22px;
    color: #23482B;
    box-shadow: 0 3px 12px -7px rgba(35,113,82,0.08);
}
@media (max-width: 768px) {
  .contact-information, .map-embed { padding: 14px 10px; }
}

/* ==== FOOTER ==== */
footer {
    background: #23482B;
    color: #FFF;
    padding-top: 44px;
    padding-bottom: 32px;
    border-top-left-radius: 32px 20px;
    border-top-right-radius: 80px 38px;
    letter-spacing: 0.02em;
    margin-top: 60px;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 34px;
    justify-content: space-between;
}
.footer-menu {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}
.footer-menu a {
    color: #EFF8F1;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    opacity: 0.93;
    transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
    color: #51B063;
}
.footer-brand img {
    height: 46px;
    border-radius: 14px;
    background: #fff;
    padding: 5px;
    box-shadow: 0 2px 12px -3px rgba(35,113,82,0.10);
}
.contact-details {
    color: #e3efea;
    font-size: 0.98rem;
    margin-bottom: 7px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.contact-details a {
    color: #b0e6bb;
    transition: color 0.18s;
}
.contact-details a:hover, .contact-details a:focus {
    color: #fff;
}
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}
.social-links a img {
    height: 30px;
    width: 30px;
    filter: brightness(0.2) invert(1) saturate(0.5);
    border-radius: 50%;
    background: #357152;
    padding: 5px;
    transition: background 0.21s, filter 0.16s;
}
.social-links a:hover img, .social-links a:focus img {
    background: #51B063;
    filter: brightness(1) saturate(1.3);
}
@media (max-width: 990px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ==== THANK YOU PAGE BUTTON ==== */
.text-section .cta-btn {
    margin-top: 18px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5000;
    background: #fff;
    color: #23482B;
    box-shadow: 0 -6px 24px -4px rgba(35,113,82,0.18);
    border-top-left-radius: 24px 16px;
    border-top-right-radius: 44px 26px;
    padding: 22px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: transform 0.28s, opacity 0.22s;
}
.cookie-banner.hide {
    transform: translateY(110%);
    opacity: 0;
}
.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner-text {
    font-size: 1rem;
    text-align: center;
}
.cookie-banner-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 3px;
}
.cookie-btn {
    border: none;
    padding: 11px 27px;
    border-radius: 99px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    cursor: pointer;
    transition: background 0.18s, color 0.15s, box-shadow 0.13s;
    box-shadow: 0 1px 5px -2px rgba(81,176,99,0.10);
}
.cookie-btn.accept {
    background: #357152;
    color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
    background: #51B063;
}
.cookie-btn.reject {
    background: #fff;
    color: #357152;
    border: 1.8px solid #357152;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #EFF8F1;
    color: #23482B;
}
.cookie-btn.settings {
    background: #EFF8F1;
    color: #357152;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
    background: #dde7ec;
    color: #23482B;
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal {
    display: none;
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgba(44,62,51,0.48);
    z-index: 6000;
    justify-content: center;
    align-items: center;
    animation: fadein-bg 0.28s;
}
.cookie-modal.open {
    display: flex;
}
@keyframes fadein-bg {
    from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
    background: #fff;
    border-radius: 36px 66px 24px 38px;
    padding: 32px 26px 28px 28px;
    min-width: 290px;
    max-width: 95vw;
    box-shadow: 0 8px 38px -6px rgba(35,113,82,0.18);
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
    position: relative;
}
.cookie-modal-content h2 {
    font-size: 1.43rem;
    color: #2b532a;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 10px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 7px;
}
.cookie-toggle {
    margin-left: auto;
}
.cookie-modal-actions {
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: flex-end;
    margin-top: 14px;
}
.cookie-modal-close {
    position: absolute;
    top: 9px;
    right: 17px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #23482B;
    cursor: pointer;
    opacity: 0.6;
    transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    color: #357152;
    opacity: 1;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}
.cookie-toggle label {
    display: block;
    width: 44px;
    height: 24px;
    background: #e7f1ea;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    transition: background 0.17s;
}
.cookie-toggle label:after {
    content: '';
    position: absolute;
    left: 3px; top: 3px;
    width: 18px; height: 18px;
    background: #51B063;
    border-radius: 50%;
    transition: left 0.19s, background 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked + label {
    background: #bdedc9;
}
.cookie-toggle input[type="checkbox"]:checked + label:after {
    left: 23px;
    background: #357152;
}

/* ==== ANIMATIONS ==== */
@media (prefers-reduced-motion: no-preference) {
    .cta-btn,
    .feature-card,
    .testimonial-card,
    .service-card,
    .value-card,
    .faq-item,
    .cookie-btn {
        transition: all 0.19s cubic-bezier(0.65,0.04,0.36,1);
    }
}

/* ==== ORGANIC SHAPES DECORATION ==== */
/* Optional: extra classes for decorative SVGs or backgrounds */
.organic-shape-bg {
    position: absolute;
    z-index: 0;
    top: -40px;
    left: -60px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.14;
}

/* ==== UTILITIES ==== */
.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 20px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mt-3 { margin-top: 32px !important; }
.mb-3 { margin-bottom: 32px !important; }
.pt-3 { padding-top: 32px !important; }
.pb-3 { padding-bottom: 32px !important; }

/* ==== FORMS (if added in future) ==== */
input, select, textarea, button {
    font-family: inherit;
    font-size: 1rem;
    border-radius: 8px;
    border: 1.5px solid #d1dfdb;
    padding: 10px 14px;
    background: #fff;
    color: #23482B;
    outline: none;
    transition: border-color 0.17s;
}
input:focus, select:focus, textarea:focus {
    border-color: #357152;
}
button {
    cursor: pointer;
}

/* ==== RESPONSIVE TYPOGRAPHY ==== */
@media (max-width: 600px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.18rem; }
    h3 { font-size: 1.02rem; }
    body { font-size: 15px; }
}
/* ==== END ==== */
