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

html {
    scroll-behavior: smooth
}

body {
    font-family: Nunito, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background: #fff
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: hsla(0, 0%, 100%, .97);
    backdrop-filter: blur(15px);
    z-index: 5;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    border-bottom: 1px solid rgba(26, 188, 156, .1)
}

header.scrolled {
    background: hsla(0, 0%, 100%, .99);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .12)
}

nav {
    justify-content: space-between;
    padding: .8rem 8%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%
}

.logo,
nav {
    display: flex;
    align-items: center
}

.logo {
    gap: .8rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    color: #418b4f;
    transition: all .3s ease
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain
}

.logo:hover {
    transform: scale(1.05)
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: .95rem;
    position: relative;
    transition: all .3s ease
}

.nav-links a:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #418b4f, #16a085);
    transition: width .3s ease;
    border-radius: 2px
}

.nav-links a:hover {
    color: #418b4f
}

.nav-links a.active:after,
.nav-links a:hover:after {
    width: 100%
}

.nav-links a.active {
    color: #418b4f
}

.cta-button {
    background: linear-gradient(135deg, #418b4f, #16a085);
    color: #fff;
    padding: .7rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 5px 20px rgba(26, 188, 156, .35)
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(26, 188, 156, .45)
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all .3s ease
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(7px, 7px)
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px)
}

.hero {
    margin-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafb, #e8f8f5 50%, #f0f9f7);
    display: flex;
    align-items: center;
    padding: 1rem 8%;
    position: relative;
    overflow: hidden
}

.hero:before {
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(26, 188, 156, .12) 0, transparent 70%);
    animation: a 8s ease-in-out infinite
}

.hero:after,
.hero:before {
    content: "";
    position: absolute;
    border-radius: 50%
}

.hero:after {
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 211, 153, .08) 0, transparent 70%);
    animation: a 10s ease-in-out infinite reverse
}

@keyframes a {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(40px)
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2
}

.hero-text {
    text-align: left
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -1.5px
}

.hero-text h1 span {
    background: linear-gradient(135deg, #418b4f, #16a085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.store-btn {
    transition: all .3s ease;
    display: inline-block
}

.store-btn:hover {
    transform: translateY(-3px)
}

.store-btn img {
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15)
}

.btn-primary {
    background: linear-gradient(135deg, #418b4f, #16a085);
    color: #fff;
    padding: 1.1rem 2.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 5px 25px rgba(26, 188, 156, .35);
    display: inline-block
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(26, 188, 156, .45)
}

.btn-secondary {
    background: #fff;
    color: #418b4f;
    padding: 1.1rem 2.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2.5px solid #418b4f;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-block
}

.btn-secondary:hover {
    background: #f0fffe;
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(26, 188, 156, .2)
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    margin-top: 3rem
}

.stat {
    display: flex;
    flex-direction: column
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #418b4f
}

.stat-label {
    font-size: .95rem;
    color: #666;
    font-weight: 500
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px
}

.hero-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(26, 188, 156, .2));
    animation: b .8s ease-out
}

@keyframes b {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -.5px
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8
}

.problem {
    padding: 2rem 8%;
    background: linear-gradient(135deg, #f8faf8, #e8f5e8 50%, #f0f8f0);
    position: relative;
    overflow: hidden
}

.problem:before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, .1) 0, transparent 70%);
    border-radius: 50%
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.problem-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400
}

.highlight-stat {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    padding: .2rem .6rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.1em
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: hsla(0, 0%, 100%, .8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(46, 125, 50, .1)
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: all .3s ease
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, .15)
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2e7d32;
    margin-bottom: .5rem;
    line-height: 1
}

.stat-item .stat-label {
    font-size: .9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.problem-subtitle {
    text-align: center;
    margin-bottom: 3rem
}

.problem-subtitle h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    display: inline-block
}

.problem-subtitle h3:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 2px
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem
}

.problem-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid rgba(46, 125, 50, .1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden
}

.problem-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2e7d32, #43a047)
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(46, 125, 50, .15)
}

.problem-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block
}

.problem-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .1))
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(220, 38, 38, .1), rgba(239, 68, 68, .1));
    border-radius: 50%;
    z-index: 1
}

