.island-palm-2 {
    position: absolute;
    bottom: 20px;
    left: 52px;
    width: 2px;
    height: 22px;
    background: rgba(130, 90, 45, 0.4);
    transform: rotate(5deg);
    transform-origin: bottom center;
}

.island-palm-2::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -10px;
    width: 22px;
    height: 10px;
    border-radius: 50% 50% 0 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(60, 140, 45, 0.4) 0%, transparent 70%);
}

/* === Underwater zone === */
.easter-deep {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: linear-gradient(180deg, rgba(0, 30, 80, 0.08) 0%, rgba(0, 40, 100, 0.15) 40%, rgba(0, 25, 70, 0.22) 100%);
}

/* Sandy bottom */
.easter-deep::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        rgba(140, 120, 70, 0.08) 0%,
        rgba(160, 130, 80, 0.12) 30%,
        rgba(140, 120, 70, 0.06) 50%,
        rgba(160, 130, 80, 0.1) 70%,
        rgba(140, 120, 70, 0.08) 100%
    );
}

/* Seaweed */
.seaweed {
    position: absolute;
    bottom: 3px;
    width: 2px;
    background: rgba(40, 120, 60, 0.3);
    border-radius: 1px 1px 0 0;
    transform-origin: bottom center;
}
.seaweed-1 { left: 8%; height: 18px; animation: seaweedSway 3s ease-in-out infinite; }
.seaweed-2 { left: 10%; height: 12px; animation: seaweedSway 3s ease-in-out 0.5s infinite; }
.seaweed-3 { left: 12%; height: 15px; animation: seaweedSway 2.8s ease-in-out 1s infinite; }
.seaweed-4 { left: 35%; height: 20px; animation: seaweedSway 2.5s ease-in-out 0.3s infinite; background: rgba(30, 100, 50, 0.25); }
.seaweed-5 { left: 37%; height: 14px; animation: seaweedSway 2.5s ease-in-out 0.8s infinite; }
.seaweed-6 { left: 55%; height: 16px; animation: seaweedSway 3.2s ease-in-out 0.6s infinite; }
.seaweed-7 { left: 57%; height: 11px; animation: seaweedSway 3.2s ease-in-out 1.2s infinite; }
.seaweed-8 { left: 75%; height: 18px; animation: seaweedSway 2.7s ease-in-out 0.4s infinite; }
.seaweed-9 { left: 77%; height: 13px; animation: seaweedSway 2.7s ease-in-out 0.9s infinite; }
.seaweed-10 { left: 92%; height: 15px; animation: seaweedSway 3.5s ease-in-out 0.2s infinite; background: rgba(30, 100, 50, 0.25); }

@keyframes seaweedSway {
    0%, 100% { transform: rotate(-8deg); }
    50% { transform: rotate(8deg); }
}

/* River stones on bottom */
.river-stone {
    position: absolute;
    bottom: 2px;
    border-radius: 50% 50% 45% 45%;
    background: rgba(100, 90, 70, 0.15);
}
.stone-1 { left: 20%; width: 8px; height: 5px; }
.stone-2 { left: 42%; width: 6px; height: 4px; }
.stone-3 { left: 65%; width: 10px; height: 5px; }
.stone-4 { left: 88%; width: 7px; height: 4px; }

/* Small fish swimming opposite direction */
.easter-fish {
    position: absolute;
    bottom: 20px;
    animation: fishSwim 9s linear infinite;
    z-index: 1;
}

@keyframes fishSwim {
    0% { right: -20px; }
    100% { right: calc(100% + 20px); }
}

.fish-body {
    width: 8px;
    height: 4px;
    background: rgba(100, 170, 255, 0.3);
    border-radius: 60% 40% 40% 60%;
    position: relative;
}
.fish-body::after {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 0;
    height: 0;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-right: 5px solid rgba(100, 170, 255, 0.25);
}

