/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a1a1a;
    --color-primary-dark: #0a0a0a;
    --color-accent: #1252DA;
    --color-accent-dark: #0e42b0;
    --color-text: #FFFFFF;
    --color-text-secondary: #E0E0E0;
    --color-bg-dark: #1a1a1a;
    --color-bg-section: #2a2a2a;
    --color-bg-light: #FFFFFF;
    --color-card: #2a2a2a;
    --color-card-light: #FFFFFF;
    --color-border: #444444;
    --color-border-light: #CCCCCC;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero .container {
    padding: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.85);
    border-bottom: none;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.nav-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: var(--color-accent-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--color-accent);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a.active {
    color: var(--color-accent);
}

.nav-menu li a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    /* Space for Navbar */
    background: var(--color-bg-dark);
    overflow: hidden;
}

/* Hero background layers */
.hero-bg-base,
.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    /* Zoomed out as requested */
    background-repeat: no-repeat;
    background-position: center bottom;
    /* Anchor to bottom or center? Trying center first */
    background-attachment: scroll;
    /* Fixed often breaks custom sizes */
    z-index: 0;
}

/* ... existing styles ... */

/* Adjusted Lantern Positions */
.lantern-left {
    top: 45%;
    /* Raised significantly from 62% */
    left: 30%;
    /* Adjusted for smaller background scale */
}

.lantern-right {
    top: 45%;
    right: 30%;
}

.hero-bg-base {
    background-image: url('bez_osv.png');
    opacity: 0;
    filter: brightness(0.2) contrast(0.5);
    /* Initial reveal: fast & snappy */
    animation: planeReveal 1.5s ease-out forwards;
}

.hero-bg-glow {
    background-image: url('s_osv.png');
    opacity: 0;
    /* Gradual replacement: slow fade in after initial reveal */
    animation: glowReveal 3s ease-in-out 1.2s forwards;
}

@keyframes glowReveal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes planeReveal {
    0% {
        opacity: 0;
        filter: brightness(0) contrast(0) blur(10px);
    }

    30% {
        opacity: 0.3;
        filter: brightness(0.1) contrast(0.3) blur(5px);
    }

    60% {
        opacity: 0.7;
        filter: brightness(0.4) contrast(0.7) blur(2px);
    }

    100% {
        opacity: 1;
        filter: brightness(1) contrast(1) blur(0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

/* Gradient Mask - Darkness Reveal */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Start with full black overlay */
    background: #000000;
    z-index: 2;
    /* Must be > overlays to hide everything initially */
    animation: darknessReveal 2.0s ease-out forwards;
    pointer-events: none;
}

@keyframes darknessReveal {
    0% {
        opacity: 1;
        background: #000000;
    }

    40% {
        opacity: 1;
        background: #000000;
    }

    100% {
        opacity: 0;
        background: transparent;
    }
}

/* Hero Top Banner */
.hero-top-banner {
    position: relative;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.6) 80%, transparent);
    padding: 15px 0;
    margin-bottom: 20px;
    text-align: center;
    /* Explicitly centered */
    display: flex;
    justify-content: center;
    /* Flex center */
}

.hero-top-text {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    /* Text center */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
}

/* Main Container & Wrapper */
.hero-main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Give slightly more space to left text */
    gap: 40px;
    align-items: center;
    width: 100%;
    margin-bottom: auto;
    /* Push content to top/center, emblems to bottom */
    padding: 40px 0;
}

/* Left Content */
.hero-content {
    text-align: left;
    margin-right: auto;
    opacity: 0;
    /* Smooth cubic-bezier for luxury feel */
    animation: smoothSlideUp 1.2s cubic-bezier(0.25, 0.1, 0.25, 1.0) 0.5s forwards;
    padding-left: 20px;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line {
    display: block;
    color: #FFFFFF;
    font-size: 0.6em;
    /* Relative to hero-title font size */
    margin-bottom: 10px;
    font-weight: 700;
}

.title-line-accent {
    display: block;
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(18, 82, 218, 0.4);
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

/* Right Content (BPLA) */
.hero-right-content {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    /* Staggered slightly after left content, same smooth curve */
    animation: smoothSlideUp 1.2s cubic-bezier(0.25, 0.1, 0.25, 1.0) 0.8s forwards;
    padding-right: 20px;
}

@keyframes smoothSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bpla-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1;
}

.bpla-line-1 {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: #FFFFFF;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.bpla-line-2 {
    display: block;
    font-size: clamp(4rem, 8vw, 7rem);
    color: var(--color-accent);
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(18, 82, 218, 0.4);
}

/* Button Base Styles */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 42px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    font-family: 'Oswald', sans-serif;
    white-space: normal;
    /* Allow wrapping on small screens */
    text-align: center;
    z-index: 5;
    /* Ensure above hero overlays */
    line-height: 1.2;
}

@media (max-width: 600px) {
    .btn {
        padding: 15px 20px;
        /* Reduced specific padding for mobile */
        font-size: 0.9rem;
        width: 100%;
        /* Full width on very small screens if needed */
        max-width: 300px;
    }
}

