/* =========================================================
   SOIL TOUCH — MODERN CLEAN DESIGN SYSTEM
   Refactored, deduplicated and responsive CSS
   ========================================================= */

:root {
    /* Brand */
    --st-primary: #148a35;
    --st-primary-dark: #0b6b28;
    --st-primary-soft: #eaf7ee;
    --st-secondary: #f5b800;
    --st-dark: #102c1c;
    --st-text: #24352b;
    --st-muted: #6b776f;
    --st-white: #fff;
    --st-bg: #fff;
    --st-bg-soft: #f5f9f4;
    --st-border: #e5ebe7;

    /* Layout */
    --st-container: 1240px;
    --st-header-height: 74px;
    --st-topbar-height: 18px;
    --st-radius-sm: 8px;
    --st-radius: 14px;
    --st-radius-lg: 20px;

    /* Effects */
    --st-shadow-sm: 0 4px 18px rgb(11 33 21 / 7%);
    --st-shadow: 0 12px 35px rgb(11 33 21 / 10%);
    --st-shadow-lg: 0 20px 55px rgb(11 33 21 / 14%);
    --st-transition: 280ms cubic-bezier(.4, 0, .2, 1);

    /* Bootstrap */
    --bs-primary: var(--st-primary);
    --bs-primary-rgb: 20, 138, 53;
    --bs-success: var(--st-primary);
    --bs-success-rgb: 20, 138, 53;
    --bs-warning: var(--st-secondary);
    --bs-warning-rgb: 245, 184, 0;
    --bs-dark: var(--st-dark);
    --bs-dark-rgb: 16, 44, 28;
    --bs-body-color: var(--st-text);
    --bs-body-bg: var(--st-bg);
    --bs-link-color: var(--st-primary);
    --bs-link-hover-color: var(--st-primary-dark);
    --bs-border-color: var(--st-border);
    --bs-font-sans-serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--st-topbar-height) + var(--st-header-height));
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--st-text);
    background: var(--st-bg);
    font: 400 15px/1.7 var(--bs-font-sans-serif);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--st-secondary);
    outline-offset: 3px;
}

/* Bootstrap helpers */
.text-primary,
.text-success {
    color: var(--st-primary) !important;
}

.bg-primary,
.bg-success {
    background-color: var(--st-primary) !important;
}

.bg-dark {
    background-color: var(--st-dark) !important;
}

.btn-primary,
.btn-outline-success {
    border-radius: var(--st-radius-sm);
    font-weight: 700;
    transition: var(--st-transition);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--st-primary);
    --bs-btn-border-color: var(--st-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--st-primary-dark);
    --bs-btn-hover-border-color: var(--st-primary-dark);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--st-primary-dark);
    --bs-btn-active-border-color: var(--st-primary-dark);
}

.btn-primary:hover,
.btn-outline-success:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgb(20 138 53 / 20%);
}

.btn-outline-success {
    --bs-btn-color: var(--st-primary);
    --bs-btn-border-color: var(--st-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--st-primary);
    --bs-btn-hover-border-color: var(--st-primary);
}

/* Shared containers */
.header-container,
.footer-container {
    width: min(var(--st-container), calc(100% - 40px));
    margin-inline: auto;
}

/* =========================================================
   GLOBAL HEADER FONT
   ========================================================= */

.top-bar,
.site-header,
.main-navigation,
.nav-list,
.header-cta,
.menu-toggle {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
}


/* =========================================================
   SOIL TOUCH — COMPACT TOP BAR FIX
   ========================================================= */

.top-bar {
    width: 100% !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: var(--st-dark);
    color: rgba(255, 255, 255, 0.92);

    font-size: 13px;
    font-weight: 600;
    line-height: 1;

    box-sizing: border-box;
}

.top-bar-inner {
    width: min(1240px, 94%);
    height: 34px !important;
    min-height: 34px !important;

    margin: 0 auto;
    padding: 0 !important;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
}

.top-bar-left,
.top-bar-right {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 0;
    margin: 0;
}

.top-bar-item,
.top-bar-link {
    height: 100%;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 0;
    margin: 0;

    white-space: nowrap;

    line-height: 1;

    color: inherit;
    text-decoration: none;
}

