﻿



.scn-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 40px 80px;
    color: white;
    position: relative;
    z-index: 2;
}

.scn-hero-text h1 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.scn-hero-text > p:not(.scn-hero-sub) {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    max-width: 560px;
}

.scn-hero-sub {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.scn-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scn-hero-image {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.scn-hero-float-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-800);
    font-size: 0.8125rem;
    font-weight: 600;
    min-width: 160px;
}

.scn-hero-float-card svg {
    width: 22px;
    height: 22px;
    color: #10B981;
    flex-shrink: 0;
}

.scn-hero-float-card--top {
    top: 12px;
    right: 0;
}

.scn-hero-float-card--bottom {
    bottom: 24px;
    left: -12px;
}


.scn-need-intro {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.scn-need-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.scn-need-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid #E8F5ED;
    box-shadow: 0 2px 12px rgba(0, 60, 30, 0.05);
    transition: all 0.25s ease;
}

.scn-need-card:hover {
    box-shadow: 0 8px 32px rgba(0, 60, 30, 0.10);
    transform: translateY(-3px);
    border-color: #A7F3D0;
}

.scn-need-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scn-need-card h3::before {
    content: "?";
    width: 26px;
    height: 26px;
    background: #ECFDF5;
    color: #047857;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    flex-shrink: 0;
}

.scn-need-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
}


.scn-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.scn-related-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1.5px solid #E8F5ED;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.scn-related-card:hover {
    border-color: #10B981;
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.13);
    transform: translateY(-4px);
}

.scn-related-icon {
    width: 52px;
    height: 52px;
    background: #ECFDF5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #059669;
}

.scn-related-icon svg { width: 28px; height: 28px; }

.scn-related-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.scn-related-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.scn-related-link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #059669;
    transition: color 0.2s;
}

.scn-related-card:hover .scn-related-link { color: #047857; }

/* ==================== Responsive ==================== */
@media (max-width: 1100px) {
    .scn-hero-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .scn-related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .scn-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
        padding-bottom: 64px;
    }
    .scn-hero-text > p,
    .scn-hero-sub { margin-left: auto; margin-right: auto; }
    .scn-hero-visual { order: -1; max-width: 520px; margin: 0 auto; }
    .scn-hero-float-card--top { right: -8px; }
    .scn-hero-float-card--bottom { left: -8px; }
    .scn-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .scn-hero-grid { padding: 52px 24px 56px; gap: 28px; }
    .scn-need-grid { grid-template-columns: 1fr; }
    .scn-related-grid { grid-template-columns: 1fr; }
    .scn-hero-float-card { display: none; }
    .scn-hero-image { max-width: 100%; }
}

/* Vineyard scenario page refinements */
.scenario-vineyard-page .vine-tags,
.scenario-vineyard-page .vine-tags-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.scenario-vineyard-page .vine-tags {
    margin-top: 24px;
}

.scenario-vineyard-page .vine-tags span,
.scenario-vineyard-page .vine-tags-panel span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(236, 253, 245, 0.94);
    color: #047857;
    border: 1px solid rgba(167, 243, 208, 0.95);
    font-size: 0.86rem;
    font-weight: 700;
}

.scenario-vineyard-page .vine-tags-panel {
    justify-content: center;
    max-width: 980px;
    margin: 0 auto 28px;
}

.scenario-vineyard-page .vine-two {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.scenario-vineyard-page .vine-two img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(15, 45, 31, 0.12);
    border: 1px solid rgba(15, 107, 62, 0.10);
}

.scenario-vineyard-page .vine-two h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.25;
    color: #102033;
    margin: 10px 0 16px;
}

.scenario-vineyard-page .vine-two p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.scenario-vineyard-page .vine-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.scenario-vineyard-page .vine-list li {
    background: #F0F9F4;
    border-left: 3px solid #10B981;
    border-radius: 8px;
    padding: 12px 14px;
    color: #0F6B3E;
    font-weight: 700;
}