/* Primary Button (Apply, BPLA) - Premium Redesign */
.btn-primary {
    background: linear-gradient(135deg, #1252DA 0%, #0a3a9c 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(18, 82, 218, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E66FF 0%, #1252DA 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 82, 218, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(18, 82, 218, 0.4);
}

/* Secondary Button (Hero Phone) */
.hero-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 42px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    white-space: nowrap;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-phone:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-phone:hover .phone-icon {
    transform: rotate(15deg);
    color: var(--color-accent);
}

.phone-icon {
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

/* BPLA Context specifics */
.bpla-btn {
    font-size: 1.1rem;
    padding: 22px 50px;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(18, 82, 218, 0.2);
}

.bpla-btn:hover {
    background: var(--color-accent);
    color: #FFFFFF;
    box-shadow: 0 0 40px rgba(18, 82, 218, 0.8), 0 0 10px rgba(255, 255, 255, 0.4) inset;
    border-color: var(--color-accent);
}

/* Global large button */
.btn-large {
    padding: 22px 55px;
    font-size: 1.2rem;
}

/* Premium Pulse Animation */
.pulse {
    animation: premiumPulse 3s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes premiumPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 82, 218, 0.7);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(18, 82, 218, 0);
    }

    55% {
        box-shadow: 0 0 0 0 rgba(18, 82, 218, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(18, 82, 218, 0);
    }
}

/* Bottom Emblems */
.hero-bottom-emblems {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.0s forwards;
    z-index: 3;
    padding-bottom: 40px;
    /* Space from bottom of screen */
    margin-top: auto;
    /* Push to bottom of flex container */
    flex-wrap: wrap;
}

.emblem-item {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.emblem-item:hover {
    transform: scale(1.1);
}

.emblem-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
}

/* Resize specific logo to match visual weight */
.emblem-item img[src*="star_logo.png"] {
    transform: scale(0.85);
}

.emblem-center {
    /* Removed specific size override to keep them uniform */
    /* width: 120px; */
    /* height: 120px; */
}

/* Animated Lanterns (Yellow Lights) - Soft diffused glow */
.hero-lanterns {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lantern {
    position: absolute;
    width: 120px;
    /* Larger spread for glow */
    height: 120px;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.5) 0%, rgba(255, 215, 0, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    box-shadow: none;
    /* Gradient handles the glow */
    opacity: 0;
    /* Sync with plane (1.5s) and start Slow Blink with delay */
    animation: lanternAppear 1.5s ease-out 1s forwards, lanternBlink 4s ease-in-out infinite 2.5s;
    mix-blend-mode: screen;
    /* Blends better with dark background */
    filter: blur(10px);
    /* Extra softness */
}

/* Adjusted Lantern Positions */
.lantern-left {
    top: 45%;
    left: 30%;
}

.lantern-right {
    top: 45%;
    right: 30%;
}

/* Match plane reveal timing */
@keyframes lanternAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Slow Blink Animation */
@keyframes lanternBlink {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    /* Dim but don't disappear */
}

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        padding-top: 100px;
        /* More space on mobile */
        height: auto;
        min-height: 100vh;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding-bottom: 20px;
    }

    .hero-content,
    .hero-right-content {
        text-align: center;
        align-items: center;
        padding: 0;
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-bottom-emblems {
        gap: 30px;
        padding-bottom: 80px;
        /* Space for scroll indicator */
    }

    .emblem-item {
        width: 70px;
        height: 70px;
    }

    .emblem-center {
        width: 100px;
        height: 100px;
    }

    /* Adjust lanterns for mobile portrait view if the plane image crops */
    .lantern-left {
        top: 40%;
        left: 10%;
    }

    .lantern-right {
        top: 40%;
        right: 10%;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

/* Общий фон для всех секций после hero */
section:not(.hero) {
    background: var(--color-bg-section);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--color-accent);
}

section:not(.hero)::after {
    display: none;
}

@keyframes backgroundFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Спокойная анимация параллакса для фона */
section:not(.hero) {
    animation: backgroundParallax 60s ease-in-out infinite;
}

@keyframes backgroundParallax {

    0%,
    100% {
        background-position: center center;
    }

    50% {
        background-position: center 5%;
    }
}

/* Плавный переход от hero к следующей секции */
.benefits {
    position: relative;
    margin-top: -1px;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 30px;
    text-shadow: 0 0 20px rgba(18, 82, 218, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--color-accent);
}

/* Benefits Section */
.benefits {
    position: relative;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 0 0 auto;
    opacity: 0;
    animation: heroContentFadeIn 1s ease-out 2.3s forwards;
    margin-top: 0;
    align-self: flex-start;
    padding-right: 30px;
    margin-left: auto;
    margin-right: 0;
    order: 2;
    flex-shrink: 0;
}

.benefits-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.benefit-card {
    background: rgba(42, 42, 42, 0.4);
    border: none;
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    flex: 0 1 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(18, 82, 218, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(18, 82, 218, 0.1) 0%,
            transparent 20%,
            transparent 80%,
            rgba(18, 82, 218, 0.1) 100%);
    pointer-events: none;
    z-index: 0;
}

.benefit-card>* {
    position: relative;
    z-index: 1;
}

.hero-benefits .benefit-card {
    min-width: 240px;
    max-width: 280px;
    padding: 25px 20px;
}

.benefit-card::before {
    display: none;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(18, 82, 218, 0.4), 0 0 80px rgba(18, 82, 218, 0.2);
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

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

.benefit-card.highlight {
    background: rgba(42, 42, 42, 0.5);
    box-shadow: 0 8px 40px rgba(18, 82, 218, 0.3), 0 0 70px rgba(18, 82, 218, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-benefits .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.benefit-amount {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-benefits .benefit-amount {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.benefit-label {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-benefits .benefit-label {
    font-size: 0.9rem;
    font-weight: 600;
}


/* Payments Section styled */
.payments-section {
    padding: 0;
    position: relative;
    background: transparent;
    z-index: 5;
    margin-top: 20px;
    margin-bottom: 20px;
}

.payments-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.payments-banner {
    display: flex;
    background: linear-gradient(105deg, #111 40%, rgba(40, 40, 40, 0.9) 40.1%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 500px;
}

.payments-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: radial-gradient(circle at 80% 20%, rgba(18, 82, 218, 0.15), transparent 40%);
}

.payments-header-side {
    flex: 0 0 40%;
    padding: 60px 40px 60px max(40px, calc((100vw - 1200px) / 2));
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.payments-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #FFFFFF;
}

.text-accent {
    color: var(--color-accent);
}

.payments-content-side {
    flex: 0 0 60%;
    padding: 60px max(40px, calc((100vw - 1200px) / 2)) 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Top Row - Monthly */
.payment-monthly {
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
}

.payment-label-small {
    display: block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.payment-value-medium {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.accent-number {
    color: var(--color-accent);
}

.currency-text {
    font-size: 0.5em;
    color: var(--color-text-secondary);
    vertical-align: top;
    margin-left: 5px;
}

/* Grid Row - One time & Yearly */
.payment-grid-row {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}

.payment-box {
    flex: 1;
}

.payment-box-title {
    display: block;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
}

.payment-box-value {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    white-space: nowrap;
}

.currency-symbol {
    font-size: 0.6em;
    color: #FFFFFF;
}

.payment-box-desc {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    line-height: 1.4;
    max-width: 250px;
}

/* CTA Row */
.payment-cta-row {
    margin-top: 20px;
}

.payment-btn {
    width: 100%;
    max-width: 350px;
    padding: 22px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    /* Rounded button like reference */
    background: var(--color-accent);
    box-shadow: 0 10px 30px rgba(18, 82, 218, 0.4);
}

.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 82, 218, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .payments-banner {
        flex-direction: column;
        background: #111;
    }

    .payments-header-side {
        flex: auto;
        padding: 40px 30px 20px;
        background: #0a0a0a;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .payments-content-side {
        flex: auto;
        padding: 30px;
    }

    .payment-grid-row {
        flex-direction: column;
        gap: 30px;
    }

    .payment-box-value {
        font-size: 3.2rem;
    }
}

/* Social Benefits Section */

.social-benefits {
    position: relative;
    background: radial-gradient(circle at top right, rgba(18, 82, 218, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(18, 82, 218, 0.05), transparent 40%);
}

.social-benefits::before {
    display: none;
}

.social-benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(18, 82, 218, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(18, 82, 218, 0.2);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item>* {
    position: relative;
    z-index: 1;
}

.benefit-icon-small {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 82, 218, 0.15);
    border-radius: 50%;
    color: var(--color-accent);
    box-shadow: 0 0 20px rgba(18, 82, 218, 0.2);
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon-small {
    background: var(--color-accent);
    color: #FFFFFF;
    transform: rotateY(180deg);
    box-shadow: 0 0 30px rgba(18, 82, 218, 0.5);
}

.benefit-text {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-text {
    color: #FFFFFF;
}

/* Increase Rostov coat of arms size */
.hero-bottom-emblems .emblem-item:first-child img {
    width: 120px;
    height: auto;
}

/* Benefits Modal Styles */
.benefits-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefits-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.benefits-modal-container {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(18, 82, 218, 0.3);
    animation: modalFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    scrollbar-width: thin;
    scrollbar-color: rgba(18, 82, 218, 0.5) rgba(255, 255, 255, 0.1);
}

.benefits-modal-container::-webkit-scrollbar {
    width: 8px;
}

.benefits-modal-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.benefits-modal-container::-webkit-scrollbar-thumb {
    background: rgba(18, 82, 218, 0.5);
    border-radius: 10px;
}

.benefits-modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(18, 82, 218, 0.7);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.benefits-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.benefits-modal-close:hover {
    background: rgba(244, 67, 54, 0.8);
    transform: rotate(90deg);
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.5);
}

.benefits-modal-header {
    padding: 40px 40px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(18, 82, 218, 0.1) 0%, transparent 100%);
    position: relative;
}

.benefits-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.benefits-modal-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-right: 50px;
}

.benefits-modal-content {
    padding: 35px 40px 40px;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.benefits-modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-modal-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
}

.benefits-modal-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: rgba(18, 82, 218, 0.2);
    border-radius: 50%;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.benefits-modal-content ul li:hover {
    padding-left: 38px;
    color: #FFFFFF;
}

.benefits-modal-content p {
    margin-bottom: 15px;
}

.benefits-modal-content strong {
    color: var(--color-accent);
    font-weight: 700;
}

/* Responsive modal styles */
@media (max-width: 768px) {
    .benefits-modal-container {
        width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }

    .benefits-modal-header {
        padding: 30px 25px 20px;
    }

    .benefits-modal-header h3 {
        font-size: 1.4rem;
    }

    .benefits-modal-content {
        padding: 25px;
        font-size: 0.95rem;
    }

    .benefits-modal-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 15px;
        right: 15px;
    }
}

/* Housing Section */
.housing {
    position: relative;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8), #1a1a1a);
}

.housing::before {
    display: none;
}

.housing .container {
    position: relative;
    z-index: 2;
}

.housing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.housing-card {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--color-accent);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.housing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top, rgba(18, 82, 218, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.housing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(18, 82, 218, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.housing-card>* {
    position: relative;
    z-index: 1;
}

.housing-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.4s ease;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.housing-card:hover .housing-icon {
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 30px rgba(18, 82, 218, 0.4);
}

.housing-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.housing-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-weight: 300;
    padding: 0 10px;
}

/* How to Apply Section */
.how-to-apply {
    position: relative;
}

.how-to-apply .container {
    position: relative;
    z-index: 2;
}

.how-to-apply::before {
    display: none;
}

@keyframes radialPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.6;
    }
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 80px;
    position: relative;
    flex-wrap: wrap;
}

/* Timeline Line (Desktop) */
.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.steps::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    z-index: 0;
    animation: flowLine 3s infinite linear;
    background-size: 50% 100%;
}

@keyframes flowLine {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.step {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    position: relative;
}

.step::before {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 10px #1a1a1a;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: var(--color-accent);
    box-shadow: 0 0 30px rgba(18, 82, 218, 0.6), 0 0 0 10px #1a1a1a;
    transform: scale(1.1);
}

.step-content {
    background: rgba(42, 42, 42, 0.3);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    transition: all 0.3s ease;
}

.step:hover .step-content {
    background: rgba(50, 50, 50, 0.6);
    border-color: rgba(18, 82, 218, 0.3);
    transform: translateY(5px);
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Mobile adjustments for steps */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 0;
        margin-top: 40px;
    }

    .steps::before,
    .steps::after {
        top: 0;
        bottom: 0;
        left: 40px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0 0 40px 0;
        gap: 30px;
    }

    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        font-size: 2rem;
        left: 11px;
    }

    .step-content {
        width: auto;
        flex: 1;
        margin-top: 5px;
    }

    .step:hover .step-number {
        transform: scale(1.05);
    }
}

/* Contact Section */
.contact {
    position: relative;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--color-accent) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(18, 82, 218, 0.1);
    background: rgba(40, 40, 40, 0.6);
    border-color: rgba(18, 82, 218, 0.3);
}

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

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--color-accent);
    filter: drop-shadow(0 0 10px rgba(18, 82, 218, 0.3));
}

.contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 300;
}

.contact-subtitle {
    font-size: 0.95rem;
    color: var(--color-accent);
    opacity: 0.9;
    margin-top: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    margin: 15px 0;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(18, 82, 218, 0.2);
}

.contact-phone:hover {
    color: var(--color-accent);
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(18, 82, 218, 0.5);
}

.contact-note {
    margin-top: 60px;
    padding: 40px;
    background: rgba(18, 82, 218, 0.05);
    border: 1px solid rgba(18, 82, 218, 0.2);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-note::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(18, 82, 218, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.contact-note p {
    font-size: 1.2rem;
    color: #FFFFFF;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.contact-cta {
    margin-top: 50px;
    text-align: center;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent);
}

.footer-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 25px;
    background: rgba(18, 82, 218, 0.8);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 0;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    box-shadow: 0 8px 40px rgba(18, 82, 218, 0.5), 0 0 60px rgba(18, 82, 218, 0.2);
    transition: all 0.2s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 50px rgba(18, 82, 218, 0.6), 0 0 80px rgba(18, 82, 218, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.floating-icon {
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1a1a1a;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu li a {
        display: block;
        padding: 15px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
        align-items: flex-start;
    }

    .hero-content {
        text-align: left;
        max-width: 100%;
        min-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
    }

    .hero-description {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-cta {
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-phone {
        width: 100%;
        justify-content: center;
    }

    .hero-benefits {
        width: 100%;
        max-width: 100%;
    }

    .hero-benefits .benefit-card {
        min-width: 100%;
        max-width: 100%;
    }

    .hero-badge {
        margin-top: 25px;
        width: 100%;
        text-align: center;
    }

    .benefits-grid {
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-phone {
        padding: 18px 35px;
        font-size: 1.1rem;
        gap: 10px;
    }

    .phone-icon {
        font-size: 1.3rem;
    }

    .benefits-grid,
    .housing-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .floating-text {
        display: none;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .benefit-amount {
        font-size: 2rem;
    }
}

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

/* Selection Color */
::selection {
    background: var(--color-accent);
    color: #FFFFFF;
}

/* Cookie Consent Modal */
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    padding: 20px;
}

.cookie-consent-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-consent {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 3px solid var(--color-accent);
    border-radius: 15px;
    padding: 40px 35px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(18, 82, 218, 0.3);
    backdrop-filter: blur(10px);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease-out;
    position: relative;
}

.cookie-consent-overlay.show .cookie-consent {
    transform: scale(1) translateY(0);
}

.cookie-consent-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
}

.cookie-consent-icon {
    font-size: 4rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.cookie-consent-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(18, 82, 218, 0.2);
}

.cookie-consent-text {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

.cookie-consent-link {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-link:hover {
    color: var(--color-accent-dark);
}

.cookie-consent-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    width: 100%;
}

.cookie-consent-accept {
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
    min-width: 200px;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 35px 25px;
        margin: 20px;
    }

    .cookie-consent-icon {
        font-size: 3rem;
    }

    .cookie-consent-accept {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 30px 20px;
        margin: 15px;
    }

    .cookie-consent-icon {
        font-size: 2.5rem;
    }
}

/* SVG Icon Styles */
svg {
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.phone-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-icon-small svg {
    width: 32px;
    height: 32px;
}

.housing-icon svg {
    width: 64px;
    height: 64px;
}

.contact-icon svg {
    width: 48px;
    height: 48px;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    animation: bounce 1s infinite;
}

.cookie-consent-icon svg {
    width: 48px;
    height: 48px;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.article-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(18, 82, 218, 0.3);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #222;
}

.article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-date {
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 10px;
    opacity: 0.8;
}

.article-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.article-preview {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.article-tags span {
    background: rgba(18, 82, 218, 0.2);
    color: var(--color-accent);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 5px;
}

/* Admin Styling */
.admin-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-edit,
.btn-delete {
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    color: #fff;
}

.btn-edit {
    background: #4CAF50;
}

.btn-delete {
    background: #f44336;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid var(--color-accent);
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 50px rgba(18, 82, 218, 0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #fff;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--color-accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    outline: none;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.article-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(18, 82, 218, 0.3);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #222;
}

.article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-date {
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 10px;
    opacity: 0.8;
}

.article-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-preview {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.article-tags span {
    background: rgba(18, 82, 218, 0.2);
    color: var(--color-accent);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 5px;
}

/* Admin Styling */
.admin-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-edit,
.btn-delete {
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    color: #fff;
}

.btn-edit {
    background: #4CAF50;
}

.btn-delete {
    background: #f44336;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid var(--color-accent);
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 50px rgba(18, 82, 218, 0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #fff;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--color-accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    outline: none;
}

/* News Section Carousel */
.news-section {
    background: var(--color-bg-section);
    padding: 80px 0;
}

.news-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.news-carousel {
    overflow: hidden;
    flex: 1;
    border-radius: 8px;
}

.news-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 0;
    align-items: stretch;
    /* Ensure cards stretch to fill height */
}

.news-card {
    flex: 0 0 calc(33.333% - 17px);
    min-width: 300px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(18, 82, 218, 0.3);
}

.news-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid var(--color-accent);
}

.news-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-date {
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 8px;
    font-weight: 500;
}

.news-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.news-card-preview {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(18, 82, 218, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(18, 82, 218, 0.4);
}

.news-nav-btn:hover {
    background: var(--color-accent);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(18, 82, 218, 0.6);
}

.news-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.news-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.news-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

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

.news-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.news-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--color-accent);
}

.news-cta {
    text-align: center;
}

.news-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .news-card {
        flex: 0 0 calc(50% - 13px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .news-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .news-nav-btn {
        width: 40px;
        height: 40px;
    }

    .news-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .news-carousel-wrapper {
        gap: 10px;
    }
}

/* Video Section */
.video-section {
    background: var(--color-bg-section);
    padding: 80px 0;
}

.video-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(42, 42, 42, 0.6);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(18, 82, 218, 0.3);
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--color-accent);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(18, 82, 218, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(18, 82, 218, 0.5);
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-family: Oswald, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.video-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.video-modal-close:hover {
    transform: scale(1.2);
}

.video-modal-close svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.video-modal-player {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-player video {
    width: 100%;
    display: block;
}

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

    .video-modal-close {
        top: -40px;
        right: 5px;
    }
}

/* Video Carousel */
.video-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.video-carousel {
    overflow: hidden;
    border-radius: 12px;
}

.video-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.video-track .video-card {
    flex: 0 0 calc(33.333% - 17px);
    min-width: 300px;
}

.video-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(18, 82, 218, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(18, 82, 218, 0.4);
}

.video-nav-btn:hover {
    background: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}

.video-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.video-prev {
    left: 0;
}

.video-next {
    right: 0;
}

.video-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

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

.video-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.video-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .video-track .video-card {
        flex: 0 0 calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .video-carousel-wrapper {
        padding: 0 40px;
    }

    .video-track .video-card {
        flex: 0 0 100%;
    }

    .video-nav-btn {
        width: 35px;
        height: 35px;
    }

    .video-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Social Benefits Section - centered last item */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(42, 42, 42, 0.6);
    padding: 20px 25px;
    border-radius: 12px;
    flex: 0 0 calc(50% - 15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(18, 82, 218, 0.2);
}

/* Removed special centering for last odd child to fix alignment */
/*.benefit-item:last-child:nth-child(odd) {
    flex: 0 0 60%;
    justify-content: center;
}*/

.benefit-icon-small {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--color-accent), #1a5fd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-small svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.benefit-text {
    font-size: 1.05rem;
    color: #eee;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .benefit-item {
        flex: 0 0 100%;
    }

    .benefit-item:last-child:nth-child(odd) {
        flex: 0 0 100%;
    }
}

/* Enhanced Video Carousel Cards */
.video-track .video-card {
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.9), rgba(30, 30, 30, 0.95));
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.video-track .video-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(18, 82, 218, 0.35), 0 0 30px rgba(18, 82, 218, 0.15);
    border-color: rgba(18, 82, 218, 0.4);
}

.video-track .video-card .video-thumbnail {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.video-track .video-card .video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-track .video-card .video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-track .video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-track .video-card .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(18, 82, 218, 0.95), rgba(30, 100, 240, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 8px 30px rgba(18, 82, 218, 0.6), inset 0 2px 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-track .video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 40px rgba(18, 82, 218, 0.8), inset 0 2px 15px rgba(255, 255, 255, 0.3);
}

.video-track .video-card .video-play-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    margin-left: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-track .video-card .video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    letter-spacing: 0.5px;
}

.video-track .video-card .video-info {
    padding: 20px 22px 22px;
    background: transparent;
}

.video-track .video-card .video-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.video-track .video-card:hover .video-title {
    color: var(--color-accent);
}

.video-track .video-card .video-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Enhanced video nav buttons */
.video-nav-btn {
    background: linear-gradient(135deg, var(--color-accent), #1a5fd9);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 25px rgba(18, 82, 218, 0.5), inset 0 1px 5px rgba(255, 255, 255, 0.2);
}

.video-nav-btn:hover {
    background: linear-gradient(135deg, #1a5fd9, var(--color-accent));
    box-shadow: 0 10px 35px rgba(18, 82, 218, 0.7), inset 0 1px 8px rgba(255, 255, 255, 0.3);
}

/* Enhanced dots */
.video-dot {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.video-dot:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.video-dot.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(18, 82, 218, 0.6);
}

/* Video Cards - seamless integration with background */
.video-track .video-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible;
}

.video-track .video-card:hover {
    transform: translateY(-8px);
    box-shadow: none !important;
}

.video-track .video-card .video-thumbnail {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6), 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.video-track .video-card:hover .video-thumbnail {
    box-shadow: 0 15px 50px rgba(18, 82, 218, 0.4), 0 8px 25px rgba(0, 0, 0, 0.5);
    transform: scale(1.03);
}

.video-track .video-card .video-thumbnail::before {
    border-radius: 16px;
}

.video-track .video-card .video-info {
    padding: 18px 8px 0;
    background: transparent !important;
    text-align: center;
}

.video-track .video-card .video-title {
    font-size: 1.05rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-track .video-card .video-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Video section background adjustment */
.video-section {
    background: transparent;
    padding: 60px 0;
}

.video-carousel-wrapper {
    padding: 20px 60px;
}

/* Fix card sizing */
.video-track .video-card {
    flex: 0 0 calc(33.333% - 20px) !important;
    min-width: 280px;
    max-width: 380px;
}

@media (max-width: 992px) {
    .video-track .video-card {
        flex: 0 0 calc(50% - 15px) !important;
    }
}

@media (max-width: 768px) {
    .video-track .video-card {
        flex: 0 0 100% !important;
        max-width: 100%;
    }

    .video-carousel-wrapper {
        padding: 15px 45px;
    }
}

/* Video cards hover - expand upward only */
.video-carousel {
    overflow: visible !important;
}

.video-track {
    overflow: visible;
}

.video-track .video-card {
    position: relative;
    z-index: 1;
    transform-origin: center bottom;
}

.video-track .video-card:hover {
    z-index: 100;
    transform: translateY(-10px);
}

.video-track .video-card:hover .video-thumbnail {
    transform: none;
}

.video-carousel-wrapper {
    overflow: hidden;
    padding-top: 20px;
    margin-top: -20px;
}

/* Hero section - extended height so badge is at bottom */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-bottom: 80px;
}

.hero .container {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-badge-bottom {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.badge-text-bottom {
    display: inline-block;
    background: linear-gradient(135deg, rgba(18, 82, 218, 0.9), rgba(30, 100, 240, 0.8));
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(18, 82, 218, 0.4);
    backdrop-filter: blur(10px);
}

.scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-bottom: 100px;
    }

    .hero-badge-bottom {
        bottom: 50px;
    }

    .badge-text-bottom {
        font-size: 0.9rem;
        padding: 12px 25px;
    }

    .scroll-indicator {
        bottom: 10px;
    }
}

/* Mobile hero badge fix */
@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 120px !important;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .hero-badge-bottom {
        bottom: 70px !important;
        padding: 0 15px;
    }

    .badge-text-bottom {
        font-size: 0.8rem !important;
        padding: 10px 20px !important;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .badge-text-bottom {
        font-size: 0.7rem !important;
        padding: 8px 15px !important;
    }
}

/* Hero badge - large white text, no background */
.badge-text-bottom {
    background: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    color: #fff !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    padding: 0 !important;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5) !important;
}

/* Extend hero section height */
.hero {
    min-height: 110vh !important;
}

.hero-badge-bottom {
    bottom: 100px !important;
}

@media (max-width: 768px) {
    .hero {
        min-height: 115vh !important;
        min-height: 115dvh !important;
    }

    .badge-text-bottom {
        font-size: 1.2rem !important;
        letter-spacing: 2px !important;
        white-space: normal !important;
        line-height: 1.4 !important;
    }

    .hero-badge-bottom {
        bottom: 80px !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 480px) {
    .badge-text-bottom {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE UI OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {

    /* General mobile improvements */
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.6rem !important;
        margin-bottom: 25px;
    }

    /* Navigation */
    .navbar {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.3rem;
    }

    /* Hero section mobile */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .title-line-accent {
        font-size: 2.8rem !important;
    }

    .hero-subtitle {
        font-size: 1.2rem !important;
        margin: 15px 0 !important;
    }

    .hero-description {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .hero-cta {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 16px 20px !important;
        font-size: 1rem !important;
    }

    /* Benefit cards in hero */
    .hero-benefits {
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 30px;
    }

    .benefit-card {
        padding: 20px !important;
    }

    .benefit-amount {
        font-size: 1.8rem !important;
    }

    .benefit-label {
        font-size: 0.9rem !important;
    }

    /* Social benefits section */
    .benefits-list {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .benefit-item {
        flex: 1 1 100% !important;
        padding: 15px 18px !important;
    }

    .benefit-text {
        font-size: 0.95rem !important;
    }

    /* Housing section */
    .housing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .housing-card {
        padding: 25px 20px !important;
    }

    .housing-title {
        font-size: 1.1rem !important;
    }

    /* Steps section */
    .steps-container {
        flex-direction: column !important;
    }

    .step {
        padding: 20px !important;
    }

    .step-number {
        font-size: 2rem !important;
    }

    /* News carousel mobile */
    .news-carousel-wrapper {
        padding: 0 35px !important;
    }

    .news-nav-btn {
        width: 32px !important;
        height: 32px !important;
    }

    .news-card {
        min-width: 100% !important;
    }

    .news-card-title {
        font-size: 1rem !important;
    }

    .news-card-preview {
        font-size: 0.85rem !important;
        -webkit-line-clamp: 2 !important;
    }

    /* Video section mobile */
    .video-section {
        padding: 40px 0 !important;
    }

    .video-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
    }

    .video-carousel-wrapper {
        padding: 20px 35px !important;
    }

    .video-track .video-card .video-info {
        padding: 15px 5px 0 !important;
    }

    .video-track .video-card .video-title {
        font-size: 0.95rem !important;
    }

    .video-track .video-card .video-play-btn {
        width: 55px !important;
        height: 55px !important;
    }

    .video-track .video-card .video-play-btn svg {
        width: 24px !important;
        height: 24px !important;
    }

    /* Contact section */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .contact-card {
        padding: 25px 20px !important;
    }

    /* Footer */
    footer {
        padding: 30px 15px !important;
    }

    /* Floating CTA button */
    .floating-cta {
        bottom: 15px !important;
        right: 15px !important;
    }

    .floating-cta .btn {
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
    }

    /* Dots navigation bigger for touch */
    .news-dot,
    .video-dot {
        width: 14px !important;
        height: 14px !important;
    }

    /* Modal improvements */
    .video-modal-content {
        width: 95% !important;
        max-height: 50vh !important;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.7rem !important;
    }

    .title-line-accent {
        font-size: 2.3rem !important;
    }

    .benefit-amount {
        font-size: 1.5rem !important;
    }

    .badge-text-bottom {
        font-size: 0.85rem !important;
    }
}

/* Safe area for notch phones */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar {
        padding-top: calc(10px + env(safe-area-inset-top));
    }

    footer {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* Hero benefits cards centered on mobile */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-benefits {
        width: 100%;
        align-items: center !important;
    }

    .benefit-card {
        width: 100% !important;
        max-width: 350px;
        text-align: center;
    }

    .hero-cta {
        align-items: center;
        width: 100%;
    }

    .hero-cta .btn {
        max-width: 350px;
    }

    .hero-wrapper {
        align-items: center !important;
        text-align: center;
    }
}

/* Steps Section - Beautiful Drop Animation */
.steps-section {
    padding: 80px 0;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #1252da, #0a3d9e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 40px rgba(18, 82, 218, 0.5),
        inset 0 3px 15px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(18, 82, 218, 0.3);
    animation: stepPulse 3s ease-in-out infinite;
}

.step:nth-child(2) .step-number {
    animation-delay: 1s;
}

.step:nth-child(3) .step-number {
    animation-delay: 2s;
}

@keyframes stepPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(18, 82, 218, 0.5),
            inset 0 3px 15px rgba(255, 255, 255, 0.2),
            0 0 60px rgba(18, 82, 218, 0.3);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 15px 50px rgba(18, 82, 218, 0.7),
            inset 0 3px 20px rgba(255, 255, 255, 0.3),
            0 0 80px rgba(18, 82, 218, 0.5);
    }
}

/* Connecting line with flowing drop animation */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: calc(50% + 50px);
    width: calc(100% - 100px);
    height: 4px;
    background: linear-gradient(90deg,
            rgba(18, 82, 218, 0.3) 0%,
            rgba(18, 82, 218, 0.6) 50%,
            rgba(18, 82, 218, 0.3) 100%);
    border-radius: 2px;
    z-index: 1;
}

/* Flowing drop animation */
.step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 64px;
    left: calc(50% + 50px);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle,
            rgba(18, 82, 218, 1) 0%,
            rgba(18, 82, 218, 0.8) 40%,
            rgba(18, 82, 218, 0) 70%);
    border-radius: 50%;
    z-index: 3;
    animation: flowDrop 3s ease-in-out infinite;
    filter: blur(2px);
}

.step:nth-child(2)::before {
    animation-delay: 0.3s;
}

@keyframes flowDrop {
    0% {
        left: calc(50% + 40px);
        opacity: 0;
        transform: scale(0.5);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    90% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        left: calc(50% + 100% - 60px);
        opacity: 0;
        transform: scale(0.5);
    }
}

.step-content {
    max-width: 250px;
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.step-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Mobile steps */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 0;
    }

    .step {
        flex-direction: row;
        text-align: left;
        padding: 20px 15px;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .step:not(:last-child)::after {
        top: auto;
        bottom: -10px;
        left: 37px;
        width: 4px;
        height: 40px;
        background: linear-gradient(180deg,
                rgba(18, 82, 218, 0.6) 0%,
                rgba(18, 82, 218, 0.3) 100%);
    }

    .step:not(:last-child)::before {
        top: auto;
        bottom: -15px;
        left: 30px;
        animation: flowDropMobile 3s ease-in-out infinite;
    }

    @keyframes flowDropMobile {
        0% {
            bottom: 0px;
            opacity: 0;
            transform: scale(0.5);
        }

        10% {
            opacity: 1;
            transform: scale(1);
        }

        90% {
            opacity: 1;
            transform: scale(1);
        }

        100% {
            bottom: -35px;
            opacity: 0;
            transform: scale(0.5);
        }
    }

    .step-content {
        max-width: none;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-text {
        font-size: 0.9rem;
    }
}

/* Steps - Line flowing like water between circles */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: calc(50% + 45px);
    width: calc(100% - 90px);
    height: 6px;
    background: linear-gradient(90deg,
            rgba(18, 82, 218, 0.15) 0%,
            rgba(18, 82, 218, 0.15) 100%);
    border-radius: 3px;
    z-index: 1;
    overflow: hidden;
}

/* Water flow effect */
.step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 68px;
    left: calc(50% + 45px);
    width: 0%;
    height: 10px;
    background: linear-gradient(90deg,
            rgba(18, 82, 218, 0) 0%,
            rgba(30, 100, 255, 0.9) 20%,
            rgba(60, 140, 255, 1) 50%,
            rgba(30, 100, 255, 0.9) 80%,
            rgba(18, 82, 218, 0) 100%);
    border-radius: 5px;
    z-index: 2;
    animation: waterFlow 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 82, 218, 0.8), 0 0 40px rgba(18, 82, 218, 0.4);
}

.step:nth-child(2)::before {
    animation-delay: 1.25s;
}

@keyframes waterFlow {
    0% {
        left: calc(50% + 40px);
        width: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    50% {
        width: 40%;
    }

    95% {
        opacity: 1;
    }

    100% {
        left: calc(50% + 100% - 80px);
        width: 0%;
        opacity: 0;
    }
}

/* Circle glow when water arrives */
.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: transparent;
    z-index: -1;
    animation: circleReceive 2.5s ease-in-out infinite;
}

.step:nth-child(2) .step-number::after {
    animation-delay: 1.25s;
}

.step:nth-child(3) .step-number::after {
    animation-delay: 2.5s;
}

@keyframes circleReceive {

    0%,
    80% {
        box-shadow: 0 0 0 rgba(60, 140, 255, 0);
    }

    90%,
    100% {
        box-shadow: 0 0 30px rgba(60, 140, 255, 0.8), 0 0 60px rgba(18, 82, 218, 0.5);
    }
}

/* Mobile water flow */
@media (max-width: 768px) {
    .step:not(:last-child)::after {
        top: auto;
        bottom: -5px;
        left: 42px;
        width: 6px;
        height: 30px;
    }

    .step:not(:last-child)::before {
        top: auto;
        bottom: -5px;
        left: 38px;
        width: 14px;
        height: 0%;
        animation: waterFlowMobile 2.5s ease-in-out infinite;
    }

    @keyframes waterFlowMobile {
        0% {
            bottom: -5px;
            height: 0%;
            opacity: 0;
        }

        5% {
            opacity: 1;
        }

        50% {
            height: 20px;
        }

        95% {
            opacity: 1;
        }

        100% {
            bottom: -30px;
            height: 0%;
            opacity: 0;
        }
    }
}

/* Steps - Remove lines, only pulsing circles */
.step:not(:last-child)::after,
.step:not(:last-child)::before {
    display: none !important;
}

.step-number::after {
    display: none !important;
}

/* Sequential pulsing circles */
.step-number {
    animation: sequentialPulse 3s ease-in-out infinite !important;
}

.step:nth-child(1) .step-number {
    animation-delay: 0s !important;
}

.step:nth-child(2) .step-number {
    animation-delay: 1s !important;
}

.step:nth-child(3) .step-number {
    animation-delay: 2s !important;
}

@keyframes sequentialPulse {

    0%,
    20% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(18, 82, 218, 0.4);
    }

    10% {
        transform: scale(1.15);
        box-shadow: 0 15px 50px rgba(18, 82, 218, 0.8), 0 0 80px rgba(60, 140, 255, 0.5);
    }

    30%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(18, 82, 218, 0.4);
    }
}

