@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins.regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../font/poppins.bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg-dark-green: #0f2a0f;
    --accent-green: #5a9e2f;
    --btn-green: #4f9d3e;
    --text-white: #ffffff;
    --text-grey: #cfcfcf;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark-green);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;

    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Satoshi', sans-serif;
    color: white;
}


.container,
.nav-container,
.hero-content {
    padding: 0 40px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}


.nav-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding-top: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 12px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    border: 2px solid transparent;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    border: 2px solid var(--bg-dark-green);
}

.logo {
    height: 25px;
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.nav-center-pill {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    padding: 6px;
    padding-left: 40px;
    border-radius: 50px;
    gap: 40px;
}

a {
    color: white;
    text-decoration: none;
}

.nav-center-pill a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Satoshi', sans-serif;
}

.nav-right {
    display: flex;
    align-items: center;
}

.partner-btn {
    background-color: #0f2a0f;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'satoshi', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #0f2a0f;
    white-space: nowrap;
}

.partner-btn-mobile {
    display: none;
}

.partner-btn:hover {
    background-color: white;
    color: #0f2a0f;
    border: 1px solid #0f2a0f;
}

.btn-contact {
    background-color: var(--btn-green);
    color: white !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-contact:hover {
    background-color: #3e7e31;
}

#hero {
    padding: 140px 0 80px 0;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
    margin-bottom: -60px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.callout-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(46, 125, 50, 0.3);
    border: 1px solid rgba(46, 125, 50, 0.6);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.glowing-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 8px #4ade80;
}

.callout-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: 'Satoshi', sans-serif;
    text-decoration: none;
}

.hero-left h1 {
    font-size: 47px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 500 !important;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -1px;
}

.hero-subtext {
    color: var(--text-grey);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: white;
    color: #0f2a0f;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    transition: transform 0.2s;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow {
    font-size: 14px;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.social-proof strong {
    margin-right: 10px;
}

.social-proof {
    display: flex;
    align-items: center;
}

.county-icon {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #ddd;
    border-radius: 50%;
    border: 2px solid #0f2a0f;
    margin-right: -10px;
}

.social-proof p {
    font-size: 14px;
    color: #eee;
    margin-left: 10px;
}

.hero-right {
    flex: 1;
}

.hero-slider-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.hero-slider-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(86, 86, 86, 0.884) 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: heroFade 15s infinite;
}

.hero-img:nth-child(1) {
    animation-delay: 0s;
}

.hero-img:nth-child(2) {
    animation-delay: 5s;
}

.hero-img:nth-child(3) {
    animation-delay: 10s;
}

@keyframes heroFade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


.services-section {
    width: 100%;
    background: #5a9e2f;
    padding: 30px 0;
    margin-top: 40px;
    border-top: #c7c6c6 3px solid;
}

.services-flex {
    display: flex;
    justify-content: space-between;
}

.service-item {
    flex: 1;
    padding: 0 20px;
    text-align: center;
}

.service-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-item p {
    font-size: 13px;
    line-height: 1.5;
    color: #e8f5e9;
}

.trusted-section {
    width: 100%;
    background: #f4f4f4;
    padding: 50px 0 60px;
    text-align: center;
    overflow: hidden;
}

.trusted-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    text-transform: uppercase;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 100px;
    animation: scroll 40s linear infinite;
    padding-left: 0px;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #d9d9d9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #555;
    font-family: 'Satoshi', sans-serif;
}

