/* === SOLUTION PAGE STYLES === */

/* --- HERO --- */
.solution-hero {
    position: relative;
    min-height: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 124px 0 60px;
    overflow: hidden;
}

/* Richer background: radial glows + subtle grid */
.solution-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 30%, rgba(16,185,129,0.18), transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(16,185,129,0.10), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.solution-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* Photo hero two-column layout */
.solution-hero--photo {
    display: block;
    flex-direction: unset;
}

.solution-hero--photo .solution-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    width: 100%;
}

.solution-hero--photo .solution-hero-text {
    max-width: 100%;
}

.solution-hero-visual {
    position: relative;
    z-index: 2;
}

.hero-photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    aspect-ratio: 4 / 3;
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15,30,55,0.15) 0%, rgba(15,30,55,0.55) 100%);
}

.hero-zone-tag {
    position: absolute;
    padding: 6px 14px;
    background: rgba(15,30,55,0.78);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(16,185,129,0.4);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    white-space: nowrap;
}

.hero-zone-tag::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    margin-right: 7px;
    vertical-align: middle;
    box-shadow: 0 0 8px var(--teal);
}

.hero-zone-tag--1 { top: 16px; left: 16px; animation: tagPulse 4s ease-in-out infinite; }
.hero-zone-tag--2 { top: 50%; right: 16px; animation: tagPulse 4s ease-in-out infinite 1.3s; }
.hero-zone-tag--3 { bottom: 80px; left: 16px; animation: tagPulse 4s ease-in-out infinite 2.6s; }

@keyframes tagPulse {
    0%, 100% { transform: translateY(0); opacity: 0.9; }
    50% { transform: translateY(-4px); opacity: 1; }
}

.hero-photo-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    padding: 12px 18px;
    background: rgba(16,185,129,0.92);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-photo-badge-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hero-photo-badge-txt {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.solution-hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.iso-illustration {
    width: 65%;
    height: auto;
    opacity: 0.5;
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    animation: floatIso 20s ease-in-out infinite;
}

@keyframes floatIso {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-52%) translateX(-8px); }
}

.solution-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.solution-hero-text {
    max-width: 640px;
    text-align: left;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb span {
    color: rgba(255,255,255,0.3);
}

.breadcrumb span:last-child {
    color: rgba(255,255,255,0.7);
}

.solution-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--teal);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.solution-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.solution-hero-text h1 em {
    font-style: normal;
    color: var(--teal);
}

.solution-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.solution-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 36px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.solution-hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 0 22px;
    position: relative;
}

.solution-hero-stats .stat-item:first-child {
    padding-left: 0;
}

.solution-hero-stats .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.1);
}

.solution-hero-stats .stat-icon {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    color: var(--teal);
    flex-shrink: 0;
}

.solution-hero-stats .stat-icon svg {
    width: 22px;
    height: 22px;
}

.solution-hero-stats .stat-number,
.solution-hero-stats .stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.solution-hero-stats .stat-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.35;
}

.solution-hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-ghost {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.btn-ghost:hover {
    color: var(--teal);
}

/* --- ZONES SECTION --- */
.solution-zones {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--ice);
    color: var(--teal);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-header h2 em {
    font-style: normal;
    color: var(--teal);
}

.section-header p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* --- JOURNEY TIMELINE --- */
.journey {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding-left: 0;
}

/* Central vertical line */
.journey-line {
    position: absolute;
    left: 31px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal) 0%, rgba(16,185,129,0.35) 60%, rgba(16,185,129,0) 100%);
}

.journey-step {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 28px;
    padding-bottom: 44px;
}

.journey-step:last-child {
    padding-bottom: 0;
}

/* Number marker on the line */
.journey-marker {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--white);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.journey-num {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--teal);
    letter-spacing: -0.5px;
}

.journey-step:hover .journey-marker {
    background: var(--teal);
    transform: scale(1.06);
}

.journey-step:hover .journey-num {
    color: var(--white);
}