/* Force remove ALL lines from steps */
.steps-container::before,
.steps-container::after,
.step::before,
.step::after,
.step *::before,
.step *::after {
    display: none !important;
    content: none !important;
    background: none !important;
    border: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.step-number::before,
.step-number::after {
    display: none !important;
}

/* REMOVE Desktop Timeline Lines on .steps */
.steps::before,
.steps::after {
    display: none !important;
    content: none !important;
    border: none !important;
    background: none !important;
}

/* Unified Alignment and Sizing for Hero Blocks on Mobile */
@media (max-width: 768px) {

    /* Container Alignment */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center children horizontally */
        width: 100%;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        /* Limit container width */
        margin: 0 auto;
        /* Center container */
        gap: 15px;
    }

    .hero-benefits {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        /* Same limit as CTA */
        margin: 20px auto 0;
        gap: 15px;
    }

    /* Element Sizing - Strict Equality */
    .hero-cta .btn,
    .hero-cta .hero-phone,
    .hero-benefits .benefit-card {
        width: 100% !important;
        max-width: 100% !important;
        /* Fill the 400px container */
        min-width: 0 !important;
        /* Prevent overflow */
        box-sizing: border-box;
        margin: 0 !important;
    }

    /* Visual Alignment fixes */
    .benefit-card {
        text-align: center;
        padding: 20px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* FINAL HERO MOBILE ALIGNMENT FIX */
@media (max-width: 768px) {
    .hero-wrapper {
        align-items: center !important;
        /* Critical: Center all flex children */
    }

    .hero-content {
        text-align: center !important;
        align-items: center !important;
        display: flex;
        flex-direction: column;
    }

    .hero-title,
    .hero-subtitle,
    .hero-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Standardized Container for Buttons and Cards */
    .hero-cta,
    .hero-benefits {
        width: 100% !important;
        max-width: 360px !important;
        /* Fixed width for perfect alignment */
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center !important;
    }

    /* Full width children */
    .hero-cta .btn,
    .hero-cta .hero-phone,
    .hero-benefits .benefit-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
}

/* CRITICAL MOBILE HERO CENTERING - Maximum specificity */
@media (max-width: 768px) {

    .hero .container,
    .hero .hero-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    .hero-content,
    .hero-cta,
    .hero-benefits {
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .hero-cta .btn,
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary,
    .hero-cta .hero-phone,
    .hero-benefits .benefit-card,
    .hero-benefits .benefit-card.highlight {
        width: 100% !important;
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    .benefit-card.highlight {
        min-width: unset !important;
    }
}

/* =========================================
   New Sections: Vacancies & Premiums
   ========================================= */

/* Ticker Styles */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 40px;
    background-color: var(--color-accent);
    /* Blue accent from site */
    padding-left: 100%;
    /* Start off-screen */
    box-sizing: content-box;
    display: flex;
    align-items: center;
}

.ticker-yellow {
    background-color: #FFC107 !important;
    /* Yellow for money/premiums */
    color: #000;
}

.ticker-yellow .ticker__item {
    color: #000;
    font-weight: 800;
}

.ticker {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    animation: ticker 30s linear infinite;
}

.ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.2rem;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Vacancies Section */
.vacancies-section {
    padding-top: 40px;
    padding-bottom: 80px;
    background: var(--color-bg-dark);
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.vacancy-card {
    background: #252525;
    /* Slightly lighter than bg-dark */
    border: 1px solid #333;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    /* Tactical cut corner */
}

/* Full width for specific cards */
.vacancy-card.full-width {
    grid-column: span 2;
}

.vacancy-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vacancy-card:hover .vacancy-icon-large {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.3;
    color: var(--color-accent);
}

.vacancy-info {
    position: relative;
    z-index: 2;
    max-width: 70%;
}

.vacancy-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.1;
}

.vacancy-price {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    /* Slight rounded for tag feel */
}

.vacancy-price-small {
    font-size: 1.1rem;
    color: #aaa;
}

.accent-text {
    color: var(--color-accent);
    /* Blue usually, or Yellow if preferred for money */
    font-weight: 900;
}

.vacancy-icon-large {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 180px;
    height: 180px;
    opacity: 0.1;
    color: #fff;
    transition: all 0.5s ease;
    z-index: 1;
}

.fine-print {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premiums Section */
.premiums-section {
    padding-top: 40px;
    padding-bottom: 80px;
    background: #2a3b2a;
    /* Dark Green tactical hint */
    background: linear-gradient(180deg, #1a1a1a 0%, #222d22 100%);
    border-top: 4px solid #FFC107;
    /* Matches yellow ticker */
}

.premiums-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    /* Align bottom so different sizes stand up */
    gap: 20px;
    margin-top: 60px;
}

.premium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 160px;
}

.featured-premium {
    width: 220px;
    z-index: 2;
}

.premium-badge-price {
    background: #FFC107;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    padding: 5px 10px;
    font-size: 1.2rem;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    transform: skewX(-10deg);
}

.featured-premium .premium-badge-price {
    font-size: 1.5rem;
    padding: 8px 15px;
    background: #FFA000;
    /* Darker orange/gold */
}

.premium-scope {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    backdrop-filter: blur(2px);
    transition: transform 0.3s ease;
}

.featured-premium .premium-scope {
    width: 200px;
    height: 200px;
    border-color: rgba(244, 67, 54, 0.5);
    /* Red threat level */
    background: rgba(40, 0, 0, 0.3);
}

.premium-item:hover .premium-scope {
    transform: scale(1.05);
    border-color: #FFC107;
}

.scope-crosshair {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: scopeRotate 20s linear infinite;
}

@keyframes scopeRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.premium-icon {
    width: 60%;
    height: 60%;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-sublabel {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: -10px;
    text-shadow: 0 2px 4px #000;
}

.premium-label-bottom {
    margin-top: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #FFC107;
    display: none;
    /* Hidden as requested in design usually prices are top tags */
}

/* Responsive */
@media (max-width: 992px) {
    .vacancies-grid {
        grid-template-columns: 1fr;
    }

    .vacancy-card.full-width {
        grid-column: span 1;
    }

    .premiums-grid {
        gap: 40px;
    }
}

/* =========================================
   Application Modal & Floating Button
   ========================================= */

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.floating-btn,
.floating-btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.floating-btn {
    background: #4CAF50;
    /* Green for call */
}

.floating-btn-apply {
    background: var(--color-accent);
    /* Blue for apply */
}

.floating-btn:hover,
.floating-btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.floating-icon {
    width: 24px;
    height: 24px;
}

.floating-text {
    white-space: nowrap;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    /* Hidden by default via JS toggling display or visibility */
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #222;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    border: 1px solid var(--color-accent);
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--color-accent);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.modal-header p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Form Styles */
.application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group label {
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 500;
}

.application-form input[type="text"],
.application-form input[type="tel"],
.application-form select,
.application-form textarea {
    background: #333;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 12px 15px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #3a3a3a;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    background: #333;
    padding: 15px;
    border-radius: 6px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
}

.form-consent {
    font-size: 0.8rem;
    color: #888;
}

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

    /* Floating Buttons Mobile - Show Text */
    .floating-cta {
        bottom: 20px;
        right: 15px;
        left: 15px;
        /* Span full widthish */
        display: flex;
        justify-content: flex-end;
        /* Or space-between? */
        gap: 10px;
    }

    .floating-btn,
    .floating-btn-apply {
        padding: 10px 16px;
        border-radius: 8px;
        /* Square with rounded corners */
        width: auto;
        height: auto;
        display: inline-flex;
        flex: 1;
        /* Distribute space */
        justify-content: center;
        align-items: center;
        font-size: 0.85rem;
        /* Smaller font for mobile */
        white-space: nowrap;
    }

    .floating-icon svg {
        width: 18px;
        /* Smaller icon */
        height: 18px;
        margin-right: 6px;
    }

    .floating-text {
        display: inline-block;
        /* Show text */
    }
}

/* Image styling updates for premiums */
.premium-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}

.premium-scope.scope-large .premium-icon img {
    max-width: 90%;
    max-height: 90%;
}

/* =========================================
   UI Polish: Floating Buttons & Modal
   ========================================= */

/* --- Floating Buttons --- */
.floating-cta {
    gap: 12px;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.floating-btn,
.floating-btn-apply {
    border-radius: 8px;
    /* MORE TACTICAL: SQUARED CORNERS */
    padding: 16px 28px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Apply Label (Primary) */
/* Premium Floating Apply Button */
.floating-btn-apply {
    background: linear-gradient(135deg, #1252DA 0%, #0a3a9c 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(18, 82, 218, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.floating-btn-apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E66FF 0%, #1252DA 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.floating-btn-apply:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(18, 82, 218, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.floating-btn-apply:hover::before {
    opacity: 1;
}

/* Call Button (Secondary/Green) */
.floating-btn {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    border-color: #4caf50;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
    /* Green glow */
}

.floating-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- Modal Polish --- */
.modal-overlay {
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.7);
}

.modal-container {
    background: #121212;
    /* Deep dark */
    border: 1px solid #333;
    border-top: 4px solid var(--color-accent);
    /* Top accent line */
    border-radius: 4px;
    /* Tactical square-ish */
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    max-width: 650px;
}

.modal-header h3 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-header p {
    font-family: 'Roboto', sans-serif;
    color: #888;
}

.modal-close {
    top: 20px;
    right: 25px;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}

.modal-close:hover {
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
    color: var(--color-accent);
}

/* Form Inputs */
.application-form input[type="text"],
.application-form input[type="tel"],
.application-form select,
.application-form textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 14px 18px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    background: #202020;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(18, 82, 218, 0.2);
}

.application-form label {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #aaa;
    margin-bottom: 4px;
}

/* Custom Checkboxes */
.checkbox-grid {
    background: transparent;
    border: 1px solid #333;
    padding: 20px;
}

/* Submit Button */
.btn-block {
    background: var(--color-accent);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
    padding: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-top: 20px;
}

.btn-block:hover {
    background: #fff;
    color: var(--color-accent);
    box-shadow: 0 0 30px rgba(18, 82, 218, 0.6);
}

.btn-block:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn,
    .floating-btn-apply {
        padding: 14px;
        border-radius: 50px;
        /* Round on mobile usually looks better or stick to square? let's stick to square logic for consistency, maybe slightly rounder */
        border-radius: 12px;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .floating-text {
        display: none;
    }

    .floating-icon svg {
        width: 24px;
        height: 24px;
    }

    .modal-container {
        padding: 25px;
        margin: 10px;
    }
}

/* Increase contrast and size for premium icons */
.premium-icon {
    width: 80%;
    /* Increased from 60% */
    height: 80%;
    /* Increased from 60% */
}

/* Specific adjustment for the jet since it has a scope-large container */
.premium-scope.scope-large .premium-icon {
    width: 60%;
    height: 60%;
}

.premium-icon img {
    /* Boost brightness and contrast for better visibility on dark bg */
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) brightness(1.2) contrast(1.2);
    transform: scale(1.1);
    /* Slight zoom */
}

/* Update other vacancy icons to use images if available or just styling */
/* The user asked to "improve icons" for the remaining blocks. 
   Since we don't have new source images for Driver, Builder, Security specifically,
   we will enhance the existing SVGs with better effects to match the "Premiums" look 
   or try to reuse some tech icons if they fit, but likely SVGs need polish.
*/

.vacancy-icon-large svg {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.vacancy-card:hover .vacancy-icon-large svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(18, 82, 218, 0.8));
    /* Accent glow */
    color: var(--color-accent);
    /* Make sure current color respects this or use fill */
    fill: var(--color-accent);
}

.vacancy-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #1a1a1a, #222);
}