.easter-fish-2 {
    bottom: 30px;
    animation: fishSwim 11s linear 3s infinite;
}
.easter-fish-2 .fish-body {
    width: 6px;
    height: 3px;
    background: rgba(206, 254, 70, 0.2);
}
.easter-fish-2 .fish-body::after {
    border-right-color: rgba(206, 254, 70, 0.15);
    border-top-width: 2px;
    border-bottom-width: 2px;
    border-right-width: 4px;
}

/* Fish school — swimming right */
.easter-fish-3 {
    bottom: 12px;
    animation: fishSwimR 13s linear 2s infinite;
}
.easter-fish-4 {
    bottom: 16px;
    animation: fishSwimR 13s linear 2.5s infinite;
}
.easter-fish-5 {
    bottom: 10px;
    animation: fishSwimR 13s linear 3.2s infinite;
}
.fish-school .fish-body {
    width: 5px;
    height: 3px;
    background: rgba(180, 160, 120, 0.2);
    border-radius: 40% 60% 60% 40%;
}
.fish-school .fish-body::after {
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: none;
    border-left: 3px solid rgba(180, 160, 120, 0.15);
    left: auto;
    right: -3px;
}

@keyframes fishSwimR {
    0% { left: -20px; }
    100% { left: calc(100% + 20px); }
}

/* Seahorse */
.easter-seahorse {
    position: absolute;
    bottom: 22px;
    left: 30%;
    animation: seahorseFloat 4s ease-in-out infinite;
    z-index: 1;
}

.seahorse-body {
    width: 5px;
    height: 10px;
    border: 1.5px solid rgba(206, 254, 70, 0.2);
    border-radius: 40% 60% 50% 50%;
    position: relative;
}
.seahorse-body::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 4px;
    height: 4px;
    border: 1.5px solid rgba(206, 254, 70, 0.2);
    border-radius: 50%;
}
.seahorse-body::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 1px;
    width: 4px;
    height: 4px;
    border: 1px solid rgba(206, 254, 70, 0.15);
    border-radius: 0 0 50% 50%;
    border-top: none;
}

@keyframes seahorseFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-4px) rotate(3deg); }
}

/* Bubbles rising from bottom */
.deep-bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(150, 200, 255, 0.12);
    animation: deepBubble 6s ease-in infinite;
}
.deep-bubble-1 { bottom: 6px; left: 25%; width: 4px; height: 4px; animation-delay: 0s; }
.deep-bubble-2 { bottom: 4px; left: 50%; width: 3px; height: 3px; animation-delay: 2s; }
.deep-bubble-3 { bottom: 5px; left: 70%; width: 3px; height: 3px; animation-delay: 4s; }
.deep-bubble-4 { bottom: 8px; left: 40%; width: 2px; height: 2px; animation-delay: 1s; }

@keyframes deepBubble {
    0% { transform: translateY(0); opacity: 0.4; }
    50% { opacity: 0.2; }
    100% { transform: translateY(-50px); opacity: 0; }
}

/* === Bottom label === */
.easter-label {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Courier New', Courier, monospace;
    font-size: 8px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(206, 254, 70, 0.35);
    white-space: nowrap;
    animation: labelPulse 5s ease-in-out infinite;
    z-index: 3;
    text-shadow: 0 0 8px rgba(206, 254, 70, 0.1);
}

.shipyard-easter:hover .easter-label {
    color: rgba(206, 254, 70, 0.7);
    text-shadow: 0 0 12px rgba(206, 254, 70, 0.2);
}

@keyframes labelPulse {
    0%, 100% { opacity: 0.5; letter-spacing: 0.3em; }
    50% { opacity: 0.8; letter-spacing: 0.4em; }
}

/* Enhanced technology blocks */
#shipyard_modal .modal__block {
    padding: 24px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.015);
    border-left: 2px solid rgba(206, 254, 70, 0.2);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

#shipyard_modal .modal__block::after {
    content: none;
}

#shipyard_modal .modal__block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    opacity: 0.03;
    transition: opacity 0.4s ease;
}

#shipyard_modal .modal__block:hover::before {
    opacity: 0.07;
}

#shipyard_modal .modal__block:hover {
    background: rgba(206, 254, 70, 0.03);
    border-left-color: var(--accent);
    transform: translateX(4px);
}

