:root {
    --info-bg: #0a0e1a;
    --info-card-bg: rgba(15, 17, 39, 0.6);
    --info-border: rgba(255, 255, 255, 0.1);
    --info-accent: #52d273;
    --info-accent-hover: #6ee89a;
    --info-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --info-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --info-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --info-gradient-hero: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
}

body.no-scroll {
    overflow: hidden;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.info-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 4rem 3rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.98) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(20, 30, 50, 0.98) 100%);
    border-radius: 16px;
    color: #f8fafc;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.info-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.info-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(82, 210, 115, 0.2) 0%, rgba(110, 232, 154, 0.15) 100%);
    color: #52d273;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(82, 210, 115, 0.3);
    box-shadow: 0 4px 15px rgba(82, 210, 115, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.info-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 210, 115, 0.3);
    border-color: rgba(82, 210, 115, 0.5);
}

.info-hero__text {
    position: relative;
    z-index: 1;
}

.info-hero__text h1 {
    margin: 1.75rem 0 1.5rem;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 100;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: left;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, rgba(200, 220, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.info-hero__text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--info-accent) 0%, transparent 100%);
    border-radius: 2px;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

@keyframes slideInLeft {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.info-hero__text p {
    color: rgba(248, 250, 252, 0.95);
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    z-index: 1;
}

.info-hero__facts {
    margin-top: 2.5rem;
    padding-left: 0;
    display: grid;
    gap: 1rem;
    list-style: none;
    position: relative;
    z-index: 1;
}

.info-hero__facts li {
    position: relative;
    line-height: 1.7;
    padding: 0.75rem 0 0.75rem 2.75rem;
    font-size: 1.05rem;
    color: rgba(248, 250, 252, 0.9);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid transparent;
}

.info-hero__facts li:nth-child(1) { animation-delay: 0.5s; }
.info-hero__facts li:nth-child(2) { animation-delay: 0.6s; }
.info-hero__facts li:nth-child(3) { animation-delay: 0.7s; }
.info-hero__facts li:nth-child(4) { animation-delay: 0.8s; }

.info-hero__facts li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--info-accent);
    transform: translateX(5px);
    padding-left: 3rem;
}

.info-hero__facts li::before {
    content: "•";
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    color: var(--info-accent);
    font-weight: 700;
    font-size: 1.4em;
    line-height: 1;
    transition: all 0.3s ease;
}

.info-hero__facts li:hover::before {
    transform: scale(1.2);
}

.info-hero__media {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.info-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.info-card--clickable {
    cursor: pointer;
    border: none;
    text-align: left;
    width: 100%;
    outline: 2px solid transparent;
}

.info-card--clickable:focus-visible {
    outline-color: rgba(82, 210, 115, 0.5);
    outline-offset: 2px;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(82, 210, 115, 0.2);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.info-card--portrait img {
    height: 480px;
    object-fit: cover;
    object-position: center;
    background: rgba(0, 0, 0, 0.3);
}

.info-card figcaption,
.info-card__caption {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.95);
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    margin-bottom: 0;
    display: block;
}


.info-gallery {
    margin-top: 5rem;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.8) 0%, rgba(15, 25, 45, 0.75) 100%);
    border-radius: 16px;
    padding: 4rem 3rem;
    border: 1px solid var(--info-border);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.info-gallery::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(82, 210, 115, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-gallery__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.info-gallery__header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.info-gallery__header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--info-accent) 0%, transparent 100%);
    border-radius: 2px;
}

.info-gallery__header p {
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.95rem;
}

.info-gallery__header code {
    background: rgba(82, 210, 115, 0.15);
    color: var(--info-accent);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.9em;
    border: 1px solid rgba(82, 210, 115, 0.3);
    box-shadow: 0 2px 8px rgba(82, 210, 115, 0.1);
}

.info-gallery__hint {
    color: rgba(226, 232, 240, 0.7);
    max-width: 340px;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.info-gallery__thumb {
    border: none;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    outline: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.info-gallery__thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(82, 210, 115, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.info-gallery__thumb:focus-visible,
.info-gallery__thumb:hover {
    transform: translateY(-8px) scale(1.03);
    outline-color: rgba(82, 210, 115, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(82, 210, 115, 0.3);
}

.info-gallery__thumb:hover::before {
    opacity: 1;
}

.info-gallery__thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-gallery__thumb:hover img {
    transform: scale(1.1);
}

.info-gallery__empty {
    margin: 0;
    color: rgba(226, 232, 240, 0.7);
    font-size: 1rem;
}

.info-map {
    margin-top: 5rem;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.8) 0%, rgba(15, 25, 45, 0.75) 100%);
    border-radius: 16px;
    padding: 4rem 3rem;
    border: 1px solid var(--info-border);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.info-map::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(82, 210, 115, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-map__header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.info-map__header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.info-map__header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--info-accent) 0%, transparent 100%);
    border-radius: 2px;
}

.info-map__hint {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.info-map__container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-map__container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.info-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.info-lightbox.is-visible {
    opacity: 1;
    visibility: visible;
}

.info-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 7, 21, 0.95);
    backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
}