.vacancy-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* =========================================
   UI Enhancements: Checkboxes & Icons
   ========================================= */

/* --- Custom Checkboxes & Radios --- */
.checkbox-grid,
.radio-group {
    display: flex;
    /* Adjust layout if needed */
    flex-direction: column;
    gap: 12px;
}

.checkbox-label,
.radio-group label {
    position: relative;
    padding-left: 35px;
    /* Space for custom box */
    cursor: pointer;
    user-select: none;
    font-size: 1rem;
    color: #e0e0e0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

/* Hide default input */
.checkbox-label input,
.radio-group input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create custom box/circle */
.checkbox-label input~span.checkmark,
.checkbox-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    background-color: #2b2b2b;
    border: 2px solid #555;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

/* Radio circle */
.radio-group label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    background-color: #2b2b2b;
    border: 2px solid #555;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

/* Hover state */
.checkbox-label:hover input~span.checkmark,
.checkbox-label:hover::before,
.radio-group label:hover::before {
    border-color: #aaa;
    background-color: #333;
}

/* Checked state - Box */
.checkbox-label input:checked~span.checkmark,
.checkbox-label input:checked::before,
.radio-group input:checked+ ::before,
/* If we used spans */
.radio-group label input:checked::before

/* Current structure */
    {
    background-color: var(--color-accent);
    /* Blue/Accent */
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(18, 82, 218, 0.4);
}

/* Checkmark Indicator (::after) */
.checkbox-label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg) scale(0);
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 0;
}

