/* =========================================================
   PURE FOOD SOLUTION — CLEAN RESPONSIVE STYLESHEET
   ========================================================= */

:root {
    --green: #17843b;
    --green-dark: #0d3b2a;
    --green-deep: #073d2d;
    --orange: #f28c18;
    --cream: #f7f7f3;
    --text: #111111;
    --muted: #666666;
    --border: #e7e7e2;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(13, 59, 42, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: relative;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #eeeeee;
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 180px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--green);
}

.nav-btn,
.mobile-connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-btn {
    padding: 13px 23px;
    white-space: nowrap;
}

.nav-btn:hover,
.mobile-connect:hover {
    background: #116b2e;
    transform: translateY(-1px);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

/* =========================================================
   COMMON TYPOGRAPHY
   ========================================================= */

.eyebrow {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 52px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.section-intro {
    max-width: 620px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

/* =========================================================
   HOME HERO
   ========================================================= */

.hero {
    padding: 100px 0;
    background: var(--cream);
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(48px, 5.3vw, 65px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--green);
    display: block;
}

.hero-text > p:not(.eyebrow) {
    max-width: 560px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background: #116b2e;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--green);
    color: var(--green);
    background: transparent;
}

.btn-secondary:hover {
    background: #eaf5ed;
}

.hero-image {
    min-width: 0;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

/* =========================================================
   HOME SOLUTIONS CARDS
   ========================================================= */

.solutions {
    padding: 100px 0;
    background: var(--white);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.solution-card {
    min-width: 0;
    overflow: hidden;
    background: var(--cream);
    border-radius: 25px;
    border: 1px solid #eeeeea;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.solution-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.card-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-content a {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
}

/* =========================================================
   WHY US
   ========================================================= */

.why-us {
    padding: 100px 0 90px;
    background: var(--cream);
}

.why-us .section-heading {
    margin-bottom: 45px;
}

.why-us .section-heading h2 {
    max-width: 800px;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.why-card {
    position: relative;
    min-height: 330px;
    padding: 35px;
    background: var(--white);
    border: 1px solid #e9e9e4;
    border-radius: 25px;
    overflow: hidden;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.why-card.featured {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
}

.why-card.featured p {
    color: #c9dcd4;
}

.why-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.why-card.featured .why-number {
    color: var(--orange);
}

.why-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    border-radius: 50%;
    background: #eaf5ed;
    color: var(--green);
    font-size: 25px;
}

.why-card.featured .why-icon {
    background: rgba(255,255,255,0.12);
    color: var(--orange);
}

.why-card h3 {
    max-width: 290px;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.why-card p {
    max-width: 390px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.why-line {
    position: absolute;
    left: 35px;
    bottom: 25px;
    width: 42px;
    height: 3px;
    border-radius: 3px;
    background: var(--orange);
}

/* =========================================================
   CTA — HOME + ABOUT + SOLUTIONS
   ========================================================= */

.cta {
    padding: 70px 0 90px;
    background: var(--white);
}

.cta-box {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 65px 70px;
    border-radius: 30px;
    background: var(--green-deep);
    color: var(--white);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cta .eyebrow {
    color: #76c893;
}

.cta h2 {
    max-width: 720px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 15px;
}

.cta h2 span {
    color: #76c893;
}

.cta p:not(.eyebrow) {
    color: #d5e4dc;
    font-size: 17px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--white);
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #f2f6f3;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
}

.circle-one {
    width: 280px;
    height: 280px;
    right: 8%;
    top: -60px;
}

.circle-two {
    width: 190px;
    height: 190px;
    right: 16%;
    bottom: -70px;
}

.circle-three {
    width: 90px;
    height: 90px;
    right: 5%;
    bottom: 35px;
    background: rgba(242,140,24,0.14);
    border: 0;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-hero {
    padding: 100px 0;
    background: var(--cream);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.about-hero h1 {
    max-width: 650px;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.about-hero p:not(.eyebrow) {
    max-width: 580px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.about-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.about-content {
    padding: 105px 0;
    background: var(--white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
}

.about-content h2 {
    max-width: 600px;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.about-content-grid > div:last-child p {
    max-width: 600px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-approach {
    padding: 100px 0;
    background: var(--cream);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.approach-card {
    background: var(--white);
    padding: 35px;
    border: 1px solid #e8e8e3;
    border-radius: 25px;
    transition: 0.25s ease;
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.approach-card span {
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
}

.approach-card h3 {
    margin: 25px 0 15px;
    font-size: 23px;
}

.approach-card p {
    color: var(--muted);
    line-height: 1.7;
}

/* =========================================================
   SOLUTIONS PAGE
   ========================================================= */

.solutions-hero,
.contact-hero {
    padding: 105px 0 95px;
    background: var(--cream);
}

.solutions-hero h1,
.contact-hero h1 {
    max-width: 850px;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.solutions-hero > .container > p:last-child,
.contact-hero > .container > p:last-child {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.solutions-page {
    padding: 25px 0 30px;
    background: var(--white);
}

.solution-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 70px;
    align-items: center;
    padding: 90px 0;
    border-bottom: 1px solid var(--border);
}

.solution-detail:first-child {
    padding-top: 65px;
}

.solution-detail:last-child {
    border-bottom: none;
}

.solution-detail.reverse {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.solution-detail.reverse .solution-detail-content {
    order: 2;
}

.solution-detail.reverse .solution-detail-visual {
    order: 1;
}

.solution-detail-content {
    min-width: 0;
}

.solution-number {
    display: inline-block;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.solution-detail-content h2 {
    max-width: 650px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.solution-detail-content > p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.solution-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 35px;
}

.solution-columns h4 {
    color: var(--green);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.solution-columns ul {
    list-style: none;
}

.solution-columns li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 9px;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

.solution-columns li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

.solution-detail-visual {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.solution-detail-visual::after {
    content: "";
    position: absolute;
    width: 55%;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 50%;
}

.solution-detail-visual span {
    position: relative;
    z-index: 2;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 600;
    letter-spacing: -3px;
    opacity: 0.9;
}

.starch-visual {
    background:
        radial-gradient(circle at 30% 30%, #fff 0 8%, transparent 9%),
        radial-gradient(circle at 70% 65%, #dbece2 0 20%, transparent 21%),
        #eaf5ed;
    color: var(--green);
}

.flour-visual {
    background:
        radial-gradient(circle at 70% 30%, #f7d89d 0 20%, transparent 21%),
        #fff5df;
    color: #b87516;
}

.bakery-visual {
    background:
        radial-gradient(circle at 30% 60%, #e9c89b 0 18%, transparent 19%),
        #f6ead9;
    color: #8d5b28;
}

.dairy-visual {
    background:
        radial-gradient(circle at 65% 35%, #fff 0 25%, transparent 26%),
        #e9f3f5;
    color: #26717a;
}

.beverage-visual {
    background:
        radial-gradient(circle at 30% 30%, #f7c6a2 0 20%, transparent 21%),
        #fff0e8;
    color: #d86d28;
}

.additives-visual {
    background:
        radial-gradient(circle at 70% 30%, #b9d7c5 0 20%, transparent 21%),
        #e8f1eb;
    color: #17633b;
    text-align: center;
}

.additives-visual span {
    line-height: 1;
}

.additives-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.additives-list span {
    padding: 10px 15px;
    background: #f3f5f1;
    border-radius: 999px;
    color: #333;
    font-size: 13px;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-section {
    padding: 105px 0 90px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    max-width: 500px;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.5px;
    margin: 20px 0;
}

.contact-description {
    max-width: 500px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: 1px solid var(--border);
}

.contact-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf4ed;
    color: var(--green);
    font-size: 20px;
    font-weight: 600;
}

.contact-item span {
    display: block;
    color: #777;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-item a {
    color: #222;
    text-decoration: none;
    font-size: 16px;
    overflow-wrap: anywhere;
}

.contact-item a:hover {
    color: var(--green);
}

.contact-form-box {
    background: #f5f6f2;
    border-radius: 28px;
    padding: 50px;
}

.form-heading h3 {
    max-width: 500px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 500;
    margin: 15px 0 35px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d8d9d4;
    background: var(--white);
    border-radius: 10px;
    padding: 14px 15px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(23,132,59,0.08);
}

.contact-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.contact-submit:hover {
    background: #116b2e;
    transform: translateY(-2px);
}

.contact-cta {
    padding: 0 0 100px;
}

.contact-cta-box {
    padding: 75px;
    text-align: center;
    background: var(--green-deep);
    color: var(--white);
    border-radius: 30px;
}

.contact-cta-box h2 {
    max-width: 850px;
    margin: 15px auto;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
}

.contact-cta-box h2 span {
    color: #76c893;
}

.contact-cta-box p:last-child {
    color: #d5e4dc;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    padding: 70px 0 25px;
    background: var(--green-dark);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.site-footer .footer-logo img {
    width: 170px;
    height: auto;
}

.footer-brand p {
    color: #d7e5df;
    font-size: 15px;
    line-height: 1.6;
}

.site-footer h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.site-footer a {
    color: #d7e5df;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a,
.footer-contact a {
    display: block;
    font-size: 15px;
    margin-bottom: 13px;
}

.site-footer a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    color: var(--white);
    transition: 0.25s ease;
}

.social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links svg {
    width: 21px;
    height: 21px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
    color: #9fb7ac;
    font-size: 13px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
    .container {
        width: 92%;
    }

    .nav {
        min-height: 76px;
        gap: 20px;
    }

    .logo img {
        width: 155px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .nav-btn {
        padding: 11px 18px;
        font-size: 14px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-content,
    .about-hero-grid {
        gap: 40px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-image img {
        height: 450px;
    }

    .solution-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid,
    .approach-grid {
        gap: 18px;
    }

    .why-us .section-heading h2 {
        font-size: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 30px;
    }

    .solution-detail {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
        gap: 45px;
    }

    .solution-detail.reverse {
        grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
    }

    .solution-detail-content h2 {
        font-size: 42px;
    }

    .solution-detail-visual {
        min-height: 400px;
    }

    .contact-grid {
        gap: 45px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
    .container {
        width: min(92%, 560px);
    }

    body {
        overflow-x: hidden;
    }

    /* Header */
    .header {
        position: sticky;
        top: 0;
    }

    .header .nav {
        position: relative;
        min-height: 68px;
        height: 68px;
        justify-content: center;
        padding: 0 55px;
    }

    .header .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1001;
    }

    .header .logo img {
        width: 125px;
        max-width: 125px;
    }

    .desktop-nav,
    .header .nav-btn {
        display: none;
    }

    .menu-toggle {
        position: absolute;
        left: 10px;
        top: 50%;
        z-index: 1100;
        width: 44px;
        height: 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        transform: translateY(-50%);
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        border-radius: 10px;
        background: var(--green-dark);
        transition: 0.25s ease;
    }

    .mobile-nav {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 14px;
        background: var(--white);
        border-top: 1px solid #eeeeee;
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: 0.25s ease;
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav a {
        width: 100%;
        padding: 13px 12px;
        border-radius: 9px;
        color: #222;
        text-decoration: none;
        font-size: 16px;
    }

    .mobile-nav a:hover {
        color: var(--green);
        background: #f3f7f4;
    }

    .mobile-nav .mobile-connect {
        margin-top: 7px;
        text-align: center;
        color: var(--white);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

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

    /* Typography */
    .eyebrow {
        font-size: 11px;
        letter-spacing: 1.6px;
        margin-bottom: 14px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    /* Home */
    .hero {
        padding: 55px 0 65px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(38px, 10vw, 48px);
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .hero-text > p:not(.eyebrow) {
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 24px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 47px;
        padding: 13px 20px;
        font-size: 14px;
    }

    .hero-image img {
        height: 330px;
        border-radius: 22px;
    }

    /* Home solutions */
    .solutions {
        padding: 65px 0 75px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .solution-card {
        border-radius: 20px;
    }

    .solution-card img {
        height: 220px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 22px;
    }

    /* Why */
    .why-us {
        padding: 65px 0 70px;
    }

    .why-us .section-heading {
        margin-bottom: 32px;
    }

    .why-us .section-heading h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        min-height: 0;
        padding: 28px 25px 40px;
        border-radius: 20px;
    }

    .why-icon {
        margin-bottom: 26px;
    }

    .why-card h3 {
        font-size: 22px;
    }

    .why-line {
        left: 25px;
        bottom: 22px;
    }

    /* CTA */
    .cta {
        padding: 25px 0 65px;
    }

    .cta-box {
        min-height: 0;
        padding: 42px 25px;
        border-radius: 22px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .cta p:not(.eyebrow) {
        font-size: 15px;
    }

    .cta-decoration {
        opacity: 0.5;
    }

    /* About */
    .about-hero {
        padding: 65px 0;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .about-hero p:not(.eyebrow) {
        font-size: 16px;
    }

    .about-hero-image img {
        height: 320px;
        border-radius: 22px;
    }

    .about-content {
        padding: 65px 0;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content-grid > div:last-child p {
        font-size: 16px;
    }

    .about-approach {
        padding: 65px 0;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .approach-card {
        padding: 28px 25px;
        border-radius: 20px;
    }

    /* Solutions page */
    .solutions-hero,
    .contact-hero {
        padding: 70px 0;
    }

    .solutions-hero h1,
    .contact-hero h1 {
        font-size: 43px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .solutions-hero > .container > p:last-child,
    .contact-hero > .container > p:last-child {
        font-size: 16px;
    }

    .solutions-page {
        padding: 10px 0 20px;
    }

    .solution-detail,
    .solution-detail.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 55px 0;
    }

    .solution-detail:first-child {
        padding-top: 45px;
    }

    .solution-detail.reverse .solution-detail-content,
    .solution-detail.reverse .solution-detail-visual {
        order: initial;
    }

    .solution-detail-content h2 {
        font-size: 37px;
        letter-spacing: -0.8px;
    }

    .solution-detail-content > p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.7;
    }

    .solution-columns {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 28px;
    }

    .solution-detail-visual {
        min-height: 270px;
        border-radius: 22px;
    }

    .solution-detail-visual span {
        font-size: 44px;
    }

    .additives-list {
        gap: 8px;
    }

    /* Contact */
    .contact-section {
        padding: 65px 0 55px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-info h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-form-box {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .form-heading h3 {
        font-size: 31px;
        margin-bottom: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-cta {
        padding-bottom: 65px;
    }

    .contact-cta-box {
        padding: 45px 22px;
        border-radius: 22px;
    }

    .contact-cta-box h2 {
        font-size: 35px;
    }

    /* Footer */
    .site-footer {
        padding: 55px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
    }

    .footer-social .social-links {
        justify-content: center;
    }

    .site-footer .footer-logo img {
        width: 150px;
    }

    .footer-bottom {
        margin-top: 35px;
        text-align: center;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
    .container {
        width: 92%;
    }

    .header .nav {
        min-height: 64px;
        height: 64px;
    }

    .header .logo img {
        width: 112px;
    }

    .mobile-nav {
        top: 64px;
    }

    .hero {
        padding: 45px 0 55px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-image img {
        height: 280px;
    }

    .section-heading h2,
    .why-us .section-heading h2 {
        font-size: 34px;
    }

    .why-card {
        padding: 25px 22px 38px;
    }

    .cta {
        padding-top: 15px;
    }

    .cta-box {
        padding: 35px 20px;
    }

    .cta h2 {
        font-size: 31px;
    }

    .about-hero {
        padding: 55px 0;
    }

    .about-hero h1,
    .solutions-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .about-hero-image img {
        height: 260px;
    }

    .about-content h2,
    .contact-info h2 {
        font-size: 34px;
    }

    .solution-detail-content h2 {
        font-size: 32px;
    }

    .solution-detail-visual {
        min-height: 230px;
    }

    .solution-detail-visual span {
        font-size: 36px;
        letter-spacing: -2px;
    }

    .contact-cta-box h2 {
        font-size: 30px;
    }

    .contact-item a {
        font-size: 14px;
    }
}
/* =========================================
   SOLUTION PAGE - IMAGE VISUALS
========================================= */

.solution-detail-visual.solution-image-visual {
    width: 100%;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: #eef6f0;
}

.solution-detail-visual.solution-image-visual img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .solution-detail-visual.solution-image-visual {
        min-height: 420px;
    }

    .solution-detail-visual.solution-image-visual img {
        min-height: 420px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .solution-detail-visual.solution-image-visual {
        width: 100%;
        height: 320px;
        min-height: 320px;
        border-radius: 20px;
    }

    .solution-detail-visual.solution-image-visual img {
        width: 100%;
        height: 320px;
        min-height: 320px;
        object-fit: cover;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .solution-detail-visual.solution-image-visual {
        height: 260px;
        min-height: 260px;
        border-radius: 16px;
    }

    .solution-detail-visual.solution-image-visual img {
        height: 260px;
        min-height: 260px;
    }

}

/* =========================================
   THANK YOU PAGE
   ========================================= */

.thank-you-page {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f5f8f4;
}

.thank-you-box {
    width: 100%;
    max-width: 650px;
    padding: 70px 50px;
    text-align: center;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.thank-you-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #168a43;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.thank-you-box .eyebrow {
    margin-bottom: 18px;
    color: #17843b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.3;
}

.thank-you-box h1 {
    margin: 10px 0 20px;
    color: #111111;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 500;
}

.thank-you-box p:not(.eyebrow) {
    max-width: 500px;
    margin: 10px auto;
    color: #555555;
    font-size: 18px;
    line-height: 1.7;
}

.thank-you-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 50px;
    background: #168a43;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.thank-you-button:hover {
    background: #0f6f35;
    transform: translateY(-2px);
}


/* =========================================
   THANK YOU PAGE — MOBILE
   ========================================= */

@media (max-width: 600px) {

    .thank-you-page {
        min-height: 100vh;
        min-height: 100svh;
        padding: 30px 16px;
    }

    .thank-you-box {
        width: 100%;
        max-width: 100%;
        padding: 45px 22px;
        border-radius: 22px;
    }

    .thank-you-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
        font-size: 32px;
    }

    .thank-you-box .eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
        letter-spacing: 1.6px;
    }

    .thank-you-box h1 {
        margin: 8px 0 18px;
        font-size: 38px;
        line-height: 1.1;
    }

    .thank-you-box p:not(.eyebrow) {
        font-size: 16px;
        line-height: 1.6;
    }

    .thank-you-button {
        width: 100%;
        margin-top: 24px;
        padding: 14px 20px;
        box-sizing: border-box;
    }
}


/* =========================================
   THANK YOU PAGE — SMALL MOBILE
   ========================================= */

@media (max-width: 400px) {

    .thank-you-page {
        padding: 20px 12px;
    }

    .thank-you-box {
        padding: 35px 18px;
    }

    .thank-you-box h1 {
        font-size: 34px;
    }

    .thank-you-box p:not(.eyebrow) {
        font-size: 15px;
    }
}