.problem-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.problem-card p {
    color: #666;
    font-weight: 400;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem
}

.problem-impact {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #2e7d32
}

.impact-label {
    color: #2e7d32;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-right: .5rem
}

.impact-text {
    font-weight: 600;
    color: #555;
    margin-left: .5rem
}

.problem-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.problem-cta:before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, hsla(0, 0%, 100%, .1) 0, transparent 70%);
    border-radius: 50%
}

.problem-cta h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2
}

.problem-cta p {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: .95;
    position: relative;
    z-index: 2
}

.solution {
    padding: 7rem 8%;
    background: linear-gradient(135deg, #f8fafb, #e8f8f5)
}

.solution-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.solution-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -.5px
}

.solution-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #418b4f;
    margin-bottom: 1.5rem
}

.solution-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300
}

.solution-features {
    list-style: none;
    padding: 0
}

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #555;
    font-weight: 400
}

.solution-features li:before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #418b4f, #16a085);
    color: #fff;
    border-radius: 50%;
    margin-right: 1rem;
    font-weight: 700;
    flex-shrink: 0
}

.solution-highlight {
    margin-top: 2rem
}

.solution-image {
    position: relative
}

.solution-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(26, 188, 156, .2)
}

.how-it-works {
    padding: 7rem 8%;
    background: #fff
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.process-step {
    background: linear-gradient(135deg, #f8fafb, #e8f8f5);
    padding: 2.8rem;
    border-radius: 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: all .3s ease;
    border: 1px solid rgba(26, 188, 156, .1)
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 188, 156, .15)
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #418b4f, #16a085);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(26, 188, 156, .3)
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.process-step p {
    color: #666;
    font-weight: 300;
    line-height: 1.8;
    font-size: .98rem
}

.impact {
    padding: 7rem 8%;
    background: linear-gradient(135deg, #418b4f, #16a085);
    color: #fff;
    position: relative;
    overflow: hidden
}

.impact-header {
    color: #fff;
    margin-bottom: 3rem
}

.impact-header h2 {
    color: #fff
}

.impact-header p {
    color: hsla(0, 0%, 100%, .9)
}

.impact:before {
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(0, 0%, 100%, .1) 0, transparent 70%)
}

.impact:after,
.impact:before {
    content: "";
    position: absolute;
    border-radius: 50%
}

.impact:after {
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(0, 0%, 100%, .08) 0, transparent 70%)
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.impact-card {
    text-align: center;
    padding: 2.5rem;
    background: hsla(0, 0%, 100%, .1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid hsla(0, 0%, 100%, .2);
    transition: all .3s ease
}

.impact-card:hover {
    background: hsla(0, 0%, 100%, .15);
    transform: translateY(-5px)
}

.impact-number {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: .5rem
}

.impact-label {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: .95
}

.impact-description {
    font-size: .9rem;
    opacity: .85;
    margin-top: .5rem;
    font-weight: 300
}

.cta-section {
    padding: 7rem 8%;
    background: linear-gradient(135deg, #418b4f, #16a085);
    text-align: left;
    color: #fff;
    position: relative;
    overflow: hidden
}

.cta-section:before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(0, 0%, 100%, .1) 0, transparent 70%);
    border-radius: 50%
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 300;
    position: relative;
    z-index: 2
}

.cta-button-white {
    background: #fff;
    color: #418b4f;
    padding: 1.1rem 2.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-block;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 2
}

.cta-button-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3)
}

.cta-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.cta-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2)
}

.cta-form-card h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap
}