/* Block icons via CSS - each category gets unique visual */
.tech-block-materials::before {
    background: 
        linear-gradient(45deg, transparent 40%, rgba(206,254,70,0.3) 41%, rgba(206,254,70,0.3) 42%, transparent 43%),
        linear-gradient(-45deg, transparent 40%, rgba(206,254,70,0.3) 41%, rgba(206,254,70,0.3) 42%, transparent 43%);
    background-size: 20px 20px;
}

.tech-block-hull::before {
    background: radial-gradient(circle at center, rgba(206,254,70,0.2) 0%, transparent 50%);
}

.tech-block-equipment::before {
    background:
        linear-gradient(0deg, transparent 48%, rgba(206,254,70,0.2) 49%, rgba(206,254,70,0.2) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(206,254,70,0.2) 49%, rgba(206,254,70,0.2) 51%, transparent 52%);
    background-size: 16px 16px;
}

.tech-block-soul::before {
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(206,254,70,0.15) 90deg, transparent 180deg, rgba(206,254,70,0.15) 270deg, transparent 360deg);
}

/* Tech block header with icon */
.tech-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.tech-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(206, 254, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
}

.modal__block:hover .tech-icon {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(206, 254, 70, 0.15);
}

/* Icon inner shapes via pseudo-elements */
.tech-icon-alloy::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--accent);
    transform: rotate(45deg);
    opacity: 0.7;
}

.tech-icon-hull::after {
    content: '';
    width: 18px;
    height: 8px;
    border: 1.5px solid var(--accent);
    border-top: none;
    border-radius: 0 0 50% 50%;
    opacity: 0.7;
}

.tech-icon-gear::after {
    content: '';
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    opacity: 0.7;
}

.tech-icon-gear::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1.5px dashed rgba(206, 254, 70, 0.3);
    border-radius: 50%;
}

.tech-icon-soul::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid var(--accent);
    opacity: 0.6;
}

/* Shipyard CTA at bottom */
#shipyard_modal .modal__content-actions {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

#shipyard_modal .modal__content-actions .btn {
    position: relative;
    overflow: hidden;
}

#shipyard_modal .modal__content-actions .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(206, 254, 70, 0.08), transparent);
    transition: left 0.5s ease;
}

#shipyard_modal .modal__content-actions .btn:hover::after {
    left: 100%;
}

/* ====== ABOUT KARTEL SECTION ====== */
#about_kartel {
    position: relative;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 40%, #070707 100%);
    overflow: hidden;
    padding: 0;
}

#about_kartel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 600px at 75% 20%, rgba(206, 254, 70, 0.025) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at 10% 80%, rgba(206, 254, 70, 0.015) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#about_kartel::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Wide container for brand section */
.brand-wide {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 80px);
}

/* Header row */
.brand-header {
    padding: 100px 0 60px;
    text-align: center;
}

.brand-est {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(206, 254, 70, 0.2);
}

.brand-logo-wrap {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-bottom: 28px;
    cursor: pointer;
}

.brand-logo-img {
    height: clamp(48px, 7vw, 80px);
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

.brand-logo-wrap:hover .brand-logo-img {
    filter: brightness(0) saturate(100%) invert(85%) sepia(45%) saturate(1436%) hue-rotate(20deg) brightness(102%) contrast(105%);
}

.brand-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* Two-column main layout */
.brand-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 960px) {
    .brand-main {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left column: philosophy */
.brand-left {
    padding: 60px clamp(20px, 4vw, 80px) 60px;
}

.brand-left h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.brand-left > p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    margin-bottom: 28px;
}

.brand-quote {
    border-left: 3px solid var(--accent);
    padding: 24px 28px;
    margin: 0 0 36px;
    background: rgba(206, 254, 70, 0.025);
    font-style: italic;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    position: relative;
}

.brand-quote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 52px;
    color: var(--accent);
    opacity: 0.35;
    font-style: normal;
    line-height: 1;
}

.brand-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.brand-value-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.35s ease;
}

/* brand-value-card hover removed — informational cards, not clickable */

.brand-value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brand-value-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