.radio-group label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 0;
}

/* Show checkmark when checked */
.checkbox-label input:checked::after,
.radio-group label input:checked::after {
    transform: translateY(-60%) rotate(45deg) scale(1);
    /* Slight adjust for v-align */
    opacity: 1;
}

.radio-group label input:checked::after {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* --- Floating Button Icons Polish --- */
.floating-btn-apply svg,
.floating-btn svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn-apply:hover svg,
.floating-btn:hover svg {
    transform: scale(1.2) rotate(-5deg);
}

/* Specific icon colors if needed */
.floating-btn-apply svg path {
    fill: #fff;
}

.floating-btn svg path {
    fill: #fff;
}

/* =========================================
   REPAIR: Floating Buttons Styles
   ========================================= */

.floating-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.floating-btn,
.floating-btn-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 8px;
    /* Squared tactical look */
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Apply Button (Blue Accent) */
.floating-btn-apply {
    background: linear-gradient(135deg, #1252DA 0%, #0d3a9e 100%);
    border-color: #1252DA;
}

.floating-btn-apply:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(18, 82, 218, 0.5);
    background: linear-gradient(135deg, #1a60ff 0%, #1252DA 100%);
}

/* Call Button (Green) */
.floating-btn {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    border-color: #4caf50;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
}

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.floating-text {
    white-space: nowrap;
}

/* Mobile Responsiveness for Buttons */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn,
    .floating-btn-apply {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 12px;
    }

    .floating-text {
        display: none;
    }

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

/* BPLA Page Styles */
.bpla-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.bg-drone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.drone-dark {
    z-index: 1;
}

.drone-light {
    z-index: 2;
    opacity: 0;
    animation: lightUp 4s ease-in-out infinite alternate;
}

@keyframes lightUp {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* ===== CHTO-DELAT (What to do) PAGE STYLES ===== */

/* Page Hero Section */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d1a2e 100%);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(18, 82, 218, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(18, 82, 218, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--color-bg-dark), transparent);
    pointer-events: none;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.breadcrumb a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-separator {
    color: var(--color-border);
}

.breadcrumb-current {
    color: var(--color-accent);
    font-weight: 500;
}

.page-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content Area */
.chto-delat-content {
    padding: 60px 0 80px;
    background: var(--color-bg-dark);
    position: relative;
}

/* Intro Section */
.chto-intro {
    margin-bottom: 60px;
}

.chto-intro-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid rgba(18, 82, 218, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.chto-intro-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #0a3a9c);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(18, 82, 218, 0.4);
}

.chto-intro-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.chto-intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Timeline Steps */
.chto-timeline {
    position: relative;
}

.chto-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.chto-step:nth-child(1) {
    animation-delay: 0.1s;
}

.chto-step:nth-child(2) {
    animation-delay: 0.2s;
}

.chto-step:nth-child(3) {
    animation-delay: 0.3s;
}

.chto-step:nth-child(4) {
    animation-delay: 0.4s;
}

.chto-step:last-child {
    margin-bottom: 0;
}

/* Step Marker (Number + Line) */
.chto-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.chto-step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent) 0%, #0a3a9c 100%);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(18, 82, 218, 0.5), 0 0 0 4px rgba(18, 82, 218, 0.2);
    position: relative;
    z-index: 2;
}