.contact {
    padding: 7rem 8%;
    background: linear-gradient(135deg, #f8fafb, #e8f8f5)
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a
}

.contact-info h3,
.contact-item {
    margin-bottom: 2.5rem
}

.contact-label {
    font-size: .85rem;
    color: #418b4f;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: .5rem
}

.contact-value {
    font-size: 1.15rem;
    color: #333;
    font-weight: 600
}

.contact-description {
    margin-top: 2.5rem
}

.contact-description p {
    color: #666;
    font-weight: 300;
    line-height: 1.8
}

.contact-form {
    gap: 1.5rem
}

.contact-form,
.form-group {
    display: flex;
    flex-direction: column
}

.form-group label {
    font-weight: 700;
    color: #333;
    margin-bottom: .6rem;
    font-size: .95rem
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-family: Nunito, sans-serif;
    font-size: 1rem;
    transition: all .3s ease;
    background: #fff;
    font-weight: 300
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #418b4f;
    box-shadow: 0 0 0 4px rgba(26, 188, 156, .1)
}

.form-group textarea {
    resize: vertical;
    min-height: 140px
}

.btn-submit {
    background: linear-gradient(135deg, #418b4f, #16a085);
    color: #fff;
    padding: 1.1rem 2rem;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 5px 25px rgba(26, 188, 156, .35);
    width: 100%
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(26, 188, 156, .45)
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3.5rem 8%;
    text-align: center
}

footer p {
    font-weight: 300;
    opacity: .8
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.footer-links a {
    color: #418b4f;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease
}

.footer-links a:hover {
    opacity: .8;
    transform: translateY(-2px)
}

@media (max-width:768px) {
    .nav-links {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem 2rem 2rem;
        gap: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
        transition: top .4s ease, max-height .4s ease;
        z-index: 4;
        list-style: none;
        border-radius: 0 0 20px 20px;
        max-height: 0;
        overflow: hidden
    }

    .nav-links.active {
        top: 70px;
        max-height: 100vh
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(-20px);
        border-bottom: 1px solid #f0f0f0
    }

    .nav-links li:last-child {
        border-bottom: none
    }

    .nav-links.active li {
        animation: c .3s ease forwards
    }

    .nav-links.active li:first-child {
        animation-delay: .05s
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: .1s
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: .15s
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: .2s
    }

    .nav-links.active li:nth-child(5) {
        animation-delay: .25s
    }

    .nav-links.active li:nth-child(6) {
        animation-delay: .3s
    }

    .nav-links.active li:nth-child(7) {
        animation-delay: .35s
    }

    @keyframes c {
        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .nav-links a {
        color: #2c3e50 !important;
        font-size: 1rem;
        padding: 1rem .5rem;
        display: block;
        transition: all .3s ease;
        font-weight: 600;
        position: relative
    }

    .nav-links a:after {
        display: none
    }

    .nav-links a.active,
    .nav-links a:hover {
        color: #418b4f !important;
        padding-left: 1rem
    }

    .nav-links a.active:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 20px;
        background: linear-gradient(135deg, #418b4f, #16a085);
        border-radius: 2px
    }

    .cta-button {
        display: none
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 5
    }

    .menu-toggle.active span {
        background: #418b4f
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
        z-index: 3
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: all
    }

    .hero-content {
        grid-template-columns: 1fr
    }

    .hero-text {
        text-align: center
    }

    .hero-text h1 {
        font-size: 2.4rem
    }

    .hero-image {
        height: 300px;
        order: -1;
        margin-bottom: 2rem
    }

    .hero-image img {
        max-height: 300px !important
    }

    .hero-buttons {
        justify-content: center
    }

    .store-btn img {
        height: 40px
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem
    }

    .about-content,
    .contact-content,
    .cta-content-wrapper,
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .contact-info {
        text-align: center
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem
    }

    .contact-item {
        margin-bottom: 1.5rem
    }

    .contact-value {
        font-size: 1rem
    }

    .cta-content-wrapper>div:first-child,
    .solution-text {
        text-align: center
    }

    .cta-buttons {
        justify-content: center
    }

    .section-header h2 {
        font-size: 2.2rem
    }

    .hero {
        margin-top: 70px;
        min-height: auto;
        padding: 3rem 5%
    }

    .contact,
    .cta-section,
    .how-it-works,
    .impact,
    .problem,
    .solution {
        padding: 4rem 5%
    }

    nav {
        padding: .8rem 5%
    }

    .problem-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem
    }

    .problem-card {
        padding: 1.8rem 1.2rem
    }

    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem
    }

    .problem-card h3 {
        font-size: 1.1rem;
        margin-bottom: .8rem
    }

    .problem-card p {
        font-size: .85rem;
        line-height: 1.6;
        margin-bottom: 1rem
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem
    }

    .process-step {
        padding: 1.8rem 1.2rem
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem
    }

    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: .8rem
    }

    .process-step p {
        font-size: .85rem;
        line-height: 1.6
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .impact-card {
        padding: 1.5rem 1rem;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .impact-number {
        font-size: 2.2rem
    }

    .impact-label {
        font-size: .95rem
    }

    .impact-description {
        font-size: .8rem
    }

    .problem-stats {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .problem-cta {
        padding: 2rem 1rem
    }

    .problem-cta h3 {
        font-size: 1.5rem
    }
}

@media (max-width:480px) {
    .hero-text h1 {
        font-size: 1.8rem
    }

    .section-header h2 {
        font-size: 1.6rem
    }

    .cta-section h2 {
        font-size: 1.8rem
    }

    .hero-stats {
        gap: 1rem
    }

    .stat-number {
        font-size: 1.8rem
    }

    .stat-label {
        font-size: .8rem
    }

    .store-btn img {
        height: 35px
    }

    .hero-image {
        height: 250px
    }

    .hero-image img {
        max-height: 250px !important
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .process-step {
        padding: 1.5rem 1rem
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .value-card {
        padding: 1.5rem 1rem
    }

    .value-icon {
        font-size: 2rem
    }

    .value-card h3 {
        font-size: 1rem
    }

    .value-card p {
        font-size: .8rem
    }
}

.team-stats {
    padding: 4rem 8%;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8
}

.team-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.team-members {
    padding: 7rem 8%;
    background: #fff
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .1);
    transition: all .3s ease
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, .2)
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.team-card:hover .team-image img {
    transform: scale(1.1)
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, .9), rgba(67, 160, 71, .9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease
}

.team-card:hover .team-overlay {
    opacity: 1
}

.social-links {
    display: flex;
    gap: 1rem
}

.social-link {
    padding: .8rem 1.5rem;
    background: #fff;
    color: #2e7d32;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s ease
}

.social-link:hover {
    background: #2e7d32;
    color: #fff;
    transform: translateY(-3px)
}

.team-info {
    padding: 2rem
}

.team-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: .5rem
}

.team-role {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem
}

.team-description {
    color: #666;
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.expertise-tag {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    color: #2e7d32;
    padding: .4rem .9rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid rgba(46, 125, 50, .2)
}

.team-values {
    padding: 7rem 8%;
    background: linear-gradient(135deg, #f8faf8, #e8f5e8)
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto
}

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all .3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05)
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, .15)
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: .95rem
}

.join-team {
    padding: 7rem 8%;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff
}

.join-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.join-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem
}

.join-text>p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: .95;
    line-height: 1.8
}

.join-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem
}

