.solutions-page {
    --solution-blue: #3453ff;
    --solution-blue-2: #6577ff;
    --solution-ink: #050816;
    --solution-muted: #606a7d;
    --solution-line: rgba(27, 43, 94, 0.12);
    --solution-container: min(1376px, calc(100vw - 112px));
    margin: 0;
    color: var(--solution-ink);
    background:
        radial-gradient(circle at 88% 2%, rgba(161, 198, 255, 0.35), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #fbfcff 100%);
    font-family: "Manrope", "Noto Sans SC", sans-serif;
    overflow-x: hidden;
}

.solutions-page {
    --solution-container: min(1560px, calc(100vw - 132px));
}

@media (max-width: 1420px) {
    .solutions-page {
        --solution-container: min(1240px, calc(100vw - 64px));
    }
}

@media (max-width: 1100px) {
    .solutions-page {
        --solution-container: min(900px, calc(100vw - 40px));
    }
}

@media (max-width: 720px) {
    .solutions-page {
        --solution-container: calc(100vw - 28px);
    }
}

.solutions-page *, .solutions-page *::before, .solutions-page *::after { box-sizing: border-box; }
.solutions-page::before, .solutions-page::after { display: none; }
.solutions-page a { color: inherit; text-decoration: none; }
.solutions-page img { display: block; max-width: 100%; }
.solution-symbols { position: absolute; width: 0; height: 0; overflow: hidden; }
.solutions-page svg { width: 1em; height: 1em; fill: none; stroke: currentColor; }
.solutions-page svg path, .solutions-page svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.solution-container { width: var(--solution-container); margin-inline: auto; }

.solutions-page .solution-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 24px 0 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.48));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.solutions-page .solution-header.scrolled { padding-top: 12px; }
.solutions-page .solution-nav {
    width: var(--solution-container);
    min-height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.solutions-page .solution-header.scrolled .solution-nav {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 16px 42px rgba(38, 51, 112, 0.12);
}
.solutions-page .solution-brand {
    min-width: 166px;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}
.solution-brand-text {
    color: #050816;
    font-size: 26px;
    line-height: 0.9;
    font-weight: 750;
    letter-spacing: -0.055em;
}
.solution-brand-text em {
    font-style: normal;
    font-weight: 400;
}
.solution-brand-sub {
    color: #101727;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.38em;
}
.solutions-page .solution-links {
    justify-content: center;
    gap: clamp(30px, 3vw, 58px);
}
.solutions-page .solution-links .nav-link {
    color: #0c1221;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
    padding: 8px 0 15px;
}
.solutions-page .solution-links .nav-link::after {
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--solution-blue);
}
.solutions-page .solution-actions {
    min-width: 132px;
    justify-content: flex-end;
    gap: 12px;
}
.solution-lang {
    gap: 0;
    padding: 3px;
    border: 1px solid rgba(27,43,94,0.10);
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 24px rgba(45, 58, 120, 0.08);
}
.solution-lang .lang-btn {
    min-width: 31px;
    padding: 6px 8px;
    color: #111827;
    font-size: 11px;
    font-weight: 900;
    border-radius: 999px;
}
.solution-lang .lang-btn.active { color: #fff; background: var(--solution-blue); }
.solution-menu {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 24px rgba(45, 58, 120, 0.08), inset 0 0 0 1px rgba(27,43,94,0.10);
}
.solution-menu::before,
.solution-menu::after,
.solution-menu span { left: 11px; right: 11px; height: 2px; }
.solution-menu::before { top: 12px; }
.solution-menu span { top: 18px; }
.solution-menu::after { top: 24px; }

.solution-main { margin-top: -80px; }
.solution-hero {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background:
        radial-gradient(circle at 40% 55%, rgba(255,255,255,0.62), transparent 19%),
        linear-gradient(90deg, #fff 0%, #fbfdff 42%, #e8f2ff 100%);
}
.solution-hero-bg {
    position: absolute;
    inset: 0 0 0 auto;
    width: 58%;
    overflow: hidden;
}
.solution-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.86) 12%, rgba(255,255,255,0.26) 42%, rgba(255,255,255,0.02) 72%),
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 76%, #fff 100%);
}
.solution-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}
.hero-layer {
    position: relative;
    z-index: 2;
    min-height: 540px;
    display: grid;
    align-items: center;
    padding-top: 92px;
}
.solutions-page .hero-copy {
    position: relative;
    width: min(760px, 100%);
    overflow: visible;
    padding-bottom: 76px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.solutions-page .hero-copy::before,
.solutions-page .hero-copy::after {
    content: none;
    display: none;
}
.solution-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--solution-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.solution-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(52,83,255,0.10);
}
.solutions-page .hero-copy h1 {
    max-width: 820px;
    margin: 0;
    color: #050816;
    font-size: clamp(44px, 4.25vw, 66px);
    line-height: 1.16;
    letter-spacing: -0.055em;
    font-weight: 950;
}
.solutions-page .hero-copy h1 span { color: var(--solution-blue); }
.solutions-page .hero-copy > p:not(.solution-kicker) {
    max-width: 600px;
    margin: 26px 0 0;
    color: #344057;
    font-size: 17px;
    line-height: 1.86;
    font-weight: 650;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}
