/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a472a;
    --color-primary-dark: #0d2818;
    --color-accent: #d4af37;
    --color-accent-dark: #b8941f;
    --color-text: #ffffff;
    --color-text-secondary: #e0e0e0;
    --color-bg-dark: #0a0f14;
    --color-bg-section: #141a20;
    --color-card: #1a2332;
    --color-border: #2a3441;
    --gradient-military: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1a472a 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 15, 20, 0.9) 0%, rgba(10, 15, 20, 0.95) 100%);
}

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 Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0f14;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('395bace4-0056-4268-8fde-bfd2ce397024.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    filter: brightness(0.2) contrast(0.5);
    animation: planeReveal 2.5s ease-out forwards;
    z-index: 0;
}

@keyframes planeReveal {
    0% {
        opacity: 0;
        filter: brightness(0) contrast(0) blur(10px);
        transform: scale(1.05);
    }
    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);
        transform: scale(1);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 4px);
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, 
        rgba(10, 15, 20, 0.3) 0%, 
        rgba(10, 15, 20, 0.5) 50%, 
        rgba(10, 15, 20, 0.7) 100%
    );
    z-index: 1;
    transition: opacity 0.8s ease-out;
    animation: overlayFadeIn 2s ease-out 1s forwards;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero.scrolled .hero-overlay {
    opacity: 0.95;
}

/* Дополнительный эффект проявления через градиентную маску */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(10, 15, 20, 0.8) 20%,
        rgba(10, 15, 20, 0.6) 50%,
        rgba(10, 15, 20, 0.8) 80%,
        transparent 100%
    );
    z-index: 0;
    animation: shadowReveal 2.5s ease-out forwards;
    pointer-events: none;
}

@keyframes shadowReveal {
    0% {
        opacity: 1;
        background: linear-gradient(
            90deg,
            rgba(10, 15, 20, 1) 0%,
            rgba(10, 15, 20, 1) 50%,
            rgba(10, 15, 20, 1) 100%
        );
    }
    50% {
        opacity: 0.8;
        background: linear-gradient(
            90deg,
            rgba(10, 15, 20, 0.9) 0%,
            rgba(10, 15, 20, 0.7) 30%,
            rgba(10, 15, 20, 0.7) 70%,
            rgba(10, 15, 20, 0.9) 100%
        );
    }
    100% {
        opacity: 0;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(10, 15, 20, 0.3) 20%,
            rgba(10, 15, 20, 0.2) 50%,
            rgba(10, 15, 20, 0.3) 80%,
            transparent 100%
        );
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    animation: heroContentFadeIn 1s ease-out 2s forwards;
}

@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, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line {
    display: block;
    color: var(--color-text);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: textSlideInLeft 1s ease-out 2.3s forwards;
}

.title-line-accent {
    display: block;
    color: var(--color-accent);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.6);
    margin-top: 10px;
    opacity: 0;
    animation: textSlideInRight 1s ease-out 2.6s forwards;
}

@keyframes textSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textSlideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2.9s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 3.2s forwards;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 3.5s forwards;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.15s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-accent);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    text-transform: none;
    letter-spacing: 0.5px;
}

.hero-phone:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.phone-icon {
    font-size: 1.5rem;
    display: inline-block;
    animation: phoneRing 2s ease-in-out infinite;
}

.phone-number {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.8);
    }
}

.hero-badge {
    margin-top: 30px;
    padding: 15px 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-accent);
    border-radius: 5px;
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 3.8s forwards;
    backdrop-filter: blur(10px);
}

.badge-text {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 1s infinite;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--color-accent);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

/* Общий фон для всех секций после hero */
section:not(.hero) {
    background-image: url('fon.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

section:not(.hero)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 20, 0.7) 0%,
        rgba(10, 15, 20, 0.8) 50%,
        rgba(10, 15, 20, 0.7) 100%
    );
    z-index: 0;
    animation: backgroundFadeIn 1s ease-out;
}

@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(10, 15, 20, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    position: relative;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card.highlight {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.benefit-amount {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.benefit-label {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

/* Social Benefits Section */
.social-benefits {
    position: relative;
}

.social-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 70% 70%,
        rgba(26, 71, 42, 0.08) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 0;
    animation: gradientPulse 30s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.7;
    }
}

.social-benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    transition: all 0.15s ease;
}

.benefit-item:hover {
    border-color: var(--color-accent);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.benefit-icon-small {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Housing Section */
.housing {
    position: relative;
}

.housing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(212, 175, 55, 0.03) 40px,
        rgba(212, 175, 55, 0.03) 80px
    );
    pointer-events: none;
    z-index: 0;
    animation: patternMove 40s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(80px, 80px);
    }
}

.housing .container {
    position: relative;
    z-index: 2;
}

.housing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.housing-card {
    background: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.15s ease;
}

.housing-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.housing-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.housing-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.housing-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* How to Apply Section */
.how-to-apply {
    position: relative;
}

.how-to-apply .container {
    position: relative;
    z-index: 2;
}

.how-to-apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    animation: radialPulse 25s ease-in-out infinite;
}

@keyframes radialPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.6;
    }
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    transition: all 0.15s ease;
    position: relative;
}

.step:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(212, 175, 55, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid var(--color-accent);
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.step-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 70%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(26, 71, 42, 0.05) 30px,
            rgba(26, 71, 42, 0.05) 60px
        );
    pointer-events: none;
    z-index: 0;
    animation: contactPattern 50s linear infinite;
}

@keyframes contactPattern {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.55;
    }
    100% {
        opacity: 0.5;
    }
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.15s ease;
}

.contact-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    opacity: 0.8;
    margin-top: 10px;
}

.contact-phone {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    margin: 10px 0;
    transition: all 0.15s ease;
}

.contact-phone:hover {
    color: var(--color-text);
    transform: scale(1.05);
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-accent);
    border-radius: 10px;
    text-align: center;
}

.contact-note p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
}

.contact-cta {
    margin-top: 40px;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--color-primary-dark);
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid var(--color-border);
}

.footer-text {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* 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: var(--color-accent);
    color: var(--color-primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    transition: all 0.15s ease;
}

.floating-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.7);
}

.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) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 20px 15px;
    }

    .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: var(--color-primary-dark);
}

/* Cookie Consent Modal */
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    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(26, 71, 42, 0.95) 0%, rgba(10, 15, 20, 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.7), 0 0 30px rgba(212, 175, 55, 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(212, 175, 55, 0.3);
}

.cookie-consent-text {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--color-text-secondary);
    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-text);
}

.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;
    }
}