.chto-step-line {
    width: 3px;
    flex: 1;
    min-height: 100px;
    background: linear-gradient(to bottom, var(--color-accent), rgba(18, 82, 218, 0.2));
    margin-top: -5px;
    position: relative;
}

.chto-step-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-accent) 50%, transparent 100%);
    animation: pulseLine 2s ease-in-out infinite;
}

.chto-step-line-last {
    background: transparent;
}

.chto-step-line-last::after {
    display: none;
}

@keyframes pulseLine {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Step Content */
.chto-step-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
}

.chto-step-content:hover {
    border-color: rgba(18, 82, 218, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(18, 82, 218, 0.1);
    transform: translateY(-5px);
}

.chto-step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.chto-step-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 82, 218, 0.15);
    border: 1px solid rgba(18, 82, 218, 0.3);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.chto-step-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-accent);
    transition: transform 0.3s ease;
}

.chto-step-content:hover .chto-step-icon {
    background: rgba(18, 82, 218, 0.25);
    box-shadow: 0 5px 20px rgba(18, 82, 218, 0.3);
}

.chto-step-content:hover .chto-step-icon svg {
    transform: scale(1.1);
}

.chto-step-icon-success {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.chto-step-icon-success svg {
    fill: #4caf50;
}

.chto-step-content:hover .chto-step-icon-success {
    background: rgba(76, 175, 80, 0.25);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.chto-step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.chto-step-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
}

.chto-step-body {
    color: var(--color-text-secondary);
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.document-card:hover {
    background: rgba(18, 82, 218, 0.1);
    border-color: rgba(18, 82, 218, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.document-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(18, 82, 218, 0.2), rgba(18, 82, 218, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
}

.document-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-accent);
}

.document-card span {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

/* Note Box */
.chto-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    margin-top: 25px;
}

.chto-note-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chto-note-icon svg {
    width: 28px;
    height: 28px;
    fill: #FFC107;
}

.chto-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* Apply Options */
.apply-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.apply-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 25px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.apply-option:hover {
    background: rgba(18, 82, 218, 0.08);
    border-color: rgba(18, 82, 218, 0.25);
    transform: translateX(10px);
}

.apply-option-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #0a3a9c);
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(18, 82, 218, 0.3);
}

.apply-option-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.apply-option-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.apply-option-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

/* Highlight Box (Payment Info) */
.chto-highlight-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(18, 82, 218, 0.15), rgba(18, 82, 218, 0.05));
    border: 2px solid rgba(18, 82, 218, 0.4);
    border-radius: 16px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.chto-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(18, 82, 218, 0.1) 0%, transparent 60%);
    animation: highlightPulse 4s ease-in-out infinite;
}

@keyframes highlightPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.chto-highlight-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #0a3a9c);
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 5px 25px rgba(18, 82, 218, 0.4);
    position: relative;
    z-index: 1;
}

.chto-highlight-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.chto-highlight-content {
    position: relative;
    z-index: 1;
}

.chto-highlight-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.chto-highlight-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-accent);
    text-shadow: 0 0 30px rgba(18, 82, 218, 0.5);
    margin-bottom: 5px;
}

.chto-highlight-content span {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

/* Medical Stages */
.medical-stages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.medical-stage {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.medical-stage:hover {
    background: rgba(18, 82, 218, 0.08);
    border-color: rgba(18, 82, 218, 0.2);
    transform: translateX(5px);
}

.medical-stage-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.6;
    min-width: 40px;
}

.medical-stage-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.medical-stage-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Gear Section */
.chto-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 30px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gear-category {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.gear-category:hover {
    background: rgba(18, 82, 218, 0.05);
    border-color: rgba(18, 82, 218, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gear-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gear-category-header svg {
    width: 30px;
    height: 30px;
    fill: var(--color-accent);
}

.gear-category-header h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gear-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gear-list li {
    position: relative;
    padding: 8px 0 8px 25px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gear-list li:last-child {
    border-bottom: none;
}

.gear-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* CTA Section */
.chto-cta {
    margin-top: 80px;
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(18, 82, 218, 0.15), rgba(18, 82, 218, 0.05));
    border: 1px solid rgba(18, 82, 218, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.chto-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(18, 82, 218, 0.2), transparent 70%);
    pointer-events: none;
}

.chto-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.chto-cta-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
}

.chto-cta-text p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 35px;
}

.chto-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.chto-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.chto-cta-actions .btn svg {
    flex-shrink: 0;
}

/* Responsive Styles for Chto-Delat Page */
@media (max-width: 992px) {
    .page-hero {
        padding: 130px 0 60px;
    }

    .chto-step {
        gap: 20px;
    }

    .chto-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .chto-step-content {
        padding: 25px 30px;
    }

    .chto-step-title {
        font-size: 1.5rem;
    }

    .chto-highlight-value {
        font-size: 2.2rem;
    }

    .gear-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .chto-intro-card {
        flex-direction: column;
        text-align: center;
    }

    .chto-step {
        flex-direction: column;
        gap: 0;
    }

    .chto-step-marker {
        flex-direction: row;
        margin-bottom: 20px;
    }

    .chto-step-line {
        width: 0;
        height: 0;
        display: none;
    }

    .chto-step-content {
        padding: 25px;
    }

    .chto-step-header {
        flex-direction: column;
        text-align: center;
    }

    .chto-step-title {
        font-size: 1.4rem;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .document-card {
        padding: 15px 18px;
    }

    .apply-option {
        flex-direction: column;
        text-align: center;
    }

    .apply-option:hover {
        transform: translateY(-5px);
    }

    .chto-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .chto-highlight-value {
        font-size: 2rem;
    }

    .medical-stage {
        flex-direction: column;
        text-align: center;
    }

    .medical-stage:hover {
        transform: translateY(-3px);
    }

    .gear-grid {
        grid-template-columns: 1fr;
    }

    .chto-cta {
        margin-top: 50px;
        padding: 40px 25px;
        border-radius: 16px;
    }

    .chto-cta-text h2 {
        font-size: 1.8rem;
    }

    .chto-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .chto-cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== RESTRICTIONS (Ограничения) PAGE STYLES ===== */

/* Hero Pattern Override */
.restrictions-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #1a0a0a 100%);
}

.restrictions-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(244, 67, 54, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(18, 82, 218, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Main Content */
.restrictions-content {
    padding: 60px 0 80px;
    background: var(--color-bg-dark);
}

/* Intro Section */
.restrictions-intro {
    margin-bottom: 50px;
}

.restrictions-intro-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid rgba(244, 67, 54, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.restrictions-intro-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f44336, #c62828);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
}

.restrictions-intro-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.restrictions-intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Categories Section */
.restrictions-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Category Card Base */
.restriction-category {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.restriction-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--category-color, var(--color-accent)), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restriction-category:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.restriction-category:hover::before {
    opacity: 1;
}

/* Category Colors */
.restriction-category.medical {
    --category-color: #f44336;
}

.restriction-category.age {
    --category-color: #ff9800;
}

.restriction-category.legal {
    --category-color: #9c27b0;
}

/* Category Header */
.restriction-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.restriction-category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f44336, #c62828);
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(244, 67, 54, 0.4);
    transition: all 0.3s ease;
}

.restriction-category-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.restriction-category:hover .restriction-category-icon {
    transform: scale(1.1);
}

.restriction-category-icon.age-icon {
    background: linear-gradient(135deg, #ff9800, #e65100);
    box-shadow: 0 5px 25px rgba(255, 152, 0, 0.4);
}

.restriction-category-icon.legal-icon {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    box-shadow: 0 5px 25px rgba(156, 39, 176, 0.4);
}

.restriction-category-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.restriction-category-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
}

/* Alert Box */
.restriction-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15), rgba(244, 67, 54, 0.05));
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 12px;
    margin-bottom: 25px;
}

.restriction-alert-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 67, 54, 0.2);
    border-radius: 50%;
}

.restriction-alert-icon svg {
    width: 24px;
    height: 24px;
    fill: #f44336;
}

.restriction-alert span {
    font-size: 1rem;
    color: var(--color-text);
}

.restriction-alert strong {
    color: #f44336;
}

/* Restriction Items List */
.restriction-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.restriction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.restriction-item:hover {
    background: rgba(244, 67, 54, 0.08);
    border-color: rgba(244, 67, 54, 0.2);
    transform: translateX(5px);
}

.restriction-item-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 67, 54, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.restriction-item-icon svg {
    width: 20px;
    height: 20px;
    fill: #f44336;
}

.restriction-item span {
    font-size: 0.95rem;
    color: var(--color-text);
}

/* Note Box */
.restriction-note {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--category-color, var(--color-accent));
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}

.restriction-note p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.restriction-note strong {
    color: var(--color-text);
}

.legal-note {
    border-left-color: #9c27b0;
}

/* Fitness Categories */
.fitness-categories {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 25px 30px;
}

.fitness-categories h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.fitness-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.fitness-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fitness-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.fitness-letter {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
}

.fitness-a .fitness-letter {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.fitness-b .fitness-letter {
    background: linear-gradient(135deg, #8bc34a, #558b2f);
}

.fitness-v .fitness-letter {
    background: linear-gradient(135deg, #ff9800, #e65100);
}

.fitness-g .fitness-letter {
    background: linear-gradient(135deg, #ff5722, #d84315);
}

.fitness-d .fitness-letter {
    background: linear-gradient(135deg, #f44336, #c62828);
}

.fitness-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    max-width: 150px;
}

/* Age Range Visual */
.age-range-visual {
    margin: 30px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    text-align: center;
}

.age-range-bar {
    position: relative;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 80px 25px;
    overflow: visible;
}

.age-range-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #ff9800, #4caf50, #ff9800);
    border-radius: 10px;
    animation: ageRangePulse 3s ease-in-out infinite;
}

@keyframes ageRangePulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.age-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.age-marker-min {
    left: -60px;
}

.age-marker-max {
    right: -60px;
}

.age-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff9800;
    line-height: 1;
}

.age-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-transform: lowercase;
}

.age-range-note {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-top: 10px;
}

/* Info Box */
.restriction-info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.03));
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 12px;
}