.solution-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 25px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.solution-btn:hover { transform: translateY(-2px); }
.solution-btn svg { width: 16px; height: 16px; }
.solution-btn-blue {
    color: #fff;
    background: linear-gradient(135deg, var(--solution-blue), var(--solution-blue-2));
    box-shadow: 0 18px 36px rgba(52,83,255,0.25);
}
.solution-btn-light {
    color: #111827;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 14px 30px rgba(37,51,110,0.10), inset 0 0 0 1px rgba(52,83,255,0.10);
}
.solutions-page .solution-btn-blue,
.solutions-page .solution-btn-blue span,
.solutions-page .solution-btn-blue svg {
    color: #fff !important;
    opacity: 1;
}
.solutions-page .solution-btn-light,
.solutions-page .solution-btn-light span,
.solutions-page .solution-btn-light svg {
    color: #111827 !important;
    opacity: 1;
}

.hero-capabilities {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: -64px;
    margin-bottom: 72px;
    min-height: 128px;
    border: 1px solid rgba(255,255,255,0.76);
    border-radius: 18px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 26px 78px rgba(37, 51, 110, 0.13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.hero-capabilities article {
    min-height: 128px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px 18px;
    border-right: 1px solid rgba(27,43,94,0.13);
}
.hero-capabilities article:last-child { border-right: 0; }
.hero-capabilities span,
.advantage-row span {
    display: grid;
    place-items: center;
    color: var(--solution-blue);
    font-size: 42px;
}
.hero-capabilities strong {
    display: block;
    margin-top: 11px;
    color: #111827;
    font-size: 15px;
    font-weight: 950;
}
.hero-capabilities small {
    display: block;
    margin-top: 8px;
    color: #6d7789;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 720;
}

.solution-section { margin-bottom: 48px; }
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 26px;
}
.section-head h2,
.crop-panel h2,
.advantage-panel h2 {
    margin: 0;
    color: #050816;
    font-size: clamp(28px, 2.7vw, 36px);
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -0.045em;
}
.section-head a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--solution-blue);
    font-size: 13px;
    font-weight: 900;
}
.section-head a svg { width: 15px; height: 15px; }
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
}
.scenario-card {
    overflow: hidden;
    border: 1px solid rgba(27,43,94,0.10);
    border-radius: 16px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 22px 60px rgba(37, 51, 110, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.scenario-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 78px rgba(37, 51, 110, 0.15);
}
.scenario-image {
    position: relative;
    height: 214px;
    overflow: hidden;
    background: #eef4ff;
}
.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scenario-image span {
    position: absolute;
    left: 22px;
    top: 20px;
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--solution-blue), var(--solution-blue-2));
    box-shadow: 0 12px 24px rgba(52,83,255,0.24);
}
.scenario-body { padding: 28px 28px 20px; }
.scenario-body h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.035em;
    font-weight: 950;
}
.scenario-link {
    margin: 12px 0 26px;
    color: var(--solution-blue);
    font-size: 14px;
    font-weight: 900;
}
.scenario-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(27,43,94,0.10);
}
.scenario-points span {
    min-height: 82px;
    display: grid;
    justify-items: center;
    text-align: center;
    color: #1f2b43;
}
.scenario-points svg {
    width: 25px;
    height: 25px;
    color: var(--solution-blue);
    margin-bottom: 9px;
}
.scenario-points strong {
    color: #111827;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}
.scenario-points small {
    display: block;
    margin-top: 5px;
    color: #6c7586;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
}
.scenario-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    color: #6a7385;
    font-size: 13px;
    font-weight: 720;
}
.scenario-footer a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: none;
    color: var(--solution-blue);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 22px rgba(37,51,110,0.12), inset 0 0 0 1px rgba(52,83,255,0.14);
}
.scenario-footer svg { width: 15px; height: 15px; }