/* Content card */
.journey-content {
    position: relative;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 30px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
}

/* little pointer arrow connecting card to the line */
.journey-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 26px;
    width: 15px;
    height: 15px;
    background: var(--gray-50);
    border-left: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.journey-step:hover .journey-content {
    transform: translateX(4px);
    border-color: transparent;
    box-shadow: 0 14px 44px rgba(15,23,42,0.1);
}

.journey-step:hover .journey-content::before {
    background: var(--white);
    border-color: transparent;
}

.journey-icon {
    width: 48px;
    height: 48px;
    background: var(--ice);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 16px;
    transition: all 0.3s;
}

.journey-step:hover .journey-icon {
    background: var(--teal);
    color: var(--white);
}

.journey-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 6px;
}

.journey-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.journey-content > p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 18px;
}

.journey-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.journey-chips span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 6px 14px;
    border-radius: 100px;
    transition: all 0.3s;
}

.journey-step:hover .journey-chips span {
    border-color: rgba(16,185,129,0.3);
}

/* --- PRODUCTS SECTION --- */
.solution-products {
    padding: 100px 0;
    background: var(--gray-50);
}

.product-category {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--gray-200);
}

.product-category:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 24px;
}

.category-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.category-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
    max-width: 600px;
}

.category-link {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.category-link:hover {
    background: var(--ice);
    border-color: rgba(16, 185, 129, 0.2);
}

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

.products-row-4 {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
    border-color: transparent;
}

.product-card.accent {
    border-color: rgba(16, 185, 129, 0.3);
}

.product-card.placeholder .product-image {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.product-image {
    aspect-ratio: 4/3;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 60%, rgba(248,250,252,0.8));
    pointer-events: none;
}

.product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Card Slider */
.product-slider {
    position: relative;
    background: var(--white);
    padding: 0;
    aspect-ratio: 1 / 1;
}

.product-slider::after {
    display: none;
}

.product-slider .slider-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.product-slider .slider-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card.has-slider:hover .product-slider .slider-slide {
    transform: none;
}

.product-slider .slider-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Slider Arrows */
.product-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 30, 55, 0.08);
    box-shadow: 0 2px 8px rgba(15, 30, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
}

.product-card.has-slider:hover .slider-arrow {
    opacity: 1;
}

.product-slider .slider-arrow:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(15, 30, 55, 0.15);
}

.product-slider .slider-arrow.prev {
    left: 8px;
}

.product-slider .slider-arrow.next {
    right: 8px;
}

.product-slider .slider-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--navy);
    stroke-width: 2.5;
    fill: none;
}

/* Slider Dots */
.product-slider .slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.product-slider .slider-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(15, 30, 55, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-slider .slider-dots .dot.active {
    background: var(--teal);
    transform: scale(1.3);
}

.product-slider .slider-dots .dot:hover {
    background: var(--teal);
}

.product-info {
    padding: 16px 20px 20px;
}

.product-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.product-spec {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.more-categories-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    border: 2px dashed var(--gray-200);
}

.more-categories-cta p {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* --- REALIZATIONS --- */
.solution-realizations {
    padding: 100px 0;
    background: var(--white);
}

.realizations-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
}

.realization-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.realization-card.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.realization-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.realization-card:hover img {
    transform: scale(1.05);
}

.realization-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.realization-card:hover .realization-overlay {
    transform: translateY(0);
    opacity: 1;
}

.realization-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--teal);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 8px;
}

.realization-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.realization-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

/* --- CTA SECTION --- */
.solution-cta {
    padding: 100px 0;
    background: var(--gray-50);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
}

.cta-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--gray-200);
}

.cta-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cta-form .form-group {
    margin-bottom: 16px;
}