.scenario-vineyard-page .vine-grid {
    display: grid;
    gap: 18px;
}

.scenario-vineyard-page .vine-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-vineyard-page .vine-grid.nine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-vineyard-page .vine-card {
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.12);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.05);
}

.scenario-vineyard-page .vine-card h3 {
    color: #0F6B3E;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.scenario-vineyard-page .vine-card p {
    color: #4B5563;
    line-height: 1.65;
    font-size: 0.92rem;
}

.scenario-vineyard-page .vine-system {
    max-width: 1050px;
    margin: 0 auto 28px;
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.12);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 45, 31, 0.08);
}

.scenario-vineyard-page .vine-system-map,
.scenario-vineyard-page .vine-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.scenario-vineyard-page .vine-system-map {
    margin-bottom: 20px;
}

.scenario-vineyard-page .vine-system-map span,
.scenario-vineyard-page .vine-flow span {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.9rem;
}

.scenario-vineyard-page .vine-system p {
    color: #4B5563;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

.scenario-vineyard-page .vine-flow {
    max-width: 1120px;
    margin: 0 auto 28px;
}

.scenario-vineyard-page .prod-products-grid {
    margin-top: 0;
}

.scenario-vineyard-page .scn-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-vineyard-page .scn-related-card {
    min-height: 220px;
}

@media (max-width: 1100px) {
    .scenario-vineyard-page .vine-grid.four,
    .scenario-vineyard-page .scn-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .scenario-vineyard-page .vine-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .scenario-vineyard-page .vine-grid.four,
    .scenario-vineyard-page .vine-grid.nine,
    .scenario-vineyard-page .scn-related-grid,
    .scenario-vineyard-page .vine-list {
        grid-template-columns: 1fr;
    }
}

/* Greenhouse vegetable scenario page refinements */
.scenario-greenhouse-page .gh-tags,
.scenario-greenhouse-page .gh-tags-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.scenario-greenhouse-page .gh-tags {
    margin-top: 24px;
}

.scenario-greenhouse-page .gh-tags span,
.scenario-greenhouse-page .gh-tags-panel span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(236, 253, 245, 0.94);
    color: #047857;
    border: 1px solid rgba(167, 243, 208, 0.95);
    font-size: 0.86rem;
    font-weight: 700;
}

.scenario-greenhouse-page .gh-tags-panel {
    justify-content: center;
    max-width: 1020px;
    margin: 0 auto 28px;
}

.scenario-greenhouse-page .gh-two {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.scenario-greenhouse-page .gh-two img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(15, 45, 31, 0.12);
    border: 1px solid rgba(15, 107, 62, 0.10);
}

.scenario-greenhouse-page .gh-two h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.25;
    color: #102033;
    margin: 10px 0 16px;
}

.scenario-greenhouse-page .gh-two p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.scenario-greenhouse-page .gh-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.scenario-greenhouse-page .gh-list li {
    background: #F0F9F4;
    border-left: 3px solid #10B981;
    border-radius: 8px;
    padding: 12px 14px;
    color: #0F6B3E;
    font-weight: 700;
}

.scenario-greenhouse-page .gh-grid {
    display: grid;
    gap: 18px;
}

.scenario-greenhouse-page .gh-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-greenhouse-page .gh-grid.nine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-greenhouse-page .gh-card {
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.12);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.05);
}

.scenario-greenhouse-page .gh-card h3 {
    color: #0F6B3E;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.scenario-greenhouse-page .gh-card p {
    color: #4B5563;
    line-height: 1.65;
    font-size: 0.92rem;
}

.scenario-greenhouse-page .gh-system {
    max-width: 1080px;
    margin: 0 auto 28px;
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.12);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 45, 31, 0.08);
}

.scenario-greenhouse-page .gh-system-map,
.scenario-greenhouse-page .gh-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.scenario-greenhouse-page .gh-system-map {
    margin-bottom: 20px;
}