.crop-panel {
    margin-bottom: 58px;
    padding: 32px 30px 36px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(250,252,255,0.96), rgba(244,247,255,0.96));
    box-shadow: inset 0 0 0 1px rgba(52,83,255,0.07), 0 18px 54px rgba(37,51,110,0.06);
}
.section-head.compact { margin-bottom: 24px; }
.crop-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}
.crop-row article {
    min-height: 118px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0 18px;
    border-right: 1px solid rgba(27,43,94,0.10);
}
.crop-row article:last-child { border-right: 0; }
.crop-row strong {
    display: block;
    margin-top: 12px;
    color: #151b2c;
    font-size: 14px;
    font-weight: 900;
}
.crop-art {
    position: relative;
    width: 76px;
    height: 54px;
}
.crop-art i { position: absolute; display: block; }
.leafy i {
    width: 42px;
    height: 25px;
    border-radius: 50% 0 50% 50%;
    background: linear-gradient(135deg, #d6ff75, #48bd43);
    box-shadow: inset -7px -5px 0 rgba(26,118,47,0.18);
}
.leafy i:nth-child(1) { left: 8px; top: 12px; transform: rotate(18deg); }
.leafy i:nth-child(2) { left: 26px; top: 8px; transform: rotate(-14deg); }
.leafy i:nth-child(3) { left: 18px; top: 23px; transform: rotate(2deg); }
.tomato i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 34% 26%, #ffb3a2, #f23524 64%, #c51818);
    box-shadow: 0 8px 16px rgba(214,36,32,0.18);
}
.tomato i:nth-child(1) { left: 8px; top: 19px; }
.tomato i:nth-child(2) { left: 28px; top: 12px; }
.tomato i:nth-child(3) { left: 45px; top: 22px; }
.flower i {
    left: 30px;
    top: 19px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffd24d;
}
.flower i:not(:first-child) {
    width: 24px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb9dc, #f065b3);
}
.flower i:nth-child(2) { left: 14px; top: 14px; transform: rotate(-25deg); }
.flower i:nth-child(3) { left: 40px; top: 14px; transform: rotate(25deg); }
.flower i:nth-child(4) { left: 17px; top: 31px; transform: rotate(25deg); }
.flower i:nth-child(5) { left: 40px; top: 31px; transform: rotate(-25deg); }
.seedling {
    border-radius: 8px;
    background:
        repeating-linear-gradient(90deg, rgba(25,35,55,0.16) 0 1px, transparent 1px 18px),
        repeating-linear-gradient(0deg, rgba(25,35,55,0.12) 0 1px, transparent 1px 14px),
        linear-gradient(135deg, #fafafa, #d9dde6);
    box-shadow: 0 10px 18px rgba(37,51,110,0.12);
    transform: perspective(140px) rotateX(12deg);
}
.seedling i {
    left: 12px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #343b4f;
    box-shadow: 18px 0 #343b4f, 36px 0 #343b4f, 0 16px #343b4f, 18px 16px #343b4f, 36px 16px #343b4f;
}
.herb i {
    width: 42px;
    height: 13px;
    border-radius: 50%;
    background: linear-gradient(90deg, #a9ee62, #35a843);
    transform-origin: left center;
}
.herb i:nth-child(1) { left: 16px; top: 25px; transform: rotate(-18deg); }
.herb i:nth-child(2) { left: 18px; top: 18px; transform: rotate(10deg); }
.herb i:nth-child(3) { left: 24px; top: 31px; transform: rotate(18deg); }
.lab::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 2px;
    width: 18px;
    height: 46px;
    border: 4px solid #2a334c;
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(180deg, transparent 0 44%, rgba(52,83,255,0.12) 45%, rgba(52,83,255,0.38));
    transform: rotate(18deg);
}
.lab::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 2px;
    width: 50px;
    height: 7px;
    border-radius: 999px;
    background: #2a334c;
}

.advantage-panel {
    margin-bottom: 54px;
    padding: 32px 30px 34px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,249,255,0.96));
    box-shadow: inset 0 0 0 1px rgba(52,83,255,0.07), 0 18px 54px rgba(37,51,110,0.06);
}
.advantage-panel h2 { margin-bottom: 28px; }
.advantage-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}
.advantage-row article {
    min-height: 92px;
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border-right: 1px solid rgba(27,43,94,0.10);
}
.advantage-row article:last-child { border-right: 0; }
.advantage-row span {
    width: 54px;
    height: 54px;
    font-size: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.86);
    box-shadow: 0 13px 32px rgba(52,83,255,0.10), inset 0 0 0 1px rgba(52,83,255,0.12);
}
.advantage-row strong {
    display: block;
    color: #111827;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 950;
}
.advantage-row small {
    display: block;
    margin-top: 8px;
    color: #6c7586;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 700;
}

