/* =========================================================
   NECTAFRESH INDUSTRIES PAGE
========================================================= */

.nf-ind-page {
    --ind-green: #0d5b35;
    --ind-dark: #063e27;
    --ind-light: #eef6f1;
    --ind-lighter: #f7faf8;
    --ind-gold: #d9b65b;
    --ind-text: #24382d;
    --ind-muted: #68776e;
    --ind-border: #dfe9e2;

    color: var(--ind-text);
    background: #ffffff;
}

.nf-ind-page *,
.nf-ind-page *::before,
.nf-ind-page *::after {
    box-sizing: border-box;
}

.nf-ind-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   COMMON
========================================================= */

.nf-ind-section-label,
.nf-ind-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: var(--ind-green);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.nf-ind-section-head {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 70px;
    align-items: end;

    margin-bottom: 35px;
}

.nf-ind-section-head h2,
.nf-ind-intro h2,
.nf-ind-why h2,
.nf-ind-quality h2 {
    margin: 0;

    color: var(--ind-dark);

    font-size: clamp(30px, 3.3vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.7px;
}

.nf-ind-section-head h2 span,
.nf-ind-intro h2 span,
.nf-ind-why h2 span,
.nf-ind-quality h2 span {
    color: var(--ind-green);
}

.nf-ind-section-head > p {
    margin: 0;

    color: var(--ind-muted);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   HERO
========================================================= */

.nf-ind-hero {
    position: relative;

    overflow: hidden;

    padding: 85px 0;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(13, 91, 53, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f7fbf8 0%,
            #edf6f0 100%
        );
}

.nf-ind-hero::before {
    content: "";

    position: absolute;
    width: 350px;
    height: 350px;

    right: -120px;
    bottom: -180px;

    border: 70px solid rgba(13, 91, 53, 0.04);
    border-radius: 50%;
}

.nf-ind-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    gap: 90px;
    align-items: center;
}

.nf-ind-hero-content h1 {
    max-width: 760px;

    margin: 0 0 22px;

    color: var(--ind-dark);

    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;

    line-height: 1.07;
    letter-spacing: -1.6px;
}

.nf-ind-hero-content h1 span {
    display: block;

    color: var(--ind-green);
}

.nf-ind-hero-content > p {
    max-width: 680px;

    margin: 0;

    color: var(--ind-muted);

    font-size: 15px;
    line-height: 1.8;
}


/* HERO BUTTONS */

.nf-ind-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 30px;
}

.nf-ind-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 50px;
    padding: 0 22px;

    border: 2px solid var(--ind-green);
    border-radius: 6px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none !important;

    transition: all 0.25s ease;
}

.nf-ind-btn-primary {
    background: var(--ind-green) !important;
    color: #ffffff !important;
}

.nf-ind-btn-outline {
    background: transparent !important;
    color: var(--ind-green) !important;
}

.nf-ind-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 9px 24px rgba(6, 62, 39, 0.14);
}

.nf-ind-btn-outline:hover {
    background: var(--ind-green) !important;
    color: #ffffff !important;
}


/* HERO VISUAL */

.nf-ind-hero-visual {
    position: relative;

    min-height: 430px;
}

.nf-ind-hero-card {
    position: absolute;

    top: 0;
    right: 0;

    width: 90%;

    padding: 42px;

    border-radius: 18px;

    background: var(--ind-dark);

    color: #ffffff;

    box-shadow: 0 24px 55px rgba(6, 62, 39, 0.18);
}

.nf-ind-hero-card-label {
    color: var(--ind-gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.6px;
}

.nf-ind-hero-card h3 {
    margin: 13px 0 25px;

    color: #ffffff !important;

    font-size: 27px;
}

.nf-ind-hero-card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nf-ind-hero-card li {
    position: relative;

    padding-left: 20px;

    color: rgba(255,255,255,.82);

    font-size: 12px;
}

.nf-ind-hero-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 6px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--ind-gold);
}

.nf-ind-floating-card {
    position: absolute;

    right: 8%;
    bottom: 20px;

    width: 72%;

    padding: 22px 25px;

    border: 1px solid var(--ind-border);
    border-radius: 12px;

    background: #ffffff;

    box-shadow: 0 18px 35px rgba(25, 67, 43, .12);
}

.nf-ind-floating-card strong,
.nf-ind-floating-card span {
    display: block;
}