.scenario-greenhouse-page .gh-system-map span,
.scenario-greenhouse-page .gh-flow span {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.9rem;
}

.scenario-greenhouse-page .gh-system p {
    color: #4B5563;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

.scenario-greenhouse-page .gh-flow {
    max-width: 1120px;
    margin: 0 auto 28px;
}

.scenario-greenhouse-page .prod-products-grid {
    margin-top: 0;
}

.scenario-greenhouse-page .scn-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-greenhouse-page .scn-related-card {
    min-height: 220px;
}

@media (max-width: 1100px) {
    .scenario-greenhouse-page .gh-grid.four,
    .scenario-greenhouse-page .scn-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .scenario-greenhouse-page .gh-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .scenario-greenhouse-page .gh-grid.four,
    .scenario-greenhouse-page .gh-grid.nine,
    .scenario-greenhouse-page .scn-related-grid,
    .scenario-greenhouse-page .gh-list {
        grid-template-columns: 1fr;
    }
}

/* Orchard scenario page refinements */
.scenario-orchard-page .orchard-tags,
.scenario-orchard-page .orchard-tags-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.scenario-orchard-page .orchard-tags {
    margin-top: 24px;
}

.scenario-orchard-page .orchard-tags span,
.scenario-orchard-page .orchard-tags-panel span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(236, 253, 245, 0.94);
    color: #047857;
    border: 1px solid rgba(167, 243, 208, 0.95);
    font-size: 0.86rem;
    font-weight: 700;
}

.scenario-orchard-page .orchard-tags-panel {
    justify-content: center;
    max-width: 1020px;
    margin: 0 auto 28px;
}

.scenario-orchard-page .orchard-two {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.scenario-orchard-page .orchard-two img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(15, 45, 31, 0.12);
    border: 1px solid rgba(15, 107, 62, 0.10);
}

.scenario-orchard-page .orchard-two h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.25;
    color: #102033;
    margin: 10px 0 16px;
}

.scenario-orchard-page .orchard-two p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.scenario-orchard-page .orchard-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.scenario-orchard-page .orchard-list li {
    background: #F0F9F4;
    border-left: 3px solid #10B981;
    border-radius: 8px;
    padding: 12px 14px;
    color: #0F6B3E;
    font-weight: 700;
}

.scenario-orchard-page .orchard-grid {
    display: grid;
    gap: 18px;
}

.scenario-orchard-page .orchard-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-orchard-page .orchard-grid.nine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-orchard-page .orchard-card {
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.12);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.05);
}

.scenario-orchard-page .orchard-card h3 {
    color: #0F6B3E;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.scenario-orchard-page .orchard-card p {
    color: #4B5563;
    line-height: 1.65;
    font-size: 0.92rem;
}

.scenario-orchard-page .orchard-system {
    max-width: 1080px;
    margin: 0 auto 28px;
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.12);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 45, 31, 0.08);
}

.scenario-orchard-page .orchard-system-map,
.scenario-orchard-page .orchard-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.scenario-orchard-page .orchard-system-map {
    margin-bottom: 20px;
}

.scenario-orchard-page .orchard-system-map span,
.scenario-orchard-page .orchard-flow span {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.9rem;
}