/* Right column: DNA / Танк во фраке */
.brand-right {
    position: relative;
    display: flex;
    flex-direction: column;
}

.dna-video-wrap {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 350px;
}

.dna-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
}

.dna-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(5, 5, 5, 0.95) 100%);
    pointer-events: none;
}

.dna-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px clamp(24px, 3vw, 48px);
    z-index: 2;
}

.dna-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dna-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.dna-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 24px;
    max-width: 540px;
}

/* Animated counters row */
.dna-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 5, 5, 0.9);
}

.counter-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.counter-item:last-child {
    border-right: none;
}

.counter-item:hover {
    background: rgba(206, 254, 70, 0.03);
}

.counter-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}

.counter-suffix {
    font-size: 16px;
    font-weight: 400;
}

.counter-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    display: block;
}

/* Shipyard row */
.brand-shipyard-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 960px) {
    .brand-shipyard-row {
        grid-template-columns: 1fr 1fr;
    }
}

.brand-shipyard {
    padding: 56px clamp(20px, 4vw, 80px);
}

.brand-shipyard h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.brand-shipyard > p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    margin-bottom: 28px;
}

.fleet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
}

.fleet-item {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

/* fleet-item hover removed — static list, not interactive */

.fleet-item::before {
    content: '\2014';
    color: var(--accent);
    font-weight: 700;
}

/* fleet-item::before hover removed */

.fleet-item strong {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.fleet-item span {
    font-size: 12px;
    opacity: 0.6;
}

/* Materials grid - right side of shipyard row */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-left: none;
}

@media (min-width: 960px) {
    .materials-grid {
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }
}

.material-card {
    padding: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.material-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
}

/* material-card hover removed — informational cards, not clickable */

/* Visual area — top half of card */
.mat-visual {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* mat-visual hover removed */

/* Card text area — bottom half */
.mat-info {
    padding: 20px 16px 24px;
}

.material-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

/* material h4 hover removed */

.material-card p {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* --- Individual card visuals (CSS-only) --- */

/* АМГ5М — Hexagonal molecule / alloy pattern */
.mat-alloy {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(206, 254, 70, 0.5);
    transform: rotate(45deg);
    position: relative;
    transition: all 0.5s ease;
}
.mat-alloy::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(206, 254, 70, 0.25);
}
.mat-alloy::after {
    content: '';
    position: absolute;
    inset: 14px;
    background: rgba(206, 254, 70, 0.08);
    border: 1px solid rgba(206, 254, 70, 0.15);
}
/* mat-alloy hover removed */

/* Дуб и Тик — Wood grain lines */
.mat-wood {
    width: 64px;
    height: 48px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mat-wood span {
    display: block;
    height: 2px;
    border-radius: 4px;
    background: rgba(180, 140, 80, 0.5);
    transition: all 0.5s ease;
}
.mat-wood span:nth-child(1) { width: 100%; }
.mat-wood span:nth-child(2) { width: 85%; margin-left: 8%; }
.mat-wood span:nth-child(3) { width: 95%; margin-left: 2%; }
.mat-wood span:nth-child(4) { width: 80%; margin-left: 12%; }
.mat-wood span:nth-child(5) { width: 90%; margin-left: 4%; }
.mat-wood span:nth-child(6) { width: 75%; margin-left: 10%; }
/* mat-wood hover removed */

/* Made in Russia — Centered flag icon */
.mat-flag {
    width: 56px;
    height: 38px;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}
.mat-flag span {
    flex: 1;
}
.mat-flag-w { background: #fff; }
.mat-flag-b { background: #0039A6; }
.mat-flag-r { background: #D52B1E; }
/* mat-flag hover removed */

/* 30+ лет — Circular progress / clock motif */
.mat-years {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    transition: all 0.5s ease;
}
.mat-years::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 20px;
    background: var(--accent);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(0deg);
    transition: transform 1s ease;
    border-radius: 1px;
}
.mat-years::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(90deg);
    border-radius: 1px;
}
/* mat-years hover removed */

@media (max-width: 767px) {
    .brand-values {
        grid-template-columns: 1fr;
    }
    .dna-counters {
        grid-template-columns: repeat(3, 1fr);
    }
    .counter-item {
        padding: 20px 12px;
    }
}

@media (max-width: 959px) {
    .brand-left {
        padding: 40px 20px;
    }
    .brand-shipyard {
        padding: 40px 20px;
    }
}

/* RGO SECTION (Restored) */
.glass-panel-rgo {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.9);
    position: relative; overflow: hidden;
    padding: 24px; border-radius: 2px; transition: var(--transition);
}
@media(min-width: 768px) { .glass-panel-rgo { padding: 32px 40px; } }

.glass-panel-rgo:hover { transform: translateY(-4px); }

.glass-panel-rgo::after {
    content: ""; position: absolute; inset: 0; opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none; z-index: -1;
}

#geography_map {
    position: relative; min-height: 85vh; background-color: #050505;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
    padding: 80px 20px;
}

/* Smooth gradient bridge between О бренде and Партнёрство */
#geography_map::before {
    content: '';
    position: absolute;
    top: -80px; left: 0; right: 0; height: 160px;
    background: linear-gradient(180deg, #070707 0%, #050505 100%);
    z-index: 1;
    pointer-events: none;
}

.map-bg-layer { position: absolute; inset: 0; z-index: 0; }
.map-img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.6; filter: grayscale(100%) contrast(1.25);
}

.map-gradient-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, #000 0%, transparent 50%, #000 100%);
}
.map-gradient-bottom {
    position: absolute; inset: 0;
    background: linear-gradient(to top, #000 0%, transparent 40%);
}

.map-content-wrapper {
    position: relative; z-index: 10; width: 100%;
    max-width: var(--container-width); display: flex;
    flex-direction: column; justify-content: flex-end; align-items: flex-end;
}

@media (min-width: 900px) {
    .map-content-wrapper {
        flex-direction: row; 
        justify-content: space-between; 
        align-items: flex-end;
    }
}

.map-label { display: none; }

@media (min-width: 900px) {
    .map-label { display: block; margin-bottom: 32px; }
    .map-label h3 {
        color: rgba(255, 255, 255, 0.5);
        font-family: 'Courier New', Courier, monospace;
        font-size: 11px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
    }
    .map-label-line {
        display: none;
        height: 64px; width: 1px;
        background: linear-gradient(180deg, rgba(206, 254, 70, 0.3), rgba(255,255,255,0.1));
        margin-top: 16px;
    }
}

.rgo-panel-wrapper { 
    width: 100%; 
    max-width: 780px;
}

@media (min-width: 900px) {
    .rgo-panel-wrapper {
        margin-right: 0;
        margin-left: auto;
    }
}

.rgo-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}