.top-bar-item i,
.top-bar-link i {
    display: inline-flex;
    align-items: center;

    font-size: 14px;
    line-height: 1;

    color: var(--st-primary);
}

.top-bar-divider {
    display: block;

    width: 1px;
    height: 14px;

    padding: 0;
    margin: 0;

    background: rgba(255, 255, 255, 0.16);
}


/* =========================================================
   MAIN SITE HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    left: 0;

    z-index: 1050;

    width: 100%;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid rgba(11, 47, 28, 0.08);

    box-shadow:
        0 5px 24px rgba(11, 47, 28, 0.07);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* =========================================================
   HEADER CONTAINER
   ========================================================= */

.header-container {
    width: min(1240px, 94%);
    min-height: 78px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 28px;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand-logo {
    display: inline-flex;
    align-items: center;

    flex: 0 0 auto;

    line-height: 0;
    text-decoration: none;
}

.brand-logo img {
    display: block;

    width: 150px;
    height: 70px;

    object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.main-navigation {
    margin-left: auto;
    position: relative;
    z-index: 1060;
}

.nav-list {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    gap: 2px;

    list-style: none;
}

.nav-list li {
    position: relative;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   NAV LINKS
   ========================================================= */

.nav-list > li > a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 8px 14px;

    color: var(--st-text);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: -0.1px;

    line-height: 1.2;
    white-space: nowrap;

    text-decoration: none;

    border-radius: 7px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}


/* Active / hover */

.nav-list > li > a:hover,
.nav-list > li.active > a {
    color: var(--st-primary);
    background: rgba(21, 148, 71, 0.055);
}


/* Bottom hover indicator */

.nav-list > li > a::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 3px;

    height: 2px;

    background: var(--st-primary);

    border-radius: 10px;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.nav-list > li > a:hover::after,
.nav-list > li.active > a::after {
    transform: scaleX(1);
}


/* =========================================================
   DROPDOWN ARROW
   Works with:
   .has-dropdown > a
   ========================================================= */

.nav-list .has-dropdown > a {
    gap: 7px;
}

.nav-list .has-dropdown > a::before {
    content: "\F282";

    font-family: "bootstrap-icons";

    font-size: 11px;
    font-weight: 700;

    order: 2;

    margin-left: 3px;

    transition: transform 0.28s ease;
}

.nav-list .has-dropdown:hover > a::before {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
   ========================================================= */

.nav-list .dropdown-menu {
    position: absolute;

    top: calc(100% + 10px);
    left: 0;

    min-width: 235px;

    margin: 0;
    padding: 8px;

    list-style: none;

    background: #ffffff;

    border: 1px solid rgba(11, 47, 28, 0.09);

    border-radius: 12px;

    box-shadow:
        0 18px 45px rgba(11, 47, 28, 0.14),
        0 5px 15px rgba(11, 47, 28, 0.06);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    pointer-events: none;

    z-index: 2000;

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}


/* Small dropdown pointer */

.nav-list .dropdown-menu::before {
    content: "";

    position: absolute;

    top: -6px;
    left: 28px;

    width: 11px;
    height: 11px;

    background: #ffffff;

    border-left: 1px solid rgba(11, 47, 28, 0.09);
    border-top: 1px solid rgba(11, 47, 28, 0.09);

    transform: rotate(45deg);
}


/* Show dropdown */

.nav-list .has-dropdown:hover > .dropdown-menu,
.nav-list .has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}


/* Dropdown items */

.nav-list .dropdown-menu li {
    width: 100%;
}

.nav-list .dropdown-menu a {
    display: flex;
    align-items: center;

    width: 100%;

    min-height: 42px;

    padding: 10px 13px;

    color: var(--st-text);

    font-size: 14px;
    font-weight: 500;

    line-height: 1.35;

    text-decoration: none;

    border-radius: 8px;

    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        padding-left 0.22s ease;
}

.nav-list .dropdown-menu a:hover {
    color: var(--st-primary);

    background: rgba(21, 148, 71, 0.07);

    padding-left: 17px;
}


/* Remove normal nav underline from dropdown */

.nav-list .dropdown-menu a::after {
    display: none;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.header-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    min-height: 46px;

    padding: 0 21px;

    color: #ffffff;

    background: var(--st-primary);

    border: 1px solid var(--st-primary);

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    line-height: 1;

    white-space: nowrap;
    text-decoration: none;

    box-shadow:
        0 7px 20px rgba(21, 148, 71, 0.18);

    transition: var(--st-transition);
}

.header-cta::after {
    content: "\F138";

    font-family: "bootstrap-icons";

    margin-left: 8px;

    font-size: 14px;
}

.header-cta:hover {
    color: #ffffff;

    background: var(--st-primary-dark);
    border-color: var(--st-primary-dark);

    transform: translateY(-1px);

    box-shadow:
        0 10px 25px rgba(21, 148, 71, 0.24);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    position: relative;

    width: 44px;
    height: 44px;

    margin-left: auto;

    padding: 0;

    flex-shrink: 0;

    background: #ffffff;

    border: 1px solid var(--st-border);
    border-radius: 9px;

    cursor: pointer;

    transition: var(--st-transition);
}

.menu-toggle:hover {
    border-color: var(--st-primary);
    background: rgba(21, 148, 71, 0.045);
}

.menu-toggle span {
    position: absolute;

    left: 12px;

    width: 19px;
    height: 2px;

    background: var(--st-dark);

    border-radius: 5px;

    transition: var(--st-transition);
}

.menu-toggle span:nth-child(1) {
    top: 14px;
}

.menu-toggle span:nth-child(2) {
    top: 21px;
}

.menu-toggle span:nth-child(3) {
    top: 28px;
}


/* =========================================================
   MOBILE NAV HEADER
   ========================================================= */

.mobile-nav-header {
    display: none;
}

.mobile-nav-logo {
    display: inline-flex;
    align-items: center;

    line-height: 0;
    text-decoration: none;
}

.mobile-nav-logo img {
    display: block;

    width: 140px;
    height: auto;

    object-fit: contain;
}

.mobile-close {
    position: relative;

    width: 42px;
    height: 42px;

    padding: 0;

    background: #ffffff;

    border: 1px solid var(--st-border);
    border-radius: 9px;

    cursor: pointer;
}

.mobile-close span {
    position: absolute;

    top: 20px;
    left: 11px;

    width: 20px;
    height: 2px;

    background: var(--st-dark);

    border-radius: 4px;
}

.mobile-close span:first-child {
    transform: rotate(45deg);
}

.mobile-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-close:hover {
    border-color: var(--st-primary);
}

.mobile-close:hover span {
    background: var(--st-primary);
}


/* =========================================================
   MOBILE CTA
   ========================================================= */

.mobile-nav-cta {
    display: none;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.nav-overlay {
    position: fixed;

    inset: 0;

    z-index: 1040;

    background: rgba(4, 18, 10, 0.58);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   MOBILE — OFF CANVAS NAVIGATION
   ========================================================= */

@media (max-width: 991.98px) {

    .top-bar {
        min-height: 32px;
        font-size: 12px;
    }

    .top-bar-inner {
        min-height: 32px;
    }

    .header-container {
        min-height: 70px;
        width: min(100% - 30px, 1240px);
    }

    .brand-logo img {
        width: 135px;
        height: 63px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    /* -----------------------------------------------------
       OFF CANVAS
       ----------------------------------------------------- */

    .main-navigation {
        position: fixed;

        top: 0;
        right: 0;
        bottom: 0;

        width: min(340px, 88vw);

        margin: 0;

        padding: 0 22px 25px;

        background: #ffffff;

        box-shadow:
            -15px 0 45px rgba(0, 0, 0, 0.16);

        transform: translateX(105%);

        visibility: hidden;

        transition:
            transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0.35s ease;

        overflow-y: auto;
        overflow-x: hidden;

        z-index: 1100;
    }

    .main-navigation.active {
        transform: translateX(0);
        visibility: visible;
    }


    /* -----------------------------------------------------
       MOBILE NAV HEADER
       ----------------------------------------------------- */

    .mobile-nav-header {
        min-height: 82px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        border-bottom: 1px solid var(--st-border);

        margin-bottom: 12px;
    }


    /* -----------------------------------------------------
       MOBILE NAV LIST
       ----------------------------------------------------- */

    .nav-list {
        display: flex;

        flex-direction: column;
        align-items: stretch;

        gap: 2px;

        width: 100%;
    }

    .nav-list > li {
        width: 100%;
    }

    .nav-list > li > a {
        width: 100%;

        min-height: 48px;

        justify-content: flex-start;

        padding: 12px 13px;

        font-size: 15px;

        border-radius: 8px;
    }

    .nav-list > li > a::after {
        display: none;
    }


    /* -----------------------------------------------------
       MOBILE DROPDOWN
       ----------------------------------------------------- */

    .nav-list .dropdown-menu {
        position: static;

        display: none;

        width: 100%;

        min-width: 0;

        margin: 2px 0 6px;

        padding: 5px;

        border: 0;

        border-left: 2px solid var(--st-primary);

        border-radius: 0 8px 8px 0;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        pointer-events: auto;
    }

    .nav-list .dropdown-menu::before {
        display: none;
    }

    .nav-list .has-dropdown:hover > .dropdown-menu,
    .nav-list .has-dropdown:focus-within > .dropdown-menu {
        display: block;
    }

    .nav-list .dropdown-menu a {
        min-height: 42px;

        font-size: 14px;

        padding: 10px 14px;
    }


    /* -----------------------------------------------------
       MOBILE CTA
       ----------------------------------------------------- */

    .mobile-nav-cta {
        display: block;

        margin-top: 20px;

        padding-top: 18px;

        border-top: 1px solid var(--st-border);
    }

    .mobile-nav-cta a {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 100%;
        min-height: 48px;

        padding: 0 18px;

        color: #ffffff;

        background: var(--st-primary);

        border: 1px solid var(--st-primary);

        border-radius: 9px;

        font-size: 14px;
        font-weight: 700;

        text-decoration: none;

        transition: var(--st-transition);
    }

    .mobile-nav-cta a:hover {
        background: var(--st-primary-dark);
        border-color: var(--st-primary-dark);
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .top-bar {
        height: 30px !important;
        min-height: 30px !important;
        max-height: 30px !important;

        font-size: 11px;
    }

    .top-bar-inner {
        height: 30px !important;
        min-height: 30px !important;
    }

    .top-bar-left {
        width: 100%;
        justify-content: center;
        gap: 7px;
    }

    .top-bar-left .top-bar-item:first-child {
        font-size: 11px;
    }

    .top-bar-left .top-bar-item:last-child,
    .top-bar-right,
    .top-bar-divider {
        display: none;
    }
    
    .header-container {
        min-height: 66px;
        width: calc(100% - 24px);
    }

    .brand-logo img {
        width: 125px;
        height: 58px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .main-navigation {
        width: min(320px, 90vw);
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .site-header,
    .nav-list a,
    .header-cta,
    .main-navigation,
    .nav-overlay,
    .dropdown-menu,
    .menu-toggle {
        transition: none !important;
    }
}

/* Hero */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fbf6, #fff 55%, #f3f9f2);
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::before {
    top: -180px;
    right: -180px;
    width: 500px;
    height: 500px;
    background: rgb(57 181 74 / 7%);
}

.hero-section::after {
    bottom: -160px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: rgb(245 184 0 / 6%);
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 620px;
}

.hero-eyebrow,
.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: var(--st-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-eyebrow::before,
.eyebrow::before {
    content: "";
    width: 25px;
    height: 2px;
    margin-right: 9px;
    background: var(--st-secondary);
    border-radius: 10px;
}

.hero-title {
    margin: 0 0 22px;
    color: var(--st-dark);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.hero-title span {
    color: var(--st-primary);
}

.hero-description {
    max-width: 570px;
    margin: 0 0 30px;
    color: var(--st-muted);
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 22px;
}

.hero-image,
.content-image {
    overflow: hidden;
    background: #f1f5f1;
    border-radius: var(--st-radius-lg);
    box-shadow: var(--st-shadow-lg);
}

.hero-image img,
.content-image img {
    width: 100%;
    aspect-ratio: 7 / 5;
    object-fit: cover;
}

.content-image {
    box-shadow: var(--st-shadow);
}

.content-image img {
    transition: transform 600ms ease;
}

.content-image:hover img {
    transform: scale(1.025);
}

/* Sections */
.st-section {
    position: relative;
    padding: 100px 0;
    background: var(--st-white);
}

.st-section-light {
    background: var(--st-bg-soft);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading.text-start {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.section-heading h2 {
    margin: 0 0 16px;
    color: var(--st-dark);
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--st-muted);
    font-size: 15px;
    line-height: 1.8;
}

.section-heading.text-start p {
    margin-left: 0;
}

.content-list {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.content-list li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 28px;
    color: var(--st-text);
    font-size: 14px;
    line-height: 1.65;
}

.content-list li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    color: var(--st-white);
    background: var(--st-primary);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
}

/* Cards */
.service-card,
.feature-card {
    height: 100%;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius);
    transition: transform var(--st-transition), box-shadow var(--st-transition), border-color var(--st-transition);
}

.service-card {
    position: relative;
    padding: 30px;
    box-shadow: 0 4px 15px rgb(11 33 21 / 4%);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 0;
    height: 3px;
    background: var(--st-primary);
    border-radius: 0 0 5px 5px;
    transition: width var(--st-transition);
}

.service-card:hover,
.feature-card:hover {
    border-color: rgb(20 138 53 / 18%);
    box-shadow: var(--st-shadow);
    transform: translateY(-6px);
}

.service-card:hover::before {
    width: 42px;
}

.service-icon,
.feature-icon {
    display: grid;
    place-items: center;
    color: var(--st-primary);
    background: rgb(20 138 53 / 8%);
}

.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border: 1px solid rgb(20 138 53 / 10%);
    border-radius: 12px;
    font-size: 21px;
}

.service-card h3,
.feature-card h4 {
    color: var(--st-dark);
    font-weight: 700;
    line-height: 1.35;
}

.service-card h3 {
    margin: 0 0 11px;
    font-size: 18px;
}

.service-card p,
.feature-card p {
    color: var(--st-muted);
    line-height: 1.75;
}

.service-card p {
    margin: 0 0 20px;
    font-size: 13px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--st-primary);
    font-size: 13px;
    font-weight: 700;
    transition: var(--st-transition);
}

.service-link:hover {
    gap: 3px;
    color: var(--st-primary-dark);
}

.feature-card {
    padding: 28px 24px;
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 18px;
    border-radius: 50%;
    font-size: 19px;
}

.feature-card h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.feature-card p {
    margin: 0;
    font-size: 13px;
}

/* CTA */
.cta-section {
    position: relative;
    padding: 65px 0;
    overflow: hidden;
    color: var(--st-white);
    background: linear-gradient(135deg, var(--st-dark), #12371f);
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -100px;
    width: 430px;
    height: 430px;
    border: 1px solid rgb(255 255 255 / 6%);
    border-radius: 50%;
}

.cta-section h2,
.cta-section p,
.cta-button-light {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin: 0 0 10px;
    color: var(--st-white);
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.2;
}

.cta-section p {
    color: rgb(255 255 255 / 70%);
    font-size: 14px;
    line-height: 1.75;
}

.cta-button-light {
    min-height: 48px;
    padding-inline: 24px;
    color: var(--st-dark);
    background: var(--st-white);
    border: 1px solid var(--st-white);
    border-radius: var(--st-radius-sm);
    font-size: 13px;
}

.cta-button-light:hover {
    color: var(--st-dark);
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgb(0 0 0 / 16%);
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    color: #dbe8df;
    background: var(--st-dark);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--st-primary), #39b54a, var(--st-secondary));
}

.footer-main {
    padding: 72px 0 58px;
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1.2fr 1.3fr;
    gap: 55px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo img {
    width: 150px;
    height: 70px;
    object-fit: contain;
}

.footer-description {
    max-width: 340px;
    margin: 21px 0 24px;
    color: #aebdb3;
    font-size: 13px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-social a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #b9c8bd;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 9%);
    border-radius: var(--st-radius-sm);
    font-size: 13px;
    transition: var(--st-transition);
}

.footer-social a:hover {
    color: var(--st-white);
    background: var(--st-primary);
    border-color: var(--st-primary);
    transform: translateY(-2px);
}

.footer-column h3 {
    position: relative;
    margin: 4px 0 21px;
    padding-bottom: 12px;
    color: var(--st-white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #39b54a;
    border-radius: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
    color: #aebdb3;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    transition: var(--st-transition);
}

.footer-links a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: #39b54a;
    transition: var(--st-transition);
}

.footer-links a:hover {
    padding-left: 3px;
    color: var(--st-white);
}

.footer-links a:hover::before {
    width: 9px;
    margin-right: 7px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #aebdb3;
    font-size: 13px;
    line-height: 1.6;
}

.contact-icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    color: #39b54a;
    background: rgb(57 181 74 / 8%);
    border: 1px solid rgb(57 181 74 / 15%);
    border-radius: 7px;
    font-size: 11px;
}

.contact-list a,
.footer-bottom-links a {
    color: #aebdb3;
    transition: color var(--st-transition);
}

.contact-list a:hover,
.footer-bottom-links a:hover {
    color: var(--st-white);
}

.footer-bottom {
    background: rgb(0 0 0 / 13%);
    border-top: 1px solid rgb(255 255 255 / 8%);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom-links a {
    color: #8fa197;
    font-size: 11.5px;
    line-height: 1.5;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-bottom-links span {
    width: 3px;
    height: 3px;
    background: #53645a;
    border-radius: 50%;
}

/* Floating actions */
.whatsapp-help,
.back-to-top {
    position: fixed;
    z-index: 1040;
}

.whatsapp-help {
    bottom: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 5px 7px 5px 15px;
    color: var(--st-white);
    background: var(--st-primary);
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 50px;
    box-shadow: 0 8px 25px rgb(11 33 21 / 20%);
    transition: var(--st-transition);
}

.whatsapp-help:hover {
    color: var(--st-white);
    background: var(--st-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgb(11 33 21 / 27%);
}

.whatsapp-help-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.whatsapp-help-icon {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    color: var(--st-primary);
    background: var(--st-white);
    border-radius: 50%;
    font-size: 20px;
}

.back-to-top {
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    padding: 0;
    color: var(--st-white);
    background: var(--st-dark);
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 9px;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    box-shadow: 0 8px 22px rgb(11 33 21 / 18%);
    transition: opacity var(--st-transition), visibility var(--st-transition), transform var(--st-transition), background var(--st-transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--st-white);
    background: var(--st-primary);
    transform: translateY(-3px);
}

/* Tablet */
@media (max-width: 1100px) {
    .header-container,
    .footer-container {
        width: min(100% - 30px, var(--st-container));
    }

    .main-header .header-container {
        gap: 18px;
    }

    .nav-list > li > a {
        padding-inline: 9px;
        font-size: 12px;
    }

    .header-cta {
        padding-inline: 13px;
    }

    .footer-main .footer-container {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 3;
    }
}

/* Mobile navigation */
@media (max-width: 991.98px) {
    :root {
        --st-header-height: 68px;
        --st-topbar-height: 27px;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-left {
        justify-content: center;
        width: 100%;
    }

    .top-bar-right,
    .top-bar-left .top-bar-item:nth-of-type(2),
    .top-bar-left .top-bar-divider {
        display: none;
    }

    .top-bar-left .top-bar-item {
        font-size: 10px;
    }

    .main-header .header-container {
        width: calc(100% - 28px);
    }

    .brand-logo img {
        width: 132px;
        height: 61px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1100;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: min(88vw, 370px);
        height: 100dvh;
        margin: 0;
        padding: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--st-white);
        box-shadow: -15px 0 45px rgb(0 0 0 / 16%);
        transform: translateX(105%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 350ms cubic-bezier(.4, 0, .2, 1), visibility 350ms ease;
    }

    .main-navigation.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 82px;
        padding-inline: 22px;
        gap: 15px;
        flex-shrink: 0;
        background: var(--st-white);
        border-bottom: 1px solid var(--st-border);
    }

    .mobile-nav-logo img {
        width: 135px;
    }

    .mobile-close {
        width: 40px;
        height: 40px;
    }

    .mobile-close span {
        top: 19px;
        left: 10px;
    }

    .mobile-close span:first-child { transform: rotate(45deg); }
    .mobile-close span:last-child { transform: rotate(-45deg); }

    .nav-list {
        width: 100%;
        height: auto;
        padding: 16px 18px 10px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2px;
    }

    .nav-list li,
    .nav-list > li > a {
        width: 100%;
    }

    .nav-list > li > a {
        justify-content: space-between;
        min-height: 49px;
        padding: 12px 13px;
        border-radius: 8px;
        font-size: 14px;
        white-space: normal;
    }

    .nav-list > li > a::before {
        display: none;
    }

    .nav-list > li > a:hover {
        background: var(--st-primary-soft);
    }

    .nav-list .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        padding: 0 0 4px 12px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav-list .dropdown-menu.show {
        display: block;
    }

    .nav-list .dropdown-menu::before {
        display: none;
    }

    .nav-list .dropdown-menu li a {
        min-height: 40px;
        padding: 8px 12px;
        background: #f7faf8;
        font-size: 12px;
    }

    .mobile-nav-cta {
        display: block;
        margin: auto 18px 25px;
        padding-top: 18px;
        border-top: 1px solid var(--st-border);
    }

    .mobile-nav-cta a {
        width: 100%;
        min-height: 48px;
        color: var(--st-white);
        background: var(--st-primary);
        border: 1px solid var(--st-primary);
        border-radius: 8px;
        font-size: 13px;
        box-shadow: 0 7px 18px rgb(20 138 53 / 16%);
    }

    .mobile-nav-cta a:hover {
        color: var(--st-white);
        background: var(--st-primary-dark);
        border-color: var(--st-primary-dark);
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 1090;
        display: block;
        background: rgb(5 20 11 / 58%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(3px);
        transition: opacity var(--st-transition), visibility var(--st-transition);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .hero-section {
        min-height: auto;
        padding: 75px 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .footer-main {
        padding: 60px 0 45px;
    }
}

/* Content mobile */
@media (max-width: 767.98px) {
    .header-container,
    .footer-container {
        width: calc(100% - 24px);
    }

    .st-section {
        padding: 70px 0;
    }

    .hero-section {
        padding: 60px 0 70px;
    }

    .hero-title {
        font-size: clamp(38px, 11vw, 54px);
        letter-spacing: -.04em;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-image {
        margin-top: 10px;
        border-radius: 14px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .footer-main .footer-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand,
    .footer-description {
        max-width: 100%;
    }

    .footer-description {
        margin-top: 18px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        min-height: auto;
        padding-block: 18px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 9px;
    }

    .whatsapp-help {
        bottom: 14px;
        left: 14px;
        gap: 7px;
        padding: 4px 5px 4px 12px;
    }

    .whatsapp-help-text {
        font-size: 11px;
    }

    .whatsapp-help-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 39px;
        height: 39px;
        font-size: 14px;
        border-radius: 8px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .header-container,
    .footer-container {
        width: 92%;
    }

    .top-bar .header-container {
        width: calc(100% - 20px);
    }

    .top-bar-left .top-bar-item {
        font-size: 9.5px;
    }

    .main-header,
    .main-header .header-container {
        height: 64px;
        min-height: 64px;
    }

    .brand-logo img {
        width: 124px;
        height: 58px;
    }

    .main-navigation {
        width: 90vw;
    }

    .mobile-nav-header {
        min-height: 76px;
        padding-inline: 18px;
    }

    .mobile-nav-logo img {
        width: 125px;
    }

    .nav-list {
        padding-inline: 14px;
    }

    .mobile-nav-cta {
        margin-inline: 14px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-section {
        padding-block: 50px 60px;
    }

    .st-section {
        padding-block: 60px;
    }

    .service-card {
        padding: 25px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .footer-logo img {
        width: 140px;
        height: auto;
    }
}

@media (max-width: 380px) {
    .whatsapp-help {
        bottom: 10px;
        left: 10px;
        width: 43px;
        height: 43px;
        justify-content: center;
        padding: 4px;
    }

    .whatsapp-help-text {
        display: none;
    }

    .whatsapp-help-icon {
        width: 35px;
        height: 35px;
    }

    .back-to-top {
        right: 10px;
        bottom: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}