.nf-ind-floating-card strong {
    color: var(--ind-dark);

    font-size: 15px;
}

.nf-ind-floating-card span {
    margin-top: 5px;

    color: var(--ind-muted);

    font-size: 11px;
}


/* =========================================================
   INTRO
========================================================= */

.nf-ind-intro {
    padding: 85px 0 70px;
}

.nf-ind-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 90px;
    align-items: start;
}

.nf-ind-intro-copy {
    padding-top: 28px;
}

.nf-ind-intro-copy p {
    margin: 0 0 16px;

    color: var(--ind-muted);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   INDUSTRIES WE SUPPORT - 6 CARDS IN ONE ROW
========================================================= */

.nf-ind-industries {
    padding: 70px 0 90px;
    background: #f7faf8;
}


/* Section Heading */
.nf-ind-industries .nf-ind-section-head {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 60px;
    align-items: end;

    margin-bottom: 38px;
}

.nf-ind-industries .nf-ind-section-head h2 {
    margin: 0;

    color: #063e27;

    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.7px;

    white-space: nowrap;
}

.nf-ind-industries .nf-ind-section-head h2 span {
    color: #0d5b35;
}

.nf-ind-industries .nf-ind-section-head > p {
    max-width: 520px;

    margin: 0 0 3px auto;

    color: #68776e;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   6 CARD GRID
========================================================= */

.nf-industry-grid {
    display: grid !important;

    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;

    gap: 14px !important;

    width: 100%;
}


/* Individual Card */
.nf-industry-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    border: 1px solid #dfe9e2;
    border-radius: 12px;

    background: #ffffff;

    box-shadow: 0 8px 25px rgba(17, 71, 43, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nf-industry-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 16px 35px rgba(17, 71, 43, 0.11);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.nf-industry-image {
    position: relative;

    width: 100%;
    height: 150px;

    overflow: hidden;

    background: #e8f1eb;
}

.nf-industry-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.nf-industry-card:hover .nf-industry-image img {
    transform: scale(1.05);
}


/* Number Circle */
.nf-industry-number {
    position: absolute;

    left: 12px;
    bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #0d5b35;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.nf-industry-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 18px 14px 17px;
}


/* Small Category */
.nf-industry-category {
    display: block;

    min-height: 24px;
    margin-bottom: 7px;

    color: #0d5b35;

    font-size: 8px;
    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 0.6px;
    text-transform: uppercase;
}


/* Card Heading */
.nf-industry-content h3 {
    min-height: 43px;

    margin: 0 0 10px;

    color: #063e27;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.3;
    letter-spacing: -0.2px;
}


/* Description */
.nf-industry-content > p {
    margin: 0;

    color: #68776e;

    font-size: 10.5px;
    line-height: 1.65;
}


/* =========================================================
   RELEVANT SOLUTIONS
========================================================= */

.nf-industry-products {
    margin-top: auto;
    padding-top: 16px;
}

.nf-industry-products::before {
    content: "";

    display: block;

    width: 100%;
    height: 1px;

    margin-bottom: 13px;

    background: #e7eee9;
}

.nf-industry-products strong,
.nf-industry-products span {
    display: block;
}

.nf-industry-products strong {
    margin-bottom: 6px;

    color: #063e27;

    font-size: 9px;
    font-weight: 800;
}

.nf-industry-products span {
    color: #52675a;

    font-size: 9px;
    line-height: 1.6;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    /*
     * Slightly wider container only for industries section
     * so all six cards get enough breathing space.
     */
    .nf-ind-industries .nf-ind-container {
        width: min(1380px, calc(100% - 50px));
    }

}


/* =========================================================
   SMALL DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .nf-industry-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }

    .nf-industry-image {
        height: 190px;
    }

    .nf-industry-content h3 {
        min-height: auto;
        font-size: 18px;
    }

    .nf-industry-content > p {
        font-size: 12px;
    }

    .nf-industry-products strong,
    .nf-industry-products span {
        font-size: 10px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .nf-ind-industries .nf-ind-section-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .nf-ind-industries .nf-ind-section-head h2 {
        white-space: normal;
    }

    .nf-ind-industries .nf-ind-section-head > p {
        max-width: 650px;
        margin-left: 0;
    }

    .nf-industry-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .nf-ind-industries {
        padding: 55px 0 65px;
    }

    .nf-industry-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .nf-industry-image {
        height: 220px;
    }

    .nf-industry-content {
        padding: 22px 20px;
    }

    .nf-industry-category {
        min-height: auto;
    }

    .nf-industry-content h3 {
        min-height: auto;

        font-size: 20px;
    }

    .nf-industry-content > p {
        font-size: 12px;
    }

}
/* =========================================================
   WHY NECTAFRESH
========================================================= */

.nf-ind-why {
    padding: 40px 0;
}

.nf-ind-why-box {
    padding: 55px;

    border-radius: 18px;

    background: var(--ind-light);
}

.nf-ind-why-heading {
    max-width: 760px;

    margin-bottom: 40px;
}

.nf-ind-why-heading p {
    max-width: 670px;

    margin: 18px 0 0;

    color: var(--ind-muted);

    font-size: 14px;
    line-height: 1.8;
}

.nf-ind-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.nf-ind-benefit {
    min-height: 200px;

    padding: 25px;

    border: 1px solid #d6e5da;
    border-radius: 10px;

    background: #ffffff;
}

.nf-ind-benefit > span {
    display: block;

    margin-bottom: 30px;

    color: var(--ind-gold);

    font-size: 11px;
    font-weight: 800;
}

.nf-ind-benefit h3 {
    margin: 0 0 10px;

    color: var(--ind-dark);

    font-size: 17px;
}

.nf-ind-benefit p {
    margin: 0;

    color: var(--ind-muted);

    font-size: 11px;
    line-height: 1.7;
}
.nf-ind-benefit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}


/* Number */
.nf-ind-benefit .nf-ind-benefit-number {
    display: block;

    margin: 0;

    color: #d9b65b;

    font-size: 11px;
    font-weight: 800;
}


/* Icon Circle */
.nf-ind-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-radius: 50%;

    background: #eef6f1;

    color: #0d5b35;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* SVG */
.nf-ind-benefit-icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Hover */
.nf-ind-benefit:hover .nf-ind-benefit-icon {
    background: #0d5b35;

    color: #ffffff;

    transform: translateY(-3px);
}


/* Card Hover */
.nf-ind-benefit {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.nf-ind-benefit:hover {
    transform: translateY(-4px);

    border-color: #bfd8c7;

    box-shadow: 0 14px 30px rgba(13, 91, 53, 0.08);
}

/* =========================================================
   INDUSTRY MATRIX
========================================================= */

.nf-ind-matrix-section {
    padding: 40px 0 40px;
}

.nf-ind-matrix-wrap {
    overflow-x: auto;

    border: 1px solid var(--ind-border);
    border-radius: 12px;

    background: #ffffff;

    box-shadow: 0 10px 30px rgba(20,69,43,.05);
}

.nf-ind-matrix {
    width: 100%;
    min-width: 850px;

    border-collapse: collapse;

    background: #ffffff;
}

.nf-ind-matrix th,
.nf-ind-matrix td {
    padding: 18px 16px;

    border-bottom: 1px solid #e7eee9;

    text-align: center;

    font-size: 12px;
}


/* HEADER */

.nf-ind-matrix thead,
.nf-ind-matrix thead tr,
.nf-ind-matrix thead th {
    background: var(--ind-dark) !important;
    background-color: var(--ind-dark) !important;

    color: #ffffff !important;
}

.nf-ind-matrix thead th {
    font-weight: 700;

    line-height: 1.4;
}

.nf-ind-matrix thead th:first-child {
    text-align: left;
}


/* BODY */

.nf-ind-matrix tbody tr,
.nf-ind-matrix tbody td {
    background: #ffffff !important;
}

.nf-ind-matrix tbody th {
    background: #f7faf8 !important;

    color: #294a36 !important;

    text-align: left;

    font-weight: 700;
}

.nf-ind-matrix tbody td {
    color: #16804b !important;

    font-size: 16px;
    font-weight: 800;
}

.nf-ind-matrix tbody tr:hover td {
    background: #f7fbf8 !important;
}

.nf-ind-matrix tbody tr:last-child th,
.nf-ind-matrix tbody tr:last-child td {
    border-bottom: 0;
}

.nf-ind-matrix-note {
    margin: 15px 0 0;

    color: #7b8980;

    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   QUALITY SECTION
========================================================= */

.nf-ind-quality {
    padding: 0 0 90px;
}

.nf-ind-quality-box {
    display: grid;
    grid-template-columns: 1.05fr .95fr;

    gap: 60px;
    align-items: center;

    padding: 55px;

    border-radius: 18px;

    background: var(--ind-light);
}

.nf-ind-quality-content > p {
    max-width: 600px;

    margin: 18px 0 22px;

    color: var(--ind-muted);

    font-size: 13px;
    line-height: 1.8;
}

.nf-ind-text-link {
    display: inline-flex;

    color: var(--ind-green) !important;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none !important;
}

.nf-ind-cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.nf-ind-cert-item {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 120px;

    padding: 22px;

    border: 1px solid #d4e3d8;
    border-radius: 10px;

    background: #ffffff;

    text-align: center;
}

.nf-ind-cert-item strong {
    color: var(--ind-dark);

    font-size: 17px;
}

.nf-ind-cert-item span {
    margin-top: 5px;

    color: var(--ind-muted);

    font-size: 10px;
}
/* =========================================================
   CERTIFICATION LOGO CARDS
========================================================= */

.nf-ind-cert-card {
    min-height: 180px;
    padding: 24px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid #d8e5dc;
    border-radius: 12px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.nf-ind-cert-card:hover {
    transform: translateY(-4px);

    border-color: #b9d5c2;

    box-shadow: 0 14px 30px rgba(13, 91, 53, .08);
}


/* Logo container */
.nf-ind-cert-logo {
    height: 70px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
}


/* Actual certification logo */
.nf-ind-cert-logo img {
    display: block;

    max-width: 105px;
    max-height: 65px;

    width: auto;
    height: auto;

    object-fit: contain;
}


/* Certification Name */
.nf-ind-cert-card h3 {
    margin: 0 0 4px;

    color: #063e27;

    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}


/* Certification Type */
.nf-ind-cert-card span {
    color: #68776e;

    font-size: 11px;
    line-height: 1.5;
}

/* =========================================================
   FINAL CTA
========================================================= */

.nf-ind-final {
    padding: 0 0 90px;
}

.nf-ind-final-box {
    display: grid;
    grid-template-columns: 1.15fr .85fr;

    overflow: hidden;

    border: 1px solid var(--ind-border);
    border-radius: 16px;

    box-shadow: 0 15px 45px rgba(15,68,40,.08);
}


/* LEFT */

.nf-ind-final-content {
    padding: 52px;

    background: #ffffff;
}

.nf-ind-final-label {
    display: block;

    margin-bottom: 17px;

    color: var(--ind-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.nf-ind-final-content h2 {
    margin: 0 0 18px;

    color: var(--ind-dark);

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.2;
}

.nf-ind-final-content h2 span {
    display: block;

    color: var(--ind-green);
}

.nf-ind-final-content p {
    max-width: 650px;

    margin: 0;

    color: var(--ind-muted);

    font-size: 13px;
    line-height: 1.8;
}


/* RIGHT */

.nf-ind-final-box .nf-ind-final-action {
    display: flex !important;
    flex-direction: column;
    justify-content: center;

    padding: 52px !important;

    background: var(--ind-dark) !important;
    background-color: var(--ind-dark) !important;

    color: #ffffff !important;
}

.nf-ind-final-action > span {
    margin-bottom: 14px;

    color: var(--ind-gold) !important;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.nf-ind-final-action h3 {
    margin: 0 0 12px !important;

    color: #ffffff !important;

    font-size: 27px;
}

.nf-ind-final-action > p {
    margin: 0 0 25px !important;

    color: rgba(255,255,255,.78) !important;

    font-size: 12px;
    line-height: 1.7;
}


/* CTA BUTTON */

.nf-ind-final-action > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;

    min-height: 50px;

    padding: 0 18px !important;

    border: 2px solid #ffffff !important;
    border-radius: 6px;

    background: #ffffff !important;

    color: var(--ind-dark) !important;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none !important;

    transition: all .25s ease;
}

.nf-ind-final-action > a span,
.nf-ind-final-action > a strong {
    color: var(--ind-dark) !important;
}

.nf-ind-final-action > a:hover {
    background: transparent !important;

    color: #ffffff !important;
}

.nf-ind-final-action > a:hover span,
.nf-ind-final-action > a:hover strong {
    color: #ffffff !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .nf-ind-hero-grid,
    .nf-ind-intro-grid,
    .nf-ind-quality-box,
    .nf-ind-final-box {
        grid-template-columns: 1fr;
    }

    .nf-ind-hero-grid,
    .nf-ind-intro-grid {
        gap: 45px;
    }

    .nf-ind-hero-visual {
        min-height: 400px;
    }

    .nf-ind-section-head {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .nf-ind-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nf-ind-quality-box {
        gap: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .nf-ind-container {
        width: min(100% - 30px, 1180px);
    }

    .nf-ind-hero {
        padding: 60px 0;
    }

    .nf-ind-hero-content h1 {
        font-size: 40px;
    }

    .nf-ind-hero-actions {
        flex-direction: column;
    }

    .nf-ind-btn {
        width: 100%;
    }

    .nf-ind-hero-visual {
        min-height: 430px;
    }

    .nf-ind-hero-card {
        width: 100%;

        padding: 30px 24px;
    }

    .nf-ind-floating-card {
        right: 5%;

        width: 90%;
    }

    .nf-ind-intro {
        padding: 65px 0 45px;
    }

    .nf-ind-industries {
        padding: 55px 0 65px;
    }

    .nf-industry-grid {
        grid-template-columns: 1fr;
    }

    .nf-industry-image {
        height: 220px;
    }

    .nf-ind-why {
        padding: 65px 0;
    }

    .nf-ind-why-box {
        padding: 35px 24px;
    }

    .nf-ind-benefit-grid {
        grid-template-columns: 1fr;
    }

    .nf-ind-benefit {
        min-height: auto;
    }

    .nf-ind-matrix-section {
        padding: 55px 0 65px;
    }

    .nf-ind-quality {
        padding-bottom: 65px;
    }

    .nf-ind-quality-box {
        padding: 35px 24px;
    }

    .nf-ind-final {
        padding-bottom: 65px;
    }

    .nf-ind-final-content,
    .nf-ind-final-box .nf-ind-final-action {
        padding: 32px 24px !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .nf-ind-hero-content h1 {
        font-size: 35px;
    }

    .nf-ind-hero-card ul {
        grid-template-columns: 1fr;
    }

    .nf-ind-cert-grid {
        grid-template-columns: 1fr;
    }

    .nf-industry-content {
        padding: 23px 20px;
    }

}
/* =========================================================
   INDUSTRIES HERO - SUBTLE VISUAL ENHANCEMENT
========================================================= */

.nf-ind-hero {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(246, 251, 248, 0.98) 0%,
            rgba(246, 251, 248, 0.96) 48%,
            rgba(232, 244, 236, 0.90) 100%
        );
}


/* Soft decorative glow behind right content */
.nf-ind-hero::before {
    content: "";

    position: absolute;
    right: -100px;
    top: -120px;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(72, 143, 89, 0.13) 0%,
            rgba(72, 143, 89, 0.06) 40%,
            rgba(72, 143, 89, 0) 72%
        );

    pointer-events: none;
}


/* Decorative rice-field style lines */
.nf-ind-hero::after {
    content: "";

    position: absolute;
    right: -70px;
    bottom: -180px;

    width: 360px;
    height: 360px;

    border: 35px solid rgba(20, 105, 59, 0.025);
    border-radius: 50%;

    box-shadow:
        0 0 0 45px rgba(20, 105, 59, 0.018),
        0 0 0 90px rgba(20, 105, 59, 0.012);

    pointer-events: none;
}


/* Keep actual hero content above decoration */
.nf-ind-hero .nf-ind-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   INGREDIENT PORTFOLIO CARD
========================================================= */

.nf-ind-hero-card {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #074b31 0%,
            #063e27 100%
        );

    box-shadow:
        0 24px 55px rgba(6, 62, 39, 0.16);
}


/* Very subtle rice grain pattern */
.nf-ind-hero-card::before {
    content: "";

    position: absolute;
    right: -45px;
    top: -45px;

    width: 170px;
    height: 170px;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;

    box-shadow:
        0 0 0 25px rgba(255,255,255,.018),
        0 0 0 50px rgba(255,255,255,.012);

    pointer-events: none;
}


/* Keep text above pattern */
.nf-ind-hero-card > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   ORGANIC / CONVENTIONAL SMALL CARD
========================================================= */

.nf-ind-hero-note {
    position: relative;

    border: 1px solid rgba(20, 105, 59, 0.12);

    box-shadow:
        0 12px 30px rgba(6, 62, 39, 0.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.nf-ind-hero-note:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(6, 62, 39, 0.10);
}