.rgo-badge { display: flex; align-items: center; gap: 16px; }

.rgo-logo-small {
    height: 40px; width: auto; display: block;
    filter: grayscale(1) brightness(1.2); transition: var(--transition);
}
@media(min-width: 768px) { .rgo-logo-small { height: 52px; } }

.rgo-logo-small:hover { filter: grayscale(0) brightness(1); }

.rgo-status-text {
    color: var(--accent); font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
}
@media(min-width: 768px) { .rgo-status-text { font-size: 12px; } }

.rgo-est {
    color: rgba(255,255,255,0.3); font-family: monospace; font-size: 12px;
}

.rgo-title-large {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 5vw, 42px);
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.rgo-desc {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
    border-left: 2px solid rgba(206, 254, 70, 0.2);
    padding-left: 20px;
    font-size: 14px;
}
@media(min-width: 768px) { .rgo-desc { font-size: 15px; } }

/* RGO Visual Stats */
.rgo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .rgo-stats { grid-template-columns: 1fr; }
}

.rgo-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.35s ease;
}

/* rgo-stat hover removed — informational, not clickable */

.rgo-stat-icon {
    width: 32px;
    height: 32px;
    background: rgba(206,254,70,0.1);
    border: 1px solid rgba(206,254,70,0.25);
    position: relative;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

/* rgo-stat-icon hover removed */

/* Icon: Ship length */
.rgo-icon-length::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 18px; height: 2px;
    background: var(--accent);
}