.benefit-icon {
    font-size: 1.8rem
}

.join-image {
    text-align: center
}

.join-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px
}

@media (max-width:768px) {
    .team-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1rem
    }

    .team-stats .stat-item {
        padding: 1rem
    }

    .team-stats .stat-number {
        font-size: 2rem
    }

    .team-stats .stat-label {
        font-size: .85rem
    }

    .join-content,
    .team-grid {
        grid-template-columns: 1fr
    }

    .team-image {
        height: 250px
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem
    }

    .value-card {
        padding: 1.8rem 1.2rem
    }

    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem
    }

    .value-card h3 {
        font-size: 1.1rem;
        margin-bottom: .8rem
    }

    .value-card p {
        font-size: .85rem;
        line-height: 1.6
    }

    .how-it-works h2 {
        font-size: 1.8rem
    }

    .how-it-works h3 {
        font-size: 1.1rem !important
    }

    .event-image {
        width: 80% !important;
        max-width: 200px !important;
        height: 140px !important;
        object-fit: cover !important;
        border-radius: 8px;
        margin: 0 auto 1rem;
        display: block;
        transition: transform .3s ease;
        overflow: hidden;
    }

    .event-image:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .event-image {
        width: 70% !important;
        max-width: 160px !important;
        height: 110px !important;
    }
}

@media (max-width: 480px) {
    .event-image {
        width: 60% !important;
        max-width: 140px !important;
        height: 90px !important;
    }
}