.logo-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.logo-text a {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.os-section {
    width: 100%;
    background: white;
    padding: 80px 0;
    text-align: center;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.os-title {
    color: #1a1a1a;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 15px;
}

.os-title .green-text {
    color: #4f9d3e;
    font-weight: 700;
}

.os-subtitle {
    color: #555;
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.5;
}


.os-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.os-btn {
    background: transparent;
    border: 1px solid #1f3b1f;
    color: #1f3b1f;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.os-btn:hover {
    background: #f0fdf0;
}

.os-btn.active {
    background: #1f3b1f;
    color: white;
    border-color: #1f3b1f;
}


.os-card {
    display: flex;
    border: 1px solid #1f3b1f;
    border-radius: 20px;
    background: white;
    overflow: hidden;
    height: 400px;
    margin-bottom: 30px;
}

.os-card-left {
    flex: 1;
    padding: 60px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.os-card-left h3 {
    color: #1a1a1a;
    font-size: 32px;
    margin-bottom: 20px;
}

.os-card-left p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.os-link {
    text-decoration: none;
    color: #1f3b1f;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.2s;
}

.os-link:hover {
    gap: 15px;
}

.os-card-right {
    flex: 1;
    background: #e8f5e9;
    padding: 20px;
    position: relative;
}

.os-card-right::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
    border-radius: 0 0 12px 12px;
    pointer-events: none;
}

.os-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


.os-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    transition: all 0.3s;
    cursor: pointer;
}

.mileage-map {
    height: 42px;
    width: auto;
    display: block;
}

.dot.active {
    background: #1f3b1f;
    width: 40px;
    border-radius: 20px;
}



.features-section {
    width: 100%;
    background: white;
    padding: 0px 0 80px;
    text-align: center;


    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.features-section h2 {
    color: #333;
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 500;
}

.features-section h2 span {
    color: #4f9d3e;
    font-weight: 700;
}

span {
    text-decoration: none;
}

.subtitle {
    margin: 10px 0 60px;
    color: #555;
    font-size: 16px;
}

.comparison-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: stretch;
}

.card {
    width: 420px;
    padding: 50px;
    border-radius: 12px;
    text-align: left;
    background: white;
}

.card h3 {
    color: #222;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.card-badge-container {
    margin-bottom: 30px;
}


.bad {
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tag.red {
    background: #ffadad;
    color: #c62828;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ef9a9a;
}

.bad ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bad li {
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
    position: relative;
    padding-left: 35px;
    display: flex;
    align-items: center;
}

.bad li::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: #ffadad;
    color: #c62828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


.good {
    border: 2px solid #2d7cff;
    position: relative;
    box-shadow: 0 10px 30px rgba(45, 124, 255, 0.1);
}

.recommended {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #2d7cff;
    color: white;
    padding: 8px 30px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tag.green {
    background: #e0f2f1;
    color: #009688;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #80cbc4;
}

.good ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.good li {
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-left: 35px;
    display: flex;
    align-items: center;
}

.good li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: #e0f2f1;
    color: #009688;
    border: 1px solid #80cbc4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


.join {
    margin: 80px 0 30px;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Satoshi', sans-serif;
}


.join strong {
    font-weight: 700;
    color: #111;
}

.cta-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #66bb6a, #43a047);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Satoshi', sans-serif;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(76, 175, 80, 0.5);
}

.phone-icon {
    font-size: 20px;
}

.faq-section {
    width: 100%;
    background: white;
    padding: 20px 0 60px;
    text-align: center;
    position: relative;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.faq-title {
    font-size: 42px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-title .green-text {
    color: #4f9d3e;
    font-weight: 700;
}

.faq-subtitle {
    color: #555;
    font-size: 16px;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border: 1px solid #333;
    border-radius: 16px;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin: 0;
    font-family: 'Satoshi', sans-serif;
}

.icon-circle {
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.icon-circle i {
    color: white;
    font-size: 14px;
}

.faq-item.active .icon-circle {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-body {
    max-height: 1000px;
    padding: 0 40px 30px;
}

.faq-body p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.faq-footer {
    margin-top: 50px;
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.faq-footer a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.faq-footer:hover a {
    color: #4ade80;
    text-decoration: none;
    font-weight: 600;
}

.about-section {
    width: 100%;
    background: #f2fde4;
    padding: 40px 0;
    text-align: center;
    color: #1a1a1a;
}

.about-section h2 {
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -1px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.site-footer {
    width: 100%;
    background-color: #0E2600;
    color: white;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-small {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-legal-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    margin-top: 60px;
    font-size: 14px;
    color: #888;
}

.footer-right {
    display: flex;
    gap: 100px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: white;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--accent-green);
}

.email-link {
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

.footer-watermark-img {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;

    z-index: 1;
    pointer-events: none;
}

#footer-cta {
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    text-align: center;
    color: white;

    background-color: var(--bg-dark-green);

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),

        radial-gradient(circle at -10%-15%,
            rgba(90, 158, 47, 0.75) 0%,
            rgba(90, 158, 47, 0.45) 15%,
            rgba(90, 158, 47, 0.18) 28%,
            transparent 48%),

        radial-gradient(circle at 110% 115%,
            rgba(79, 157, 62, 0.85) 0%,
            rgba(79, 157, 62, 0.50) 18%,
            rgba(79, 157, 62, 0.20) 32%,
            transparent 52%);

    background-size:
        60px 60px,
        60px 60px,
        auto,
        auto;
}

#footer-cta .cta-content {
    position: relative;
    z-index: 1;
}

#footer-cta::after {
    top: 75%;
    left: 50%;
    background: radial-gradient(circle, #4f9d3e 0%, transparent 70%);
}


#footer-cta .cta-content {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 125, 50, 0.3);
    border: 1px solid rgba(46, 125, 50, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
}

.cta-phone i {
    font-size: 16px;
}

#footer-cta h2 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 500;
}

.green-text {
    color: var(--accent-green);
    font-weight: 700;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-grey);
    margin: 20px 0 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-btn-primary {
    background: white;
    color: var(--bg-dark-green);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px 50px;
    border-radius: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 3px solid #3e7e31;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
    text-align: center;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-logo {
    height: 30px;
    margin-bottom: 10px;
}

.modal-header h3 {
    color: #555;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.modal-divider {
    height: 1px;
    background-color: #ddd;
    width: 100%;
    margin-bottom: 25px;
}

.modal-group {
    margin-bottom: 20px;
    text-align: left;
}

.modal-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.modal-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    background-color: #f1ffe8;
    font-size: 16px;
    outline: none;
}

.modal-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 13px;
    color: #555;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.remember-me input {
    accent-color: #aeea00;
    width: 16px;
    height: 16px;
}

.forgot-password {
    color: #555;
    text-decoration: none;
    font-weight: 700;
}

.modal-btn {
    width: 100%;
    background-color: #387c0e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-btn:hover {
    background-color: #2b600b;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #0f2a0f;
}

.about-content-box {
    max-width: 700px;
    padding: 60px 50px;
    border: 3px solid #387c0e;
    border-radius: 40px;
}

.about-title {
    font-size: 48px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Satoshi', sans-serif;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: left;
    margin-bottom: 40px;
}

.about-title .green-text {
    color: #4f9d3e;
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.counter {
    display: flex;
    gap: 6px;
    align-items: center;
    height: 34px;
    position: relative;
}

.counter::before,
.counter::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 2;
    pointer-events: none;
}

.counter::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(10, 30, 10, 1), rgba(10, 30, 10, 0));
}

.counter::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 30, 10, 1), rgba(10, 30, 10, 0));
}