.cta-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--gray-50);
    transition: all 0.3s ease;
    font-family: inherit;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.cta-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::after {
    left: 100%;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .solution-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .iso-illustration {
        width: 80%;
        opacity: 0.3;
    }
    
    .solution-hero--photo .solution-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-hero-visual {
        order: -1;
        max-width: 560px;
    }
    
    .journey {
        max-width: 100%;
    }
    
    .products-row-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .realizations-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .realization-card.large {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .solution-hero {
        padding: 104px 0 48px;
        min-height: auto;
    }
    
    .solution-hero-text h1 {
        font-size: 2rem;
    }
    
    .solution-hero-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .solution-hero-stats .stat-item {
        padding: 14px 0;
    }
    
    .solution-hero-stats .stat-item:first-child {
        padding-top: 0;
    }
    
    .solution-hero-stats .stat-item:not(:last-child)::after {
        right: auto;
        left: 0;
        top: auto;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 1px;
    }
    
    .solution-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .iso-illustration {
        opacity: 0.15;
        width: 120%;
        right: -20%;
    }
    
    .hero-zone-tag {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    
    .hero-photo-badge-num {
        font-size: 1.1rem;
    }
    
    .journey-line {
        left: 23px;
    }
    
    .journey-step {
        grid-template-columns: 48px 1fr;
        column-gap: 16px;
    }
    
    .journey-marker {
        width: 48px;
        height: 48px;
    }
    
    .journey-num {
        font-size: 1rem;
    }
    
    .journey-content {
        padding: 22px 20px;
    }
    
    .journey-content h3 {
        font-size: 1.15rem;
    }
    
    .products-row,
    .products-row-4 {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .realizations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PREMIUM PRODUCT CARDS (Industry-style)
   ============================================ */
.products-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.products-row-premium-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card-premium {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.product-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(11, 29, 51, 0.25);
}

/* Slider as full-bleed background */
.premium-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.premium-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.premium-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.premium-slide.active {
    opacity: 1;
}

.product-card-premium:hover .premium-slide.active {
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient overlay from bottom */
.premium-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(to top, rgba(11, 29, 51, 0.92) 0%, rgba(11, 29, 51, 0.6) 40%, transparent 100%);
    z-index: 1;
    transition: all 0.5s ease;
    pointer-events: none;
}

.product-card-premium:hover .premium-overlay {
    height: 75%;
    background: linear-gradient(to top, rgba(11, 29, 51, 0.95) 0%, rgba(11, 29, 51, 0.7) 50%, transparent 100%);
}

/* Content at bottom */
.premium-content {
    position: relative;
    z-index: 2;
    padding: 28px;
}

.premium-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.premium-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 10px;
}

.premium-link {
    display: none;
}

/* Slider Arrows */
.premium-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    pointer-events: all;
}

.product-card-premium:hover .premium-arrow {
    opacity: 1;
}

.premium-arrow:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(15, 30, 55, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.premium-arrow.prev {
    left: 12px;
}

.premium-arrow.next {
    right: 12px;
}

.premium-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--navy);
    stroke-width: 2.5;
}

/* Slider Dots */
.premium-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-premium:hover .premium-dots {
    opacity: 1;
}

.premium-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Responsive for premium cards */
@media (max-width: 1024px) {
    .products-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-row-premium-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card-premium {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .products-row-3 {
        grid-template-columns: 1fr;
    }
    .products-row-premium-4 {
        grid-template-columns: 1fr;
    }
    .product-card-premium {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .solution-hero-text h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
}


/* ============================================
   MESNICE & RIBARNICE — 2-col rows + status badge
   ============================================ */
.products-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

.premium-badge-soon {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 10px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #D6F5E8;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.45);
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .products-row-2 {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   PRODUCT CATEGORY PAGES (proizvodi-*.html)
   ============================================================ */

.proizvod-intro { padding: 72px 0 8px; }
.proizvod-intro .section-header { max-width: 820px; }

.proizvod-grid-section { padding: 40px 0 90px; }
.proizvod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 980px) { .proizvod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .proizvod-grid { grid-template-columns: 1fr; } }

.proizvod-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #E7ECF2;
    border-radius: 18px;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.proizvod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -20px rgba(11,29,51,.28);
    border-color: #CFE0D6;
}

.proizvod-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: radial-gradient(circle at 50% 38%, #ffffff 0%, #EEF2F6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}
.proizvod-card-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.proizvod-card-media--cover { padding: 0; background: #0B1D33; }
.proizvod-card-media--cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    mix-blend-mode: normal;
}
.proizvod-card:hover .proizvod-card-media img { transform: scale(1.05); }

.proizvod-card-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(11,29,51,.92);
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 999px;
    z-index: 2;
}

.proizvod-card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.proizvod-card-series {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #10B981;
    margin-bottom: 7px;
}
.proizvod-card-body h3 {
    font-size: 1.22rem;
    font-weight: 700;
    color: #0B1D33;
    margin: 0 0 9px;
    line-height: 1.25;
}
.proizvod-card-body p {
    font-size: .94rem;
    line-height: 1.6;
    color: #51637A;
    margin: 0 0 16px;
}
.proizvod-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}
.proizvod-card-specs span {
    font-size: .76rem;
    font-weight: 500;
    color: #3E5168;
    background: #F1F5F9;
    border: 1px solid #E5ECF3;
    padding: 5px 10px;
    border-radius: 8px;
}

.proizvod-teaser-banner {
    margin-top: 56px;
    background: linear-gradient(135deg, #0B1D33 0%, #102A47 100%);
    border-radius: 22px;
    padding: 48px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.proizvod-teaser-banner::after {
    content: "";
    position: absolute;
    right: -60px; top: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(16,185,129,.22) 0%, transparent 70%);
    border-radius: 50%;
}
.proizvod-teaser-text { max-width: 640px; position: relative; z-index: 1; }
.proizvod-teaser-text h3 {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.25;
}
.proizvod-teaser-text p {
    color: rgba(255,255,255,.78);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}
.proizvod-teaser-banner .btn-primary { position: relative; z-index: 1; white-space: nowrap; }

/* .mega-card.is-active styles moved to style.css for global consistency */


/* ========================================================================
   VODIČ ZA IZBOR — selector section linking products to industries
   ======================================================================== */
.vodic-izbor {
    padding: 84px 0;
    background: #F7FAF9;
    border-top: 1px solid #E6EEEA;
}
.vodic-izbor .section-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}
.vodic-izbor .section-header h2 { margin-bottom: 14px; }
.vodic-izbor .section-header p { color: #5B6B73; }

.vodic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.vodic-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E6EEEA;
    border-radius: 18px;
    padding: 28px 24px 22px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.vodic-card::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #0B7A5B, #10B981);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.vodic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -18px rgba(11,29,51,0.28);
    border-color: #CDE6DC;
}
.vodic-card:hover::after { transform: scaleX(1); }

.vodic-card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #0B7A5B;
    margin-bottom: 10px;
}
.vodic-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: #EAF6F1;
    color: #0B7A5B;
    margin-bottom: 18px;
}
.vodic-card-icon svg { width: 24px; height: 24px; }
.vodic-card h3 {
    font-size: 17px;
    color: #0B1D33;
    margin-bottom: 12px;
    line-height: 1.3;
}
.vodic-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vodic-card-list li {
    font-size: 13.5px;
    color: #5B6B73;
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}
.vodic-card-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 7px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #10B981;
}
.vodic-card-link {
    margin-top: auto;
    font-size: 13.5px;
    font-weight: 600;
    color: #0B7A5B;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vodic-card-link svg { width: 15px; height: 15px; transition: transform .25s ease; }
.vodic-card:hover .vodic-card-link svg { transform: translateX(4px); }

/* Solution-link at bottom of product cards */
.proizvod-card-link {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #0B7A5B;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.proizvod-card-link svg { width: 14px; height: 14px; transition: transform .25s ease; }
.proizvod-card-link:hover svg { transform: translateX(4px); }

@media (max-width: 980px) {
    .vodic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .vodic-grid { grid-template-columns: 1fr; }
}