.restriction-info-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restriction-info-icon svg {
    width: 28px;
    height: 28px;
    fill: #ff9800;
}

.restriction-info-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.restriction-info-box strong {
    color: #ff9800;
}

/* Legal Crimes Grid */
.legal-crimes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.legal-crime-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 22px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(156, 39, 176, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.legal-crime-item:hover {
    background: rgba(156, 39, 176, 0.08);
    border-color: rgba(156, 39, 176, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.legal-crime-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
}

.legal-crime-icon svg {
    width: 22px;
    height: 22px;
    fill: #9c27b0;
}

.legal-crime-item span {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* CTA Section */
.restrictions-cta {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(18, 82, 218, 0.15), rgba(18, 82, 218, 0.05));
    border: 1px solid rgba(18, 82, 218, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.restrictions-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(18, 82, 218, 0.2), transparent 70%);
    pointer-events: none;
}

.restrictions-cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.restrictions-cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #0a3a9c);
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(18, 82, 218, 0.4);
}

.restrictions-cta-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.restrictions-cta-text {
    flex: 1;
}

.restrictions-cta-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #fff;
}

.restrictions-cta-text p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.restrictions-cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.restrictions-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Styles for Restrictions Page */
@media (max-width: 992px) {
    .restriction-category {
        padding: 30px;
    }

    .restriction-category-title {
        font-size: 1.5rem;
    }

    .fitness-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .fitness-desc {
        max-width: none;
    }

    .restrictions-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .restrictions-cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .restrictions-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .restrictions-intro-card {
        flex-direction: column;
        text-align: center;
    }

    .restriction-category {
        padding: 25px;
    }

    .restriction-category-header {
        flex-direction: column;
        text-align: center;
    }

    .restriction-category-title {
        font-size: 1.3rem;
    }

    .restriction-list-grid {
        grid-template-columns: 1fr;
    }

    .restriction-item:hover {
        transform: translateY(-3px);
    }

    .age-range-bar {
        margin: 0 50px 25px;
    }

    .age-marker-min {
        left: -40px;
    }

    .age-marker-max {
        right: -40px;
    }

    .age-value {
        font-size: 2rem;
    }

    .legal-crimes-grid {
        grid-template-columns: 1fr;
    }

    .restrictions-cta {
        padding: 30px 25px;
    }

    .restrictions-cta-text h2 {
        font-size: 1.4rem;
    }
}

/* ===== CONDITIONS (Условия) PAGE STYLES ===== */

/* Hero Pattern Override */
.conditions-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #0a1a0a 100%);
}

.conditions-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(76, 175, 80, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(18, 82, 218, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Main Content */
.conditions-content {
    padding: 60px 0 80px;
    background: var(--color-bg-dark);
}

/* Intro Section */
.conditions-intro {
    margin-bottom: 50px;
}

.conditions-intro-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.conditions-intro-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.conditions-intro-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.conditions-intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.conditions-intro-text a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.conditions-intro-text a:hover {
    text-decoration: underline;
}

/* Section Styles */
.conditions-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.section-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
    flex-shrink: 0;
}

.section-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.section-icon.documents-icon {
    background: linear-gradient(135deg, #ff9800, #e65100);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.4);
}

.section-icon.benefits-icon {
    background: linear-gradient(135deg, var(--color-accent), #0a3a9c);
    box-shadow: 0 5px 20px rgba(18, 82, 218, 0.4);
}

.section-icon.payments-icon {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.4);
}

.section-icon.compare-icon {
    background: linear-gradient(135deg, #607d8b, #455a64);
    box-shadow: 0 5px 20px rgba(96, 125, 139, 0.4);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
}

/* Procedure Steps */
.procedure-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.procedure-step {
    display: flex;
    gap: 25px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.procedure-step:hover {
    transform: translateX(10px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.procedure-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4caf50, #2e7d32);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.procedure-step:hover::before {
    opacity: 1;
}

.procedure-step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.procedure-step-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #fff;
}

.procedure-step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 152, 0, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: rgba(255, 152, 0, 0.08);
    border-color: rgba(255, 152, 0, 0.3);
    transform: translateY(-3px);
}

.document-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
}

.document-icon svg {
    width: 22px;
    height: 22px;
    fill: #ff9800;
}

.document-item span {
    font-size: 0.95rem;
    color: var(--color-text);
}

/* Conditions Note */
.conditions-note {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ff9800;
    border-radius: 0 8px 8px 0;
}

.conditions-note p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.benefit-card {
    padding: 30px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(18, 82, 218, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 82, 218, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #0a3a9c);
    border-radius: 16px;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(18, 82, 218, 0.4);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.benefit-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #fff;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
}

.benefit-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4caf50;
}

.benefit-highlight {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.benefit-link {
    display: inline-block;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.benefit-link:hover {
    color: #5a8fee;
}

/* Payments Grid */
.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.payment-item {
    padding: 25px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(156, 39, 176, 0.03));
    border: 1px solid rgba(156, 39, 176, 0.25);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-3px);
    border-color: rgba(156, 39, 176, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payment-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #9c27b0;
    margin-bottom: 8px;
}

.payment-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Comparison Table */
.comparison-table {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.comparison-row.comparison-header {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8), rgba(26, 26, 26, 0.9));
}

.comparison-row:not(.comparison-header) {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row:not(.comparison-header):hover {
    background: rgba(0, 0, 0, 0.3);
}

.comparison-cell {
    padding: 18px 20px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.comparison-cell.label {
    color: #fff;
    font-weight: 500;
}

.comparison-cell.contractor {
    text-align: center;
    color: #4caf50;
}

.comparison-cell.volunteer {
    text-align: center;
    color: #ff9800;
}

.comparison-header .comparison-cell {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.conditions-cta {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.conditions-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.2), transparent 70%);
    pointer-events: none;
}

.conditions-cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.conditions-cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.conditions-cta-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.conditions-cta-text {
    flex: 1;
}

.conditions-cta-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #fff;
}

.conditions-cta-text p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.conditions-cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.conditions-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Styles for Conditions Page */
@media (max-width: 992px) {
    .conditions-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .conditions-cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .conditions-cta-actions .btn {
        width: 100%;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        text-align: left !important;
        padding: 12px 20px;
    }

    .comparison-cell.label {
        background: rgba(255, 255, 255, 0.05);
    }

    .comparison-header .comparison-cell:first-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .conditions-intro-card {
        flex-direction: column;
        text-align: center;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .procedure-step {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .procedure-step:hover {
        transform: translateY(-5px);
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .payments-grid {
        grid-template-columns: 1fr;
    }

    .conditions-cta {
        padding: 30px 25px;
    }

    .conditions-cta-text h2 {
        font-size: 1.4rem;
    }
}

/* ===== PAYMENTS (Выплаты) PAGE STYLES ===== */

/* Hero Pattern Override */
.payments-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #1a1a0a 100%);
}

.payments-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255, 193, 7, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(76, 175, 80, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Main Content */
.payments-page-content {
    padding: 60px 0 80px;
    background: var(--color-bg-dark);
}

/* Intro Section */
.payments-intro {
    margin-bottom: 50px;
}

.payments-intro-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.payments-intro-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.payments-intro-icon svg {
    width: 30px;
    height: 30px;
    fill: #1a1a1a;
}

.payments-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Main Payment Section */
.main-payment-section {
    margin-bottom: 50px;
}

.main-payment-card {
    position: relative;
    padding: 50px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.03));
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 24px;
    overflow: hidden;
}

.main-payment-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15), transparent 60%);
    pointer-events: none;
}

.main-payment-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 20px;
}

.main-payment-content {
    position: relative;
    z-index: 1;
}

.main-payment-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
}

.main-payment-amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.main-payment-amount .amount-value {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #4caf50;
    line-height: 1;
    text-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
}

.main-payment-amount .amount-currency {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #4caf50;
}

.main-payment-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
}

.main-payment-breakdown {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    width: fit-content;
}

.breakdown-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.breakdown-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breakdown-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
}

.breakdown-divider {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #4caf50;
}

.main-payment-icon {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 50%;
    opacity: 0.5;
}

.main-payment-icon svg {
    width: 60px;
    height: 60px;
    fill: #4caf50;
}

/* Payment Types Section */
.payments-types-section {
    margin-bottom: 50px;
}

/* Payment Category */
.payment-category {
    margin-bottom: 40px;
}

.payment-category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon {
    font-size: 1.5rem;
}

/* Payment Cards Grid */
.payment-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.payment-card {
    padding: 25px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.payment-card-highlight {
    border-color: rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(26, 26, 26, 0.8));
}

.payment-card-highlight:hover {
    border-color: rgba(76, 175, 80, 0.5);
}

.payment-card-family {
    border-color: rgba(156, 39, 176, 0.3);
}

.payment-card-family:hover {
    border-color: rgba(156, 39, 176, 0.5);
}

.payment-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.payment-card-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 12px;
    flex-shrink: 0;
}

.payment-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #1a1a1a;
}

.payment-card-icon.injury-icon {
    background: linear-gradient(135deg, #f44336, #c62828);
}

.payment-card-icon.injury-icon svg {
    fill: #fff;
}

.payment-card-icon.warning-icon {
    background: linear-gradient(135deg, #ff9800, #e65100);
}

.payment-card-icon.warning-icon svg {
    fill: #fff;
}

.payment-card-icon.disability-icon {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.payment-card-icon.disability-icon svg {
    fill: #fff;
}

.payment-card-icon.unfit-icon {
    background: linear-gradient(135deg, #607d8b, #455a64);
}

.payment-card-icon.unfit-icon svg {
    fill: #fff;
}

.payment-card-icon.family-icon {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.payment-card-icon.family-icon svg {
    fill: #fff;
}

.payment-card-header h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.payment-card-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 10px;
}

.payment-card-note {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Monthly Payments Grid */
.monthly-payments-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.monthly-payment-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.monthly-payment-card:hover {
    transform: translateX(10px);
    border-color: rgba(18, 82, 218, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.monthly-payment-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #0a3a9c);
    border-radius: 14px;
    flex-shrink: 0;
}

.monthly-payment-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.monthly-payment-icon.combat-icon {
    background: linear-gradient(135deg, #f44336, #c62828);
}

.monthly-payment-icon.advance-icon {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.monthly-payment-content {
    flex: 1;
}

.monthly-payment-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 5px;
}

.monthly-payment-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.monthly-payment-amount {
    text-align: right;
}

.monthly-payment-amount .from {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: block;
}

.monthly-payment-amount .value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* Payment Note */
.payment-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
}

.payment-note-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.payment-note-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
}

.payment-note p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Family Benefits Section */
.family-benefits-section {
    margin-bottom: 50px;
}

.family-section-icon {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a) !important;
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.4) !important;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 25px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.5) 0%, rgba(26, 26, 26, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: rgba(156, 39, 176, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-item-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.1));
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-item-icon svg {
    width: 24px;
    height: 24px;
    fill: #9c27b0;
}

.benefit-item-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 6px;
}

.benefit-item-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* How to Get Section */
.how-to-get-section {
    margin-bottom: 50px;
}

.how-to-icon {
    background: linear-gradient(135deg, #00bcd4, #00838f) !important;
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.4) !important;
}

.how-to-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.how-to-docs {
    padding: 30px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 16px;
}

.how-to-docs h4,
.how-to-places h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
}

.how-to-docs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-to-docs li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.how-to-docs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bcd4;
    font-weight: bold;
}