.digit {
    position: relative;
    width: 22px;
    height: 34px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.25);
}

.digit-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 34px;
    color: #fff;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 60px;
    text-align: left;
}

.feature-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    margin-left: 10px;
    display: inline-block;
}

.feature-icon i {
    background: linear-gradient(135deg, #044f00 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.feature-icon i:hover {
    transform: scale(1.18);
}

.feature-title {
    background-color: #f1f8e9;
    border-left: 4px solid #5a9e2f;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Satoshi', sans-serif;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.feature-desc {
    padding: 0 10px;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 900px) {
    .features-grid {
        flex-direction: column;
        gap: 40px;
    }

    .feature-title {
        min-height: auto;
    }
}

@media (max-width: 768px) {

    .container,
    .nav-container {
        padding: 0 20px;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }

    .hamburger {
        display: block;
    }

    .nav-center-pill {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
        gap: 15px;
        align-items: center;
    }

    .nav-center-pill.active {
        display: flex;
    }


    .nav-right {
        display: none;
    }

    .partner-btn-mobile {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 5px;
        color: #ffffff !important;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 0;
        gap: 40px;
    }

    .hero-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-right {
        width: 100%;
        margin-top: 20px;
    }

    .image-placeholder {
        height: 300px;
        width: 100%;
    }

    .social-proof {
        justify-content: center;
    }

    .services-flex {
        flex-direction: column;
        gap: 30px;
    }

    .os-card {
        flex-direction: column;
        height: auto;
        height: 650px !important;
    }

    .os-card-left {
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }

    .os-card-right {
        height: 350px !important;
        width: 100%;
        padding: 20px;
    }

    .comparison-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        align-items: center;
    }

    .footer-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-legal-links {
        width: 100%;
        align-items: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column h4 {
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-column ul {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column ul li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-column ul li a {
        justify-content: center;
    }

    /* About Modal Mobile Fixes */
    .about-content-box {
        padding: 30px 20px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 14px;
        margin-bottom: 30px;
    }

}

@media (min-width: 769px) {
    .navbar {
        position: relative;
        justify-content: space-between;
    }

    .nav-center-pill {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 6px 10px 6px 30px;
        gap: 30px;
    }
}

html {
    font-size: clamp(14px, 1vw, 16px);
}

.container,
.nav-container,
.hero-content {
    padding-left: clamp(16px, 4vw, 40px);
    padding-right: clamp(16px, 4vw, 40px);
}

.hero-left h1 {
    font-size: clamp(28px, 5vw, 47px);
}

.hero-subtext {
    font-size: clamp(14px, 2.5vw, 16px);
}

.callout-text {
    font-size: clamp(12px, 2vw, 14px);
}

.btn-primary,
.btn-secondary,
.cta-btn-primary,
.cta-btn-secondary {
    padding: clamp(12px, 2.5vw, 16px) clamp(18px, 4vw, 32px);
    font-size: clamp(14px, 2.5vw, 16px);
}

.image-placeholder {
    height: auto;
    min-height: clamp(220px, 35vw, 400px);
}

.os-card {
    height: auto;
    min-height: clamp(400px, 55vw, 400px);
}

.os-card-right {
    height: clamp(220px, 35vw, 400px);
}

.card {
    width: 100%;
    max-width: 420px;
}

.comparison-cards {
    flex-wrap: wrap;
}

.service-item {
    min-width: clamp(220px, 40vw, 300px);
}

.footer-right {
    flex-wrap: wrap;
    gap: clamp(30px, 6vw, 100px);
}

.footer-column {
    min-width: 180px;
}

.about-content-box {
    width: 100%;
    max-width: 700px;
    padding: clamp(24px, 5vw, 60px) clamp(20px, 4vw, 50px);
}

.about-title {
    font-size: clamp(28px, 5vw, 48px);
}

.about-text p {
    font-size: clamp(14px, 2.5vw, 16px);
}

.faq-header {
    padding: clamp(20px, 4vw, 30px) clamp(20px, 5vw, 40px);
}

.faq-body p {
    font-size: clamp(14px, 2.5vw, 16px);
}

.cta-large {
    padding: clamp(14px, 3vw, 18px) clamp(26px, 6vw, 40px);
    font-size: clamp(16px, 3vw, 20px);
}

#footer-cta h2 {
    font-size: clamp(26px, 5vw, 42px);
}

.cta-description {
    font-size: clamp(14px, 2.5vw, 16px);
}

@media (max-width: 768px) {

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-slider-container {
        height: 300px;
    }

    .btn-primary,
    .btn-secondary,
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

}

.icon-circle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-header h3 {
    flex: 1;
    margin-right: 10px;
}