.solution-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(250px, 0.9fr) minmax(250px, 0.9fr);
    align-items: center;
    gap: 22px;
    min-height: 148px;
    margin-bottom: 54px;
    padding: 26px 34px 26px 48px;
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(238,244,255,0.98), rgba(255,255,255,0.80)),
        url("../assets/generated/product-greenhouse-systems-lineup.png") 18% center / auto 118% no-repeat;
    box-shadow: inset 0 0 0 1px rgba(52,83,255,0.08), 0 18px 52px rgba(37,51,110,0.06);
}
.solution-cta h2 {
    margin: 0;
    color: #050816;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.045em;
    font-weight: 950;
}
.solution-cta p {
    margin: 12px 0 22px;
    color: #657085;
    font-size: 14px;
    font-weight: 720;
}
.contact-card {
    min-height: 82px;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.90);
    box-shadow: 0 18px 44px rgba(37,51,110,0.10);
}
.contact-card > svg {
    width: 43px;
    height: 43px;
    color: var(--solution-blue);
}
.contact-card.whatsapp > svg { color: #22c55e; }
.contact-card small {
    display: block;
    color: #778195;
    font-size: 12px;
}
.contact-card strong {
    display: block;
    margin-top: 4px;
    color: #111827;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.solution-footer { margin-bottom: 34px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(4, 0.86fr) 1.7fr;
    gap: 30px;
}
.solution-footer .solution-brand {
    min-width: auto;
    margin-bottom: 16px;
}
.footer-brand p {
    max-width: 280px;
    margin: 0;
    color: #687181;
    font-size: 13px;
    line-height: 1.65;
}
.solution-footer h3 {
    margin: 0 0 16px;
    color: #101827;
    font-size: 13px;
    font-weight: 900;
}
.solution-footer a:not(.solution-brand) {
    display: block;
    margin-bottom: 9px;
    color: #687181;
    font-size: 13px;
    line-height: 1.35;
    transition: color 0.2s ease, transform 0.2s ease;
}
.solution-footer a:not(.solution-brand):hover {
    color: var(--solution-blue);
    transform: translateX(3px);
}
.qr-block {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 16px;
}
.qr-art {
    width: 78px;
    height: 78px;
    border: 7px solid #111827;
    background:
        linear-gradient(90deg, #111827 12px, transparent 12px 20px, #111827 20px 30px, transparent 30px 38px, #111827 38px 48px, transparent 48px),
        linear-gradient(#111827 10px, transparent 10px 20px, #111827 20px 29px, transparent 29px 39px, #111827 39px 49px, transparent 49px);
    background-size: 52px 52px;
    background-color: #fff;
}
.qr-block p {
    margin: 0;
    color: #687181;
    font-size: 13px;
    line-height: 1.55;
}
.footer-bottom {
    display: flex;
    gap: 28px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(27,43,94,0.10);
    color: #8a92a0;
    font-size: 12px;
}
.footer-bottom span:first-child { margin-right: auto; }

@keyframes solution-reveal-in {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.solutions-page .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--delay, 0) * 80ms);
    animation: solution-reveal-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--delay, 0) * 80ms);
}
.solutions-page .reveal[data-delay="1"] { --delay: 1; }
.solutions-page .reveal[data-delay="2"] { --delay: 2; }
.solutions-page .reveal[data-delay="3"] { --delay: 3; }
.solutions-page .reveal[data-delay="4"] { --delay: 4; }
.solutions-page .reveal.in-view {
    opacity: 1;
    transform: none;
}

@media (max-width: 1280px) {
    .solutions-page { --solution-container: min(1160px, calc(100vw - 64px)); }
    .solutions-page .solution-links { gap: 24px; }
    .solutions-page .solution-links .nav-link { font-size: 13px; }
    .scenario-grid { gap: 28px; }
    .advantage-row article {
        grid-template-columns: 48px 1fr;
        gap: 12px;
        padding-inline: 14px;
    }
    .footer-grid { gap: 24px; }
}

@media (max-width: 920px) {
    .scenario-grid { grid-template-columns: 1fr; }
    .scenario-image { height: 260px; }
    .crop-row { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 24px; }
    .crop-row article:nth-child(3n) { border-right: 0; }
    .advantage-row { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 20px; }
    .advantage-row article:nth-child(2n) { border-right: 0; }
}

