* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 78px;
    font-family: Arial, Helvetica, sans-serif;
    background: #fbf8ef;
    color: #17362a;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 82px 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(251, 248, 239, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 47, 36, 0.1);
}

.header-inner {
    width: min(1160px, calc(100% - 28px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    box-shadow: 0 14px 28px rgba(31, 122, 63, 0.24);
}

.brand-leaf {
    position: absolute;
    width: 25px;
    height: 18px;
    left: 12px;
    top: 15px;
    background: #ffffff;
    border-radius: 100% 0 100% 0;
    transform: rotate(-28deg);
}

.brand-text strong {
    display: block;
    font-size: 1rem;
    letter-spacing: -0.03em;
    color: #10271e;
}

.brand-text small {
    display: block;
    margin-top: 3px;
    color: rgba(23, 54, 42, 0.7);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 11px 14px;
    border-radius: 999px;
    color: rgba(23, 54, 42, 0.78);
    font-size: 0.94rem;
    font-weight: 700;
    transition: 0.22s ease;
}

.site-nav a:hover {
    background: rgba(31, 122, 63, 0.1);
    color: var(--secondary);
}

.site-nav .nav-cta {
    background: #0f2f24;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 47, 36, 0.24);
}

.site-nav .nav-cta:hover {
    background: #1f7a3f;
    color: #ffffff;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: var(--secondary);
    cursor: pointer;
    padding: 11px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    border-radius: 999px;
    background: #ffffff;
    transition: 0.22s ease;
}

.hero {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(246, 183, 60, 0.2), transparent 28rem),
        radial-gradient(circle at 94% 18%, rgba(31, 122, 63, 0.16), transparent 30rem),
        linear-gradient(135deg, #fbf8ef 0%, #fffdf8 54%, #edf5eb 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(246, 183, 60, 0.18);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 58px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.74rem;
    line-height: 1.5;
    font-weight: 900;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    max-width: 680px;
    color: #10271e;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
}

h2 {
    margin-bottom: 18px;
    color: #10271e;
    font-size: clamp(2rem, 4vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.065em;
}

h3 {
    color: #10271e;
    font-size: 1.15rem;
    line-height: 1.25;
    letter-spacing: -0.035em;
}

p {
    color: rgba(23, 54, 42, 0.78);
    line-height: 1.75;
}

.hero-text {
    max-width: 620px;
    margin-bottom: 28px;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    transition: 0.22s ease;
}

.btn-primary {
    background: #0f2f24;
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 47, 36, 0.24);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #1f7a3f;
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: #0f2f24;
    border: 1px solid rgba(15, 47, 36, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: #1f7a3f;
    border-color: #1f7a3f;
    box-shadow: 0 16px 34px rgba(15, 47, 36, 0.16);
}

.hero-actions .btn-primary {
    color: #ffffff;
}

.hero-actions .btn-secondary {
    color: #0f2f24;
}

.hero-actions .btn-secondary:hover {
    color: #ffffff;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 560px;
}

.hero-points div {
    padding: 16px;
    border: 1px solid rgba(15, 47, 36, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 36px rgba(15, 47, 36, 0.08);
}

.hero-points strong,
.hero-points span {
    display: block;
}

.hero-points strong {
    margin-bottom: 4px;
    color: #10271e;
    font-size: 1rem;
}

.hero-points span {
    color: rgba(23, 54, 42, 0.68);
    font-size: 0.9rem;
}

.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 42px;
    border: 10px solid #ffffff;
    box-shadow: 0 30px 70px rgba(15, 47, 36, 0.2);
}

.hero-card {
    position: absolute;
    width: min(260px, 70%);
    padding: 16px 18px;
    border: 1px solid rgba(15, 47, 36, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 42px rgba(15, 47, 36, 0.16);
}

.hero-card strong,
.hero-card span {
    display: block;
}

.hero-card strong {
    margin-bottom: 4px;
    color: #10271e;
}

.hero-card span {
    color: rgba(23, 54, 42, 0.7);
    font-size: 0.9rem;
}

.card-top {
    left: -24px;
    top: 42px;
}

.card-bottom {
    right: -18px;
    bottom: 38px;
}

.ticker {
    overflow: hidden;
    background: #0f2f24;
    color: #ffffff;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 28s linear infinite;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 15px 17px;
    flex-shrink: 0;
}

.ticker span {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 900;
    white-space: nowrap;
    color: #ffffff;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333%);
    }
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading p {
    max-width: 680px;
}

.produce-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.produce-card,
.process-card,
.testimonial-card,
.stat-card {
    border: 1px solid rgba(15, 47, 36, 0.1);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 42px rgba(15, 47, 36, 0.08);
}

.produce-card {
    padding: 28px;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(246, 183, 60, 0.18);
    font-size: 1.5rem;
}

.produce-card h3 {
    margin-bottom: 12px;
}

.produce-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

.split-section {
    background:
        radial-gradient(circle at top right, rgba(31, 122, 63, 0.1), transparent 28rem),
        #f2f6ed;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
    gap: 58px;
    align-items: center;
}

.split-copy p {
    max-width: 640px;
}

.check-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 36px;
    color: rgba(23, 54, 42, 0.82);
    line-height: 1.6;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 999px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.stat-card {
    min-height: 150px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.stat-card span {
    color: rgba(23, 54, 42, 0.72);
    line-height: 1.4;
}

.image-feature {
    background: #fffdf8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.feature-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 0;
    min-height: 320px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(15, 47, 36, 0.1);
    box-shadow: 0 20px 44px rgba(15, 47, 36, 0.08);
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card div {
    padding: 34px;
    align-self: center;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.7rem;
}

.feature-card p:last-child {
    margin-bottom: 0;
}

.wide-card {
    grid-column: 1 / -1;
    grid-template-columns: 0.72fr 1fr;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-card {
    min-height: 250px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -38px;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: rgba(246, 183, 60, 0.18);
}

.process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 28px;
    border-radius: 16px;
    background: #f9eee2;
    color: var(--primary);
    font-weight: 900;
}

.process-card h3 {
    margin-bottom: 12px;
}

.process-card p {
    margin-bottom: 0;
}

.testimonials {
    background: #fbf8ef;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-card {
    padding: 28px;
}

.stars {
    margin-bottom: 18px;
    color: #d98200;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    font-weight: 900;
}

.testimonial-card p {
    margin-bottom: 20px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: #10271e;
}

.testimonial-card span {
    margin-top: 4px;
    color: rgba(23, 54, 42, 0.62);
    font-size: 0.9rem;
}

.faq-section {
    background:
        radial-gradient(circle at bottom left, rgba(31, 122, 63, 0.11), transparent 26rem),
        #f3f7ef;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
    gap: 58px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(15, 47, 36, 0.1);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(15, 47, 36, 0.07);
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: #10271e;
    cursor: pointer;
    text-align: left;
    font-weight: 900;
}

.faq-item button strong {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(31, 122, 63, 0.12);
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
}

.faq-answer p {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-section {
    background: #fffdf8;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    gap: 36px;
    align-items: stretch;
    padding: 44px;
    border-radius: 38px;
    background:
        linear-gradient(135deg, rgba(15, 47, 36, 0.94), rgba(31, 122, 63, 0.82)),
        radial-gradient(circle at top right, rgba(246, 183, 60, 0.35), transparent 20rem);
    box-shadow: 0 26px 70px rgba(15, 47, 36, 0.2);
}

.contact-copy {
    align-self: center;
}

.contact-copy .eyebrow {
    color: var(--accent);
}

.contact-copy h2,
.contact-copy p {
    color: #ffffff;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.84);
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-details a,
.contact-details span {
    display: inline-flex;
    width: fit-content;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    font-weight: 900;
}

.contact-form {
    padding: 26px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.12);
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 7px;
    color: #10271e;
    font-size: 0.88rem;
    font-weight: 900;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    border: 1px solid rgba(15, 47, 36, 0.14);
    border-radius: 16px;
    background: #fbf8ef;
    color: #10271e;
    outline: none;
    padding: 14px 15px;
    transition: 0.22s ease;
}

.form-row textarea {
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(31, 122, 63, 0.12);
    background: #ffffff;
}

.btn-form {
    width: 100%;
    margin-top: 4px;
    background: var(--accent);
    color: #10271e;
    box-shadow: 0 16px 32px rgba(246, 183, 60, 0.25);
}

.btn-form:hover {
    transform: translateY(-2px);
    background: #ffd36a;
}

.form-success {
    display: none;
    margin: 14px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(31, 122, 63, 0.11);
    color: var(--secondary);
    font-weight: 800;
}

.form-success.show {
    display: block;
}

.site-footer {
    padding: 28px 0;
    background: #0d281f;
    color: #ffffff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-inner strong,
.footer-inner span,
.footer-inner a {
    display: block;
}

.footer-inner strong {
    margin-bottom: 6px;
}

.footer-inner span,
.footer-inner a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-inner div:last-child {
    text-align: right;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.32);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .section-pad {
        padding: 64px 0;
    }

    .hero-grid,
    .split-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-media img {
        min-height: 420px;
    }

    .produce-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .wide-card {
        grid-template-columns: 1fr;
    }

    .feature-card img {
        height: 260px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        padding: 30px;
    }
}

@media (max-width: 760px) {
    body {
        padding-top: 72px;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .brand-text strong {
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid rgba(15, 47, 36, 0.1);
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 24px 60px rgba(15, 47, 36, 0.18);
    }

    body.nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        text-align: center;
        padding: 14px 16px;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-grid {
        gap: 36px;
    }

    h1 {
        font-size: clamp(2.6rem, 13vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .hero-points,
    .produce-grid,
    .process-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-media img {
        min-height: 340px;
        border-radius: 30px;
        border-width: 7px;
    }

    .hero-card {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .feature-card div {
        padding: 26px;
    }

    .contact-grid {
        padding: 22px;
        border-radius: 28px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-inner div:last-child {
        text-align: left;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        min-height: 46px;
        padding: 12px 16px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .section-pad {
        padding: 52px 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .produce-card,
    .process-card,
    .testimonial-card,
    .contact-form {
        border-radius: 22px;
    }
}