.scenario-orchard-page .orchard-system p {
    color: #4B5563;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

.scenario-orchard-page .orchard-flow {
    max-width: 1120px;
    margin: 0 auto 28px;
}

.scenario-orchard-page .prod-products-grid {
    margin-top: 0;
}

.scenario-orchard-page .scn-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-orchard-page .scn-related-card {
    min-height: 220px;
}

@media (max-width: 1100px) {
    .scenario-orchard-page .orchard-grid.four,
    .scenario-orchard-page .scn-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .scenario-orchard-page .orchard-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .scenario-orchard-page .orchard-grid.four,
    .scenario-orchard-page .orchard-grid.nine,
    .scenario-orchard-page .scn-related-grid,
    .scenario-orchard-page .orchard-list {
        grid-template-columns: 1fr;
    }
}

/* Blueberry scenario page refinements */
.scenario-blueberry-page .blueberry-tags,
.scenario-blueberry-page .blueberry-tags-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.scenario-blueberry-page .blueberry-tags {
    margin-top: 24px;
}

.scenario-blueberry-page .blueberry-tags span,
.scenario-blueberry-page .blueberry-tags-panel span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(236, 253, 245, 0.94);
    color: #047857;
    border: 1px solid rgba(167, 243, 208, 0.95);
    font-size: 0.86rem;
    font-weight: 700;
}

.scenario-blueberry-page .blueberry-tags-panel {
    justify-content: center;
    max-width: 1020px;
    margin: 0 auto 28px;
}

.scenario-blueberry-page .blueberry-two {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.scenario-blueberry-page .blueberry-two img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(15, 45, 31, 0.12);
    border: 1px solid rgba(15, 107, 62, 0.10);
}

.scenario-blueberry-page .blueberry-two h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.25;
    color: #102033;
    margin: 10px 0 16px;
}

.scenario-blueberry-page .blueberry-two p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.scenario-blueberry-page .blueberry-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.scenario-blueberry-page .blueberry-list li {
    background: #F0F9F4;
    border-left: 3px solid #10B981;
    border-radius: 8px;
    padding: 12px 14px;
    color: #0F6B3E;
    font-weight: 700;
}

.scenario-blueberry-page .blueberry-grid {
    display: grid;
    gap: 18px;
}

.scenario-blueberry-page .blueberry-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-blueberry-page .blueberry-grid.nine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-blueberry-page .blueberry-card {
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.12);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.05);
}

.scenario-blueberry-page .blueberry-card h3 {
    color: #0F6B3E;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.scenario-blueberry-page .blueberry-card p {
    color: #4B5563;
    line-height: 1.65;
    font-size: 0.92rem;
}

.scenario-blueberry-page .blueberry-system {
    max-width: 1080px;
    margin: 0 auto 28px;
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.12);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 45, 31, 0.08);
}

.scenario-blueberry-page .blueberry-system-map,
.scenario-blueberry-page .blueberry-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.scenario-blueberry-page .blueberry-system-map {
    margin-bottom: 20px;
}

.scenario-blueberry-page .blueberry-system-map span,
.scenario-blueberry-page .blueberry-flow span {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.9rem;
}

.scenario-blueberry-page .blueberry-system p {
    color: #4B5563;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

.scenario-blueberry-page .blueberry-flow {
    max-width: 1120px;
    margin: 0 auto 28px;
}

.scenario-blueberry-page .prod-products-grid {
    margin-top: 0;
}

.scenario-blueberry-page .scn-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-blueberry-page .scn-related-card {
    min-height: 220px;
}

@media (max-width: 1100px) {
    .scenario-blueberry-page .blueberry-grid.four,
    .scenario-blueberry-page .scn-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .scenario-blueberry-page .blueberry-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .scenario-blueberry-page .blueberry-grid.four,
    .scenario-blueberry-page .blueberry-grid.nine,
    .scenario-blueberry-page .scn-related-grid,
    .scenario-blueberry-page .blueberry-list {
        grid-template-columns: 1fr;
    }
}

/* Field irrigation scenario page refinements */
.scenario-field-page .field-tags,
.scenario-field-page .field-tags-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.scenario-field-page .field-tags {
    margin-top: 24px;
}

.scenario-field-page .field-tags span,
.scenario-field-page .field-tags-panel span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(236, 253, 245, 0.94);
    color: #047857;
    border: 1px solid rgba(167, 243, 208, 0.95);
    font-size: 0.86rem;
    font-weight: 700;
}

.scenario-field-page .field-tags-panel {
    justify-content: center;
    max-width: 1060px;
    margin: 0 auto 28px;
}