@media (max-width: 920px) {
    .solutions-page { --solution-container: min(calc(100vw - 42px), 860px); }
    .solutions-page .solution-header { padding-top: 18px; }
    .solutions-page .solution-nav {
        min-height: 58px;
        padding: 0 16px;
        border-radius: 999px;
        background: rgba(255,255,255,0.9);
        box-shadow: 0 16px 42px rgba(38, 51, 112, 0.12);
    }
    .solutions-page .solution-brand { min-width: 0; }
    .solutions-page .solution-links {
        position: absolute;
        top: calc(100% + 14px);
        right: 0;
        width: min(320px, calc(100vw - 42px));
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255,255,255,0.96);
        box-shadow: 0 28px 70px rgba(28,42,102,0.18);
    }
    .solutions-page .solution-header.menu-open .solution-links { display: flex; }
    .solutions-page .solution-links .nav-link { padding: 14px 16px; }
    .solutions-page .solution-links .nav-link::after { display: none; }
    .solution-main { margin-top: -84px; }
    .solution-hero { min-height: auto; }
    .solution-hero-bg { width: 100%; opacity: 0.34; }
    .solution-hero-bg::before { background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.86) 52%, rgba(255,255,255,0.60)); }
    .hero-layer { min-height: auto; padding: 126px 0 48px; }
    .solutions-page .hero-copy {
        width: 100%;
        max-width: calc(100vw - 42px);
        padding-bottom: 0;
    }
    .hero-capabilities {
        margin-top: 32px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-capabilities article { border-bottom: 1px solid rgba(27,43,94,0.13); }
    .hero-capabilities article:nth-child(2n) { border-right: 0; }
    .section-head { align-items: flex-start; flex-direction: column; }
    .solution-cta { grid-template-columns: 1fr; }
    .solution-cta > div { grid-row: auto; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .qr-block { grid-column: span 2; }
}

@media (max-width: 720px) {
    .solutions-page { --solution-container: min(calc(100vw - 28px), 560px); }
    .solutions-page .solution-brand-text { font-size: 22px; }
    .solutions-page .solution-brand-sub { font-size: 10px; letter-spacing: 0.28em; }
    .solutions-page .solution-lang { display: none; }
    .solutions-page .solution-actions { min-width: auto; }
    .solutions-page .hero-copy,
    .hero-actions {
        max-width: calc(100vw - 72px);
    }
    .solutions-page .hero-copy h1 {
        font-size: clamp(30px, 8.7vw, 42px);
        line-height: 1.2;
        letter-spacing: -0.04em;
        overflow-wrap: anywhere;
    }
    .solutions-page .hero-copy h1 span { display: block; }
    .solutions-page .hero-copy > p:not(.solution-kicker) {
        max-width: 100%;
        font-size: 15px;
        overflow-wrap: anywhere;
    }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .solution-btn { width: 100%; }
    .hero-capabilities,
    .crop-row,
    .advantage-row { grid-template-columns: 1fr; }
    .hero-capabilities article,
    .crop-row article,
    .advantage-row article {
        border-right: 0;
        border-bottom: 1px solid rgba(27,43,94,0.12);
    }
    .hero-capabilities article:last-child,
    .crop-row article:last-child,
    .advantage-row article:last-child { border-bottom: 0; }
    .scenario-image { height: 210px; }
    .scenario-body { padding: 24px 22px 20px; }
    .scenario-points { grid-template-columns: 1fr; }
    .crop-panel,
    .advantage-panel,
    .solution-cta { padding: 26px 22px; }
    .contact-card { grid-template-columns: 46px 1fr; }
    .contact-card strong {
        white-space: normal;
        font-size: 14px;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .qr-block { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 460px) {
    .solutions-page .solution-nav { padding-left: 14px; }
    .solutions-page .solution-brand-sub { display: none; }
    .scenario-card { border-radius: 14px; }
    .scenario-image { height: 190px; }
    .section-head h2,
    .crop-panel h2,
    .advantage-panel h2 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    .solutions-page .reveal {
        animation: none;
        transition: none;
    }
}

.solutions-page {
    --solution-container: min(1560px, calc(100vw - 132px));
}

@media (max-width: 1420px) {
    .solutions-page {
        --solution-container: min(1240px, calc(100vw - 64px));
    }
}

@media (max-width: 1100px) {
    .solutions-page {
        --solution-container: min(900px, calc(100vw - 40px));
    }
}

@media (max-width: 720px) {
    .solutions-page {
        --solution-container: calc(100vw - 28px);
    }
}