.rgo-icon-length::after {
    content: '';
    position: absolute;
    top: 50%; left: 20%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 4px solid var(--accent);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

/* Icon: Range/autonomy */
.rgo-icon-range::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 16px; height: 16px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    border-right-color: transparent;
    animation: spinSlow 3s linear infinite;
}

@keyframes spinSlow {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Icon: Ice/double keel */
.rgo-icon-ice::before {
    content: '';
    position: absolute;
    top: 30%; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid var(--accent);
}

.rgo-icon-ice::after {
    content: '';
    position: absolute;
    bottom: 30%; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid var(--accent);
}

.rgo-stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rgo-stat-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.rgo-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* RGO feature cards (Надёжность / Статус) */
.rgo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.rgo-feature {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.35s ease;
}

/* rgo-feature hover removed — informational, not clickable */

.rgo-feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CSS-only icons for features */
.rgo-feature h4::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: rgba(206,254,70,0.1);
    border: 1px solid rgba(206,254,70,0.3);
    position: relative;
    transition: all 0.3s ease;
}

/* rgo-feature h4 hover removed */

/* Shield icon for "Надёжность" */
.rgo-feature:first-child h4::before {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Star/badge icon for "Статус" */
.rgo-feature:last-child h4::before {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rgo-feature p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

@media (max-width: 480px) {
    .rgo-features { grid-template-columns: 1fr; }
}

/* RGO News card */
.rgo-news {
    position: relative;
    margin-top: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.35s ease;
    cursor: pointer;
}

.rgo-news:hover {
    border-color: rgba(206, 254, 70, 0.25);
}

.rgo-news-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rgo-news-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: antennaBlink 1.5s ease-in-out infinite;
}

.rgo-news h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.rgo-news p {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin-bottom: 12px;
}

.rgo-news a {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.rgo-news a:hover { opacity: 0.7; }
.rgo-news a::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Visual enhancements for RGO panel */
.glass-panel-rgo .rgo-header {
    position: relative;
}

.rgo-logo-small {
    animation: logoFloat 4s ease-in-out infinite;
}

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

.rgo-status-text {
    position: relative;
    overflow: hidden;
}

.rgo-status-text::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(206,254,70,0.2), transparent);
    animation: shimmerSlow 3s infinite;
}

@keyframes shimmerSlow {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Animated stats counters in features */
.rgo-feature h4::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.5s ease;
}

.rgo-feature {
    position: relative;
}

/* rgo-feature animation hover removed */

/* Floating particles effect for panel */
.glass-panel-rgo::before {
    content: '';
    position: absolute;
    top: 10%; right: 5%;
    width: 4px; height: 4px;
    background: rgba(206,254,70,0.3);
    border-radius: 50%;
    animation: floatParticle1 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatParticle1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(20px, -30px); opacity: 0.6; }
    50% { transform: translate(-15px, -60px); opacity: 0.3; }
    75% { transform: translate(10px, -30px); opacity: 0.6; }
}

/* Info icon animations */
.rgo-news-dot {
    position: relative;
}

.rgo-news-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    animation: pingEffect 2s ease-out infinite;
}

@keyframes pingEffect {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Title highlight effect */
.rgo-title-large {
    position: relative;
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.glass-panel-rgo:hover .rgo-title-large {
    background: linear-gradient(90deg, #fff 0%, var(--accent) 50%, #fff 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: titleGradient 2s ease-in-out;
}

@keyframes titleGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* EST badge pulse */
.rgo-est {
    position: relative;
    animation: estPulse 3s ease-in-out infinite;
}

@keyframes estPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.rgo-actions-row { display: flex; flex-wrap: wrap; gap: 12px; }
.rgo-actions-row .btn { flex: 1; text-align: center; }
@media(min-width: 600px) { .rgo-actions-row .btn { flex: initial; } }

/* Animation Helpers */
@keyframes modalEnter {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.animate-modal-enter { animation: modalEnter 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* RGO Modal Specifics */