.scenario-field-page .field-two {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.scenario-field-page .field-two img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(15, 45, 31, 0.12);
    border: 1px solid rgba(15, 107, 62, 0.10);
}

.scenario-field-page .field-two h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.25;
    color: #102033;
    margin: 10px 0 16px;
}

.scenario-field-page .field-two p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.scenario-field-page .field-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.scenario-field-page .field-list li {
    background: #F0F9F4;
    border-left: 3px solid #10B981;
    border-radius: 8px;
    padding: 12px 14px;
    color: #0F6B3E;
    font-weight: 700;
}

.scenario-field-page .field-grid {
    display: grid;
    gap: 18px;
}

.scenario-field-page .field-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-field-page .field-grid.nine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-field-page .field-card {
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.12);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.05);
}

.scenario-field-page .field-card h3 {
    color: #0F6B3E;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.scenario-field-page .field-card p {
    color: #4B5563;
    line-height: 1.65;
    font-size: 0.92rem;
}

.scenario-field-page .field-system {
    max-width: 1080px;
    margin: 0 auto 28px;
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.12);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 45, 31, 0.08);
}

.scenario-field-page .field-system-map,
.scenario-field-page .field-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.scenario-field-page .field-system-map {
    margin-bottom: 20px;
}

.scenario-field-page .field-system-map span,
.scenario-field-page .field-flow span {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.9rem;
}

.scenario-field-page .field-system p {
    color: #4B5563;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

.scenario-field-page .field-flow {
    max-width: 1120px;
    margin: 0 auto 28px;
}

.scenario-field-page .prod-products-grid {
    margin-top: 0;
}

.scenario-field-page .scn-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-field-page .scn-related-card {
    min-height: 220px;
}

@media (max-width: 1100px) {
    .scenario-field-page .field-grid.four,
    .scenario-field-page .scn-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .scenario-field-page .field-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .scenario-field-page .field-grid.four,
    .scenario-field-page .field-grid.nine,
    .scenario-field-page .scn-related-grid,
    .scenario-field-page .field-list {
        grid-template-columns: 1fr;
    }
}


/* Hydroponic and soilless cultivation scenario page */
.scenario-hydroponic-page .hydro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.scenario-hydroponic-page .hydro-tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(236, 253, 245, 0.94);
    color: #047857;
    border: 1px solid rgba(167, 243, 208, 0.95);
    font-size: 0.86rem;
    font-weight: 700;
}

.scenario-hydroponic-page .hydro-grid {
    display: grid;
    gap: 18px;
}

.scenario-hydroponic-page .hydro-grid.six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-hydroponic-page .hydro-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-hydroponic-page .hydro-card {
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.14);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.scenario-hydroponic-page .hydro-card:hover {
    transform: translateY(-3px);
    border-color: #86EFAC;
    box-shadow: 0 12px 30px rgba(15, 107, 62, 0.10);
}

.scenario-hydroponic-page .hydro-card h3 {
    color: #0F6B3E;
    font-size: 1.03rem;
    line-height: 1.35;
    margin: 12px 0 8px;
}

.scenario-hydroponic-page .hydro-card p {
    color: #4B5563;
    line-height: 1.68;
    font-size: 0.92rem;
}

.scenario-hydroponic-page .hydro-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
    font-size: 0.78rem;
    font-weight: 800;
}

.scenario-hydroponic-page .hydro-two {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 46px;
    align-items: center;
}

.scenario-hydroponic-page .hydro-two > div:first-child {
    min-width: 0;
}

.scenario-hydroponic-page .hydro-two img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(15, 107, 62, 0.10);
    box-shadow: 0 18px 40px rgba(15, 45, 31, 0.13);
}

.scenario-hydroponic-page .hydro-two h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    color: #102033;
    margin: 10px 0 16px;
}