.how-to-places {
    padding: 30px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.place-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.place-item:hover {
    background: rgba(0, 188, 212, 0.1);
}

.place-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 188, 212, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
}

.place-icon svg {
    width: 22px;
    height: 22px;
    fill: #00bcd4;
}

.place-item span {
    font-size: 0.95rem;
    color: var(--color-text);
}

/* CTA Section */
.payments-cta {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.payments-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2), transparent 70%);
    pointer-events: none;
}

.payments-cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.payments-cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.payments-cta-icon svg {
    width: 40px;
    height: 40px;
    fill: #1a1a1a;
}

.payments-cta-text {
    flex: 1;
}

.payments-cta-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #fff;
}

.payments-cta-text p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.payments-cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.payments-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Styles for Payments Page */
@media (max-width: 992px) {
    .main-payment-card {
        padding: 35px;
    }

    .main-payment-amount .amount-value {
        font-size: 3rem;
    }

    .main-payment-icon {
        display: none;
    }

    .main-payment-breakdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .breakdown-divider {
        display: none;
    }

    .how-to-content {
        grid-template-columns: 1fr;
    }

    .payments-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .payments-cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .payments-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .payments-intro-card {
        flex-direction: column;
        text-align: center;
    }

    .main-payment-amount .amount-value {
        font-size: 2.5rem;
    }

    .main-payment-amount .amount-currency {
        font-size: 1.8rem;
    }

    .payment-cards-grid {
        grid-template-columns: 1fr;
    }

    .monthly-payment-card {
        flex-direction: column;
        text-align: center;
    }

    .monthly-payment-card:hover {
        transform: translateY(-5px);
    }

    .monthly-payment-amount {
        text-align: center;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .places-grid {
        grid-template-columns: 1fr;
    }

    .payments-cta {
        padding: 30px 25px;
    }

    .payments-cta-text h2 {
        font-size: 1.4rem;
    }
}

/* ===== CITY COMPARISON SECTION ===== */

.city-comparison-section {
    margin-bottom: 60px;
}

.comparison-icon {
    background: linear-gradient(135deg, #e91e63, #c2185b) !important;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4) !important;
}

.city-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.city-card {
    position: relative;
    padding: 25px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.city-card-highlight {
    border: 2px solid rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(26, 26, 26, 0.9));
    transform: scale(1.02);
}

.city-card-highlight:hover {
    transform: scale(1.02) translateY(-8px);
    border-color: rgba(76, 175, 80, 0.8);
}

.city-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.city-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.city-flag {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.rostov-flag {
    background: linear-gradient(180deg, #0039a6 50%, #d52b1e 50%);
}

.moscow-flag {
    background: linear-gradient(180deg, #d52b1e 50%, #ffffff 50%);
}

.krasnodar-flag {
    background: linear-gradient(180deg, #0039a6 33%, #ffffff 33%, #ffffff 66%, #d52b1e 66%);
}

.chelyabinsk-flag {
    background: linear-gradient(180deg, #ffc107 50%, #388e3c 50%);
}

.ekaterinburg-flag {
    background: linear-gradient(180deg, #388e3c 50%, #ffeb3b 50%);
}

.novosibirsk-flag {
    background: linear-gradient(180deg, #2196f3 33%, #ffffff 33%, #ffffff 66%, #4caf50 66%);
}

.city-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 3px;
}

.city-info span {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.city-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.city-amount .amount-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #4caf50;
    line-height: 1;
}

.city-card:not(.city-card-highlight) .city-amount .amount-value {
    color: var(--color-text);
}

.city-amount .amount-currency {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: inherit;
    opacity: 0.7;
}

.city-breakdown {
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.85rem;
}

.breakdown-row:first-child span:first-child {
    color: var(--color-text-secondary);
}

.breakdown-row:last-child span:first-child {
    color: var(--color-text-secondary);
}

.breakdown-row span:last-child {
    font-weight: 500;
    color: var(--color-text);
}

.city-advantage {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 10px;
}

.city-advantage svg {
    width: 22px;
    height: 22px;
    fill: #4caf50;
}

.city-advantage span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4caf50;
}

.city-diff {
    text-align: center;
    padding: 8px;
    border-radius: 8px;
}

.city-diff.negative {
    background: rgba(244, 67, 54, 0.1);
}

.city-diff.negative span {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f44336;
}

.comparison-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #e91e63;
    border-radius: 0 12px 12px 0;
}

.comparison-note-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.comparison-note-icon svg {
    width: 24px;
    height: 24px;
    fill: #e91e63;
}

.comparison-note p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===== SMOOTH SCROLL ANIMATIONS ===== */

/* Global smooth transition for all animatable elements */
.animate-on-scroll,
.city-card,
.payment-card,
.payment-card-highlight,
.benefit-item,
.monthly-payment-card,
.section-header,
.section-desc,
.procedure-step,
.document-card,
.conditions-benefit-card,
.comparison-table,
.restrictions-category,
.legal-crimes-card,
.place-item,
.how-to-docs,
.how-to-places,
.payments-intro-card,
.main-payment-card,
.payment-category {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
    transition:
        opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
        transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Visible state - smooth appearance */
.animate-on-scroll.visible,
.city-card.visible,
.payment-card.visible,
.payment-card-highlight.visible,
.benefit-item.visible,
.monthly-payment-card.visible,
.section-header.visible,
.section-desc.visible,
.procedure-step.visible,
.document-card.visible,
.conditions-benefit-card.visible,
.comparison-table.visible,
.restrictions-category.visible,
.legal-crimes-card.visible,
.place-item.visible,
.how-to-docs.visible,
.how-to-places.visible,
.payments-intro-card.visible,
.main-payment-card.visible,
.payment-category.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Section header - slide from left */
.section-header {
    transform: translateX(-20px) scale(0.98);
}

.section-header.visible {
    transform: translateX(0) scale(1);
}

/* Staggered delays for card grids */
.city-card:nth-child(1),
.payment-card:nth-child(1),
.benefit-item:nth-child(1) {
    transition-delay: 0s;
}

.city-card:nth-child(2),
.payment-card:nth-child(2),
.benefit-item:nth-child(2) {
    transition-delay: 0.08s;
}

.city-card:nth-child(3),
.payment-card:nth-child(3),
.benefit-item:nth-child(3) {
    transition-delay: 0.16s;
}

.city-card:nth-child(4),
.payment-card:nth-child(4),
.benefit-item:nth-child(4) {
    transition-delay: 0.24s;
}

.city-card:nth-child(5),
.payment-card:nth-child(5),
.benefit-item:nth-child(5) {
    transition-delay: 0.32s;
}

.city-card:nth-child(6),
.payment-card:nth-child(6),
.benefit-item:nth-child(6) {
    transition-delay: 0.4s;
}

.city-card:nth-child(7),
.benefit-item:nth-child(7) {
    transition-delay: 0.48s;
}

.city-card:nth-child(8),
.benefit-item:nth-child(8) {
    transition-delay: 0.56s;
}

/* ===== ROUNDED CORNERS GLOBAL FIX ===== */

/* All cards get more rounded corners */
.city-card,
.payment-card,
.benefit-item,
.monthly-payment-card,
.procedure-step,
.document-card,
.conditions-benefit-card,
.place-item,
.how-to-docs,
.how-to-places,
.payments-intro-card,
.main-payment-card,
.restrictions-category,
.legal-crimes-card,
.comparison-note,
.payment-note,
.payment-category-title {
    border-radius: 20px !important;
}

/* Larger containers - even rounder */
.main-payment-card,
.payments-cta,
.conditions-cta,
.restrictions-cta {
    border-radius: 28px !important;
}

/* Inner elements should also be rounded */
.city-breakdown,
.main-payment-breakdown,
.city-advantage,
.city-diff {
    border-radius: 14px !important;
}

/* Icons get pill shape */
.section-icon,
.payment-card-icon,
.monthly-payment-icon,
.benefit-item-icon,
.place-icon,
.payments-intro-icon,
.payments-cta-icon {
    border-radius: 16px !important;
}

/* City flags - more rounded */
.city-flag {
    border-radius: 12px !important;
}

/* Responsive for city comparison */
@media (max-width: 992px) {
    .city-comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .city-card-highlight {
        transform: none;
        grid-column: span 2;
    }

    .city-card-highlight.visible {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .city-comparison-grid {
        grid-template-columns: 1fr;
    }

    .city-card-highlight {
        grid-column: span 1;
    }

    .city-amount .amount-value {
        font-size: 1.7rem;
    }
}

/* =========================================
   BPLA Page Hero Styles
   ========================================= */
.hero-bpla .hero-bg-base {
    background-image: url('images/темный_герань.png');
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* Main page base animation: Fast reveal */
    animation: planeReveal 1.5s ease-out forwards;
}

.hero-bpla .hero-bg-glow {
    background-image: url('images/светлый_герань.png');
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* Main page glow animation: Slow fade in after delay */
    animation: glowReveal 3s ease-in-out 1.2s forwards;
}

.hero-bpla .hero-overlay {
    background: rgba(0, 0, 0, 0.7);
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroGlowReveal {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 0.25;
    }
}

/* =========================================
   Cookie Consent Styles
   ========================================= */
.cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cookie-consent-overlay.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 25px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.cookie-consent-icon {
    width: 50px;
    height: 50px;
    background: rgba(18, 82, 218, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-consent-icon svg {
    width: 28px;
    height: 28px;
    fill: #1252DA;
}

.cookie-consent-text-wrapper {
    flex-grow: 1;
}

.cookie-consent-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #FFFFFF;
    font-weight: 700;
}

.cookie-consent-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-link {
    color: #1252DA;
    text-decoration: none;
    border-bottom: 1px solid rgba(18, 82, 218, 0.3);
    transition: all 0.3s ease;
}

.cookie-consent-link:hover {
    border-bottom-color: #1252DA;
    color: #4da3ff;
}

.cookie-consent-buttons {
    flex-shrink: 0;
}

.cookie-consent-accept {
    white-space: nowrap;
    padding: 12px 30px;
    font-weight: 600;
    background: #1252DA;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent-accept:hover {
    background: #0e42b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 82, 218, 0.4);
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-consent-buttons {
        width: 100%;
        margin-top: 15px;
    }

    .cookie-consent-accept {
        width: 100%;
    }
}

/* =========================================
   Page Hero Text Animation
   ========================================= */
.page-hero-anim {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpHero 0.8s ease-out forwards;
}

.page-hero-anim-delay {
    animation-delay: 0.3s;
}

@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}