.info-lightbox__stage {
    position: relative;
    max-width: min(90vw, 1200px);
    max-height: 85vh;
    margin: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: lightboxFadeIn 0.4s ease-out;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.info-lightbox__image {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    background: #020617;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-lightbox__caption {
    text-align: center;
    color: rgba(248, 250, 252, 0.95);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.info-lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.75rem;
    background: rgba(2, 6, 23, 0.9);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.info-lightbox__close:hover {
    background: rgba(220, 38, 38, 0.9);
    border-color: rgba(220, 38, 38, 0.5);
    transform: scale(1.1) rotate(90deg);
}

.info-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.9);
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.info-lightbox__nav:hover {
    background: rgba(82, 210, 115, 0.9);
    border-color: rgba(82, 210, 115, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.info-lightbox__nav--prev {
    left: clamp(1rem, 5vw, 4rem);
}

.info-lightbox__nav--next {
    right: clamp(1rem, 5vw, 4rem);
}

@media (max-width: 768px) {
    .info-hero {
        padding: 2.5rem 2rem;
        gap: 2rem;
    }

    .info-hero__text h1 {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }

    .info-gallery {
        padding: 2.5rem 2rem;
    }

    .info-gallery__header h2 {
        font-size: 1.75rem;
    }

    .info-map {
        padding: 2.5rem 2rem;
    }

    .info-map__header h2 {
        font-size: 1.75rem;
    }

    .info-map__container {
        height: 400px;
    }

    .info-gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.25rem;
    }

    .info-card img {
        height: 200px;
    }

    .info-card--portrait img {
        height: 420px;
        object-fit: cover;
        object-position: center;
    }

    .info-gallery__thumb img {
        height: 160px;
    }

    .info-lightbox__close,
    .info-lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .info-lightbox__nav--prev {
        left: 1rem;
    }

    .info-lightbox__nav--next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .info-hero {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .info-hero__text h1 {
        font-size: clamp(1.35rem, 7vw, 2rem);
    }

    .info-hero__text p {
        font-size: 1rem;
    }

    .info-hero__facts li {
        font-size: 0.95rem;
        padding: 0.6rem 0 0.6rem 2.5rem;
    }
    
    .info-hero__facts li::before {
        left: 0.875rem;
    }

    .info-card--portrait img {
        height: 360px;
        object-fit: cover;
        object-position: center;
    }

    .info-gallery {
        padding: 2rem 1.5rem;
    }

    .info-gallery__header h2 {
        font-size: 1.5rem;
    }

    .info-map {
        padding: 2rem 1.5rem;
    }

    .info-map__header h2 {
        font-size: 1.5rem;
    }

    .info-map__container {
        height: 350px;
    }

    .info-gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }

    .info-gallery__thumb img {
        height: 140px;
    }

    .info-lightbox__close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .info-lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .info-lightbox__nav--prev {
        left: 0.5rem;
    }

    .info-lightbox__nav--next {
        right: 0.5rem;
    }
}

/* Pump Description Section */
.info-pump-description {
    margin-top: 5rem;
    background: linear-gradient(135deg, rgba(11, 19, 36, 0.9) 0%, rgba(15, 25, 45, 0.85) 100%);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--info-border);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.info-pump-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--info-accent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-pump-description:hover::before {
    opacity: 1;
}

.info-pump-description__content {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.info-pump-description h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.info-pump-description h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--info-accent) 0%, transparent 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.info-pump-description:hover h2::after {
    width: 100%;
}

.info-pump-description p {
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.info-pump-description__features {
    margin-top: 2rem;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.25rem;
    list-style: none;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.info-pump-description__features li {
    position: relative;
    padding: 1rem 1.5rem 1rem 3rem;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--info-accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-pump-description__features li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(82, 210, 115, 0.2);
    border-left-color: var(--info-accent-hover);
}

.checkmark {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 1.2em;
    font-weight: 700;
    color: var(--info-accent);
    transition: all 0.3s ease;
}

.info-pump-description__features li:hover .checkmark {
    transform: scale(1.2);
    color: var(--info-accent-hover);
}

.info-pump-description__features li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .info-pump-description {
        padding: 2.5rem 2rem;
        margin-top: 4rem;
    }

    .info-pump-description h2 {
        font-size: 1.75rem;
    }

    .info-pump-description__features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-pump-description__features li {
        padding: 0.875rem 1rem 0.875rem 2.5rem;
        font-size: 0.95rem;
    }

    .checkmark {
        left: 0.875rem;
        top: 0.875rem;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .info-pump-description {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .info-pump-description h2 {
        font-size: 1.5rem;
    }

    .info-pump-description p {
        font-size: 1rem;
    }

    .info-pump-description__features li {
        padding: 0.75rem 0.875rem 0.75rem 2.25rem;
        font-size: 0.9rem;
    }

    .checkmark {
        left: 0.75rem;
        top: 0.75rem;
        font-size: 1em;
    }
}

/* Conditions Section */
.info-conditions {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(11, 19, 36, 0.9) 0%, rgba(15, 25, 45, 0.85) 100%);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--info-border);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.info-conditions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--info-accent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-conditions:hover::before {
    opacity: 1;
}

.info-conditions__content {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.info-conditions h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.info-conditions h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--info-accent) 0%, transparent 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.info-conditions:hover h2::after {
    width: 100%;
}

.info-conditions p {
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.info-conditions__list {
    margin-top: 2rem;
    padding-left: 0;
    display: grid;
    gap: 1rem;
    list-style: none;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.info-conditions__list li {
    position: relative;
    padding: 1rem 1.5rem 1rem 2.5rem;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--info-accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-conditions__list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(82, 210, 115, 0.2);
    border-left-color: var(--info-accent-hover);
}

.info-conditions__list li::before {
    content: "•";
    position: absolute;
    left: 0.75rem;
    top: 1rem;
    color: var(--info-accent);
    font-weight: 700;
    font-size: 1.4em;
    line-height: 1;
    transition: all 0.3s ease;
}

.info-conditions__list li:hover::before {
    transform: scale(1.2);
}

/* Technical Parameters Section */
.info-technical {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(11, 19, 36, 0.9) 0%, rgba(15, 25, 45, 0.85) 100%);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--info-border);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.info-technical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--info-accent) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-technical:hover::before {
    opacity: 1;
}

.info-technical__content {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.info-technical h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.info-technical h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--info-accent) 0%, transparent 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.info-technical:hover h2::after {
    width: 100%;
}

.info-technical p {
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.info-technical p a {
    color: var(--info-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.info-technical p a:hover,
.info-technical__note a:hover {
    color: var(--info-accent-hover);
    border-bottom-color: var(--info-accent-hover);
}

.info-technical__note {
    margin-top: 2rem;
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.info-technical__note a {
    color: var(--info-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.info-technical__table-container {
    overflow-x: auto;
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.info-technical__table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-technical__table thead th {
    background: #2c4263;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(19, 34, 48, 1);
}

.info-technical__table tbody tr:nth-child(even) {
    background-color: #1a263b;
}

.info-technical__table thead th:last-child {
    border-right: none;
}

.info-technical__table tbody td {
    padding: 1rem 1.25rem;
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.info-technical__table tbody td:last-child {
    border-right: none;
}

.info-technical__table tbody tr {
    transition: all 0.3s ease;
}

.info-technical__table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.info-technical__table tbody tr:hover td {
    color: #ffffff;
    transform: translateY(-1px);
}

.info-technical__table tbody tr:last-child td {
    border-bottom: none;
}

.info-technical__additional {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.info-technical__additional h3 {
    color: #52d273;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.info-technical__additional h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #52d273, #6ee89a);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.info-technical:hover .info-technical__additional h3::after {
    width: 100px;
}

.info-technical__additional p {
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.info-technical__additional p:last-child {
    margin-bottom: 0;
}

.info-technical__additional p em {
    color: #52d273;
    font-style: italic;
    font-weight: 500;
}

/* Mobile Styles for New Sections */
@media (max-width: 768px) {
    .info-conditions,
    .info-technical {
        padding: 2.5rem 2rem;
        margin-top: 3rem;
    }

    .info-conditions h2,
    .info-technical h2 {
        font-size: 1.75rem;
    }

    .info-conditions p,
    .info-technical p,
    .info-technical__note {
        font-size: 1rem;
    }

    .info-conditions__list li {
        padding: 0.875rem 1rem 0.875rem 2.25rem;
        font-size: 0.95rem;
    }

    .info-technical__table {
        font-size: 0.9rem;
    }

    .info-technical__table thead th,
    .info-technical__table tbody td {
        padding: 0.875rem 1rem;
    }

    .info-technical__additional {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .info-technical__additional h3 {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }

    .info-technical__additional p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .info-conditions,
    .info-technical {
        padding: 2rem 0.25rem;
        margin-top: 2.5rem;
    }

    .info-conditions h2,
    .info-technical h2 {
        font-size: 1.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .info-conditions p,
    .info-technical p,
    .info-technical__note {
        font-size: 0.95rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .info-conditions__list li {
        padding: 0.75rem 0.875rem 0.75rem 2rem;
        font-size: 0.9rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .info-conditions__list li::before {
        left: 0.625rem;
        top: 0.75rem;
        font-size: 1.2em;
    }

    .info-technical__table {
        font-size: 0.6rem;
    }

    .info-technical__table thead th,
    .info-technical__table tbody td {
        padding: 0.4rem 0.2rem;
        text-align: center;
        font-size: 0.6rem;
    }
    
    .info-technical__table thead th {
        vertical-align: middle;
        line-height: 1.2;
    }

    .info-technical__additional {
        margin-top: 1.5rem;
        padding: 1.25rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .info-technical__additional h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .info-technical__additional p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.875rem;
    }
}