.scenario-hydroponic-page .hydro-two > div > p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.scenario-hydroponic-page .hydro-capabilities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.scenario-hydroponic-page .hydro-capabilities > div {
    background: #F0FAF5;
    border-left: 3px solid #10B981;
    border-radius: 10px;
    padding: 15px 16px;
}

.scenario-hydroponic-page .hydro-capabilities h3 {
    color: #065F46;
    font-size: 0.96rem;
    margin-bottom: 6px;
}

.scenario-hydroponic-page .hydro-capabilities p {
    color: #4B5563;
    font-size: 0.86rem;
    line-height: 1.6;
    margin: 0;
}

.scenario-hydroponic-page .hydro-system {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 28px;
    align-items: stretch;
    max-width: 1120px;
    margin: 0 auto;
}

.scenario-hydroponic-page .hydro-system-map,
.scenario-hydroponic-page .hydro-component-list {
    background: #fff;
    border: 1px solid rgba(15, 185, 129, 0.14);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 8px 28px rgba(15, 45, 31, 0.07);
}

.scenario-hydroponic-page .hydro-system-map {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.scenario-hydroponic-page .hydro-layer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #F0FAF5;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    padding: 14px 16px;
}

.scenario-hydroponic-page .hydro-layer strong {
    color: #065F46;
    font-size: 0.95rem;
}

.scenario-hydroponic-page .hydro-layer span {
    color: #4B5563;
    font-size: 0.82rem;
    text-align: right;
}

.scenario-hydroponic-page .hydro-arrow {
    color: #10B981;
    font-size: 1.25rem;
    line-height: 1;
    text-align: center;
    padding: 5px 0;
}

.scenario-hydroponic-page .hydro-component-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.scenario-hydroponic-page .hydro-component-list span {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    background: #F8FAF9;
    color: #285A45;
    border-radius: 9px;
    border: 1px solid #E5E7EB;
    font-size: 0.86rem;
    font-weight: 700;
}

.scenario-hydroponic-page .hydro-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1160px;
    margin: 0 auto 30px;
}

.scenario-hydroponic-page .hydro-flow span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 15px;
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 800;
}

.scenario-hydroponic-page .workflow-details .hydro-card h3 {
    margin-top: 0;
}

.scenario-hydroponic-page .prod-products-grid {
    margin-top: 0;
}

.scenario-hydroponic-page .hydro-app-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.scenario-hydroponic-page .hydro-app-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.06);
}

.scenario-hydroponic-page .hydro-app-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.scenario-hydroponic-page .hydro-app-card > div {
    padding: 20px;
}

.scenario-hydroponic-page .hydro-app-card h3 {
    color: #0F6B3E;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.scenario-hydroponic-page .hydro-app-card p {
    color: #4B5563;
    font-size: 0.91rem;
    line-height: 1.65;
}

.scenario-hydroponic-page .scn-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-hydroponic-page .scn-related-card {
    min-height: 205px;
}

@media (max-width: 1100px) {
    .scenario-hydroponic-page .hydro-grid.four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .scenario-hydroponic-page .hydro-system {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .scenario-hydroponic-page .hydro-grid.six,
    .scenario-hydroponic-page .hydro-app-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .scenario-hydroponic-page .hydro-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .scenario-hydroponic-page .hydro-grid.six,
    .scenario-hydroponic-page .hydro-grid.four,
    .scenario-hydroponic-page .hydro-app-grid,
    .scenario-hydroponic-page .scn-related-grid,
    .scenario-hydroponic-page .hydro-capabilities,
    .scenario-hydroponic-page .hydro-component-list {
        grid-template-columns: 1fr;
    }
    .scenario-hydroponic-page .hydro-layer {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
    .scenario-hydroponic-page .hydro-layer span {
        text-align: left;
    }
    .scenario-hydroponic-page .hydro-system-map,
    .scenario-hydroponic-page .hydro-component-list {
        padding: 18px;
    }
}


