/* Modern Dynamic Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 60px;
    background: linear-gradient(135deg, #f8fafb 0%, #e8f2f7 50%, #f0f6fa 100%);
    position: relative;
    overflow: hidden;
}

/* Tatami Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(26, 63, 103, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(26, 63, 103, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(45, 90, 138, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(45, 90, 138, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    z-index: 1;
}

/* Diagonal Background Shape */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: linear-gradient(135deg, rgba(26, 63, 103, 0.08) 0%, rgba(45, 90, 138, 0.12) 50%, rgba(26, 63, 103, 0.06) 100%);
    transform: rotate(-15deg);
    border-radius: 50px;
    z-index: 1;
    animation: gentle-sway 12s ease-in-out infinite;
}

@keyframes gentle-sway {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-12deg) translateY(-20px); }
}

/* Floating Belts Animation */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-belt {
    position: absolute;
    width: 80px;
    height: 8px;
    border-radius: 4px;
    opacity: 0.6;
    animation: float-belt 20s infinite linear;
}

.belt-white { background: #ffffff; box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3); left: 10%; animation-delay: 0s; }
.belt-yellow { background: #ffd700; box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4); left: 20%; animation-delay: 3s; }
.belt-orange { background: #ff8c00; box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4); left: 30%; animation-delay: 6s; }
.belt-green { background: #32cd32; box-shadow: 0 2px 8px rgba(50, 205, 50, 0.4); left: 40%; animation-delay: 9s; }
.belt-blue { background: #1e90ff; box-shadow: 0 2px 8px rgba(30, 144, 255, 0.4); left: 60%; animation-delay: 12s; }
.belt-brown { background: #8b4513; box-shadow: 0 2px 8px rgba(139, 69, 19, 0.4); left: 70%; animation-delay: 15s; }
.belt-black { background: #2c2c2c; box-shadow: 0 2px 8px rgba(44, 44, 44, 0.5); left: 80%; animation-delay: 18s; }

@keyframes float-belt {
    0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) rotate(180deg); opacity: 0; }
}

/* Main Container */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Main Content */
.hero-main-content {
    padding-top: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 63, 103, 0.1);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(26, 63, 103, 0.1);
    animation: badge-entrance 0.8s ease-out 0.2s backwards;
}

.hero-badge svg {
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

@keyframes badge-entrance {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a8a 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-slide 0.8s ease-out 0.4s backwards;
}

.title-ukraine {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ff8800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
    animation: title-slide 0.8s ease-out 0.6s backwards;
}

.title-subtitle {
    display: block;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 400;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
    animation: title-slide 0.8s ease-out 0.8s backwards;
}

@keyframes title-slide {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.hero-description {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fade-up 0.8s ease-out 1s backwards;
}

@keyframes fade-up {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Action Cards */
.hero-action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: cards-entrance 0.8s ease-out 1.2s backwards;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 63, 103, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.action-card:hover::before {
    left: 100%;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 63, 103, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.action-card.primary:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(26, 63, 103, 0.25);
}

.action-card.secondary:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.25);
}

.action-card.accent:hover {
    border-color: #32cd32;
    box-shadow: 0 20px 40px rgba(50, 205, 50, 0.25);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 63, 103, 0.1);
    border-radius: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.action-card.primary .card-icon {
    background: rgba(26, 63, 103, 0.1);
    color: var(--primary-color);
}

.action-card.secondary .card-icon {
    background: rgba(255, 215, 0, 0.1);
    color: #cc9900;
}

.action-card.accent .card-icon {
    background: rgba(50, 205, 50, 0.1);
    color: #228b22;
}

.action-card:hover .card-icon {
    transform: scale(1.1);
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.card-content p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

@keyframes cards-entrance {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Stats Panel */
.hero-stats-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 63, 103, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(26, 63, 103, 0.1);
    position: sticky;
    top: 140px;
    animation: panel-entrance 0.8s ease-out 1.4s backwards;
}

.stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(26, 63, 103, 0.1);
}

.stats-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.stats-indicator {
    width: 12px;
    height: 12px;
    background: #32cd32;
    border-radius: 50%;
    animation: pulse-indicator 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.4);
}

@keyframes pulse-indicator {
    0% { box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(50, 205, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(50, 205, 50, 0); }
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(248, 250, 251, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(26, 63, 103, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(26, 63, 103, 0.1);
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.3;
}

.stats-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 63, 103, 0.1);
    text-align: center;
}

.stats-footer p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

@keyframes panel-entrance {
    0% { transform: translateX(50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    z-index: 3;
    animation: scroll-entrance 0.8s ease-out 2s backwards;
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes scroll-entrance {
    0% { transform: translateX(-50%) translateY(30px); opacity: 0; }
    100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}



/* Responsive Design */

/* 4K/8K Ultra Large Screens (2560px+) */
@media (min-width: 2560px) {
    .hero {
        padding: 200px 4rem 120px;
    }
    
    .hero-container {
        max-width: 2000px;
        grid-template-columns: 1fr 500px;
        gap: 6rem;
    }
    
    .hero-badge {
        font-size: 1.125rem;
        padding: 1.25rem 2.5rem;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: clamp(4rem, 8vw, 7rem);
        margin-bottom: 3rem;
    }
    
    .title-subtitle {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        margin-top: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.75rem;
        margin-bottom: 4rem;
        max-width: 800px;
    }
    
    .hero-action-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .action-card {
        padding: 2.5rem;
        gap: 1.5rem;
    }
    
    .card-icon {
        width: 64px;
        height: 64px;
    }
    
    .card-content h3 {
    font-size: 1.5rem;
}

    .card-content p {
        font-size: 1.125rem;
    }
    
    .hero-stats-panel {
        padding: 3rem;
        border-radius: 32px;
        top: 200px;
    }
    
    .stats-header h3 {
        font-size: 2rem;
    }
    
    .stats-indicator {
        width: 16px;
        height: 16px;
    }
    
    .stat-item {
        padding: 2.5rem;
        gap: 1.5rem;
    }
    
    .stat-icon {
        width: 72px;
        height: 72px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.375rem;
    }
    
    .stat-sublabel {
        font-size: 1.125rem;
    }
    
    .floating-belt {
        width: 120px;
        height: 12px;
    }
    
    .scroll-indicator {
        bottom: 4rem;
    }
    
    .scroll-text {
        font-size: 1.125rem;
    }
}

/* QHD Large Screens (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .hero {
        padding: 160px 3rem 100px;
    }
    
    .hero-container {
        max-width: 1600px;
        grid-template-columns: 1fr 450px;
        gap: 5rem;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 1rem 2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-title {
        font-size: clamp(3.5rem, 7vw, 6rem);
        margin-bottom: 2.5rem;
    }
    
    .title-subtitle {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }
    
    .hero-description {
        font-size: 1.5rem;
        margin-bottom: 3.5rem;
        max-width: 700px;
    }
    
    .hero-action-cards {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 2rem;
    }
    
    .action-card {
        padding: 2rem;
        gap: 1.25rem;
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
    }
    
    .card-content h3 {
        font-size: 1.25rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
    
    .hero-stats-panel {
        padding: 2.5rem;
        border-radius: 28px;
        top: 160px;
    }
    
    .stats-header h3 {
        font-size: 1.75rem;
    }
    
    .stats-indicator {
        width: 14px;
        height: 14px;
    }
    
    .stat-item {
        padding: 2rem;
        gap: 1.25rem;
    }
    
    .stat-icon {
        width: 64px;
        height: 64px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.25rem;
    }
    
    .stat-sublabel {
        font-size: 1rem;
    }
    
    .floating-belt {
        width: 100px;
        height: 10px;
    }
    
    .scroll-indicator {
        bottom: 3rem;
    }
    
    .scroll-text {
        font-size: 1rem;
    }
}

/* FHD Standard (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero {
        padding: 140px 2.5rem 80px;
    }
    
    .hero-container {
        max-width: 1400px;
        grid-template-columns: 1fr 400px;
        gap: 4rem;
    }
    
    .hero-description {
        font-size: 1.375rem;
        margin-bottom: 3rem;
        max-width: 650px;
    }
    
    .hero-action-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.75rem;
    }
    
    .action-card {
        padding: 1.75rem;
    }
    
    .card-icon {
        width: 52px;
        height: 52px;
    }
    
    .hero-stats-panel {
        top: 160px;
    }
    
    .stat-item {
        padding: 1.75rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .floating-belt {
        width: 90px;
        height: 9px;
    }
}

/* HD Standard (1080px - 1439px) */
@media (min-width: 1080px) and (max-width: 1439px) {
    .hero {
        padding: 120px 2rem 60px;
    }
    
    .hero-container {
        max-width: 1200px;
        grid-template-columns: 1fr 380px;
        gap: 3.5rem;
    }
    
    .hero-badge {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        max-width: 580px;
    }
    
    .hero-action-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .action-card {
        padding: 1.5rem;
    }
    
    .hero-stats-panel {
        padding: 2rem;
        top: 140px;
    }
    
    .stats-header h3 {
        font-size: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .floating-belt {
        width: 80px;
        height: 8px;
    }
}

/* Tablets and Small Laptops (769px - 1079px) */
@media (min-width: 769px) and (max-width: 1079px) {
    .hero {
        padding: 100px 2rem 50px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 900px;
    }
    
    .hero-main-content {
        padding-top: 1rem;
    }
    
    .hero-badge {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-action-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .action-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .hero-stats-panel {
        position: relative;
        top: auto;
        padding: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .floating-belt {
        width: 70px;
        height: 7px;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}

/* Mobile Landscape (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: 80px 1.5rem 40px;
        min-height: auto;
    }
    
    .hero::after {
        width: 30%;
        opacity: 0.3;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .hero-main-content {
        padding-top: 0;
        text-align: center;
        width: 100%;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .title-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-action-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .action-card {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .card-icon {
        width: 44px;
        height: 44px;
    }
    
    .card-content h3 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.875rem;
    }
    
    .hero-stats-panel {
        position: relative;
        top: auto;
        padding: 1.5rem;
    }
    
    .stats-header h3 {
        font-size: 1.25rem;
    }
    
    .stats-grid {
        gap: 1.25rem;
    }
    
    .stat-item {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-sublabel {
        font-size: 0.8rem;
    }
    
    .floating-belt {
        width: 60px;
        height: 6px;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 5rem;
        min-height: auto;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 100%;
        min-width: 100%;
        margin: 0 auto;
    }
    
    .hero-main-content {
        text-align: center;
        width: 100%;
        padding-top: 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
        gap: 0.5rem;
    }
    
    .hero-badge svg {
        width: 18px;
        height: 18px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
        margin-bottom: 1.25rem;
    }

    .title-subtitle {
        font-size: clamp(0.875rem, 4vw, 1.25rem);
        margin-top: 0.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }
    
    .hero-action-cards {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .action-card {
        padding: 1.5rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-shadow: 0 4px 15px rgba(26, 63, 103, 0.1);
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto;
        flex-shrink: 0;
    }
    
    .card-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.125rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
    
    .hero-stats-panel {
        padding: 1.5rem;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        top: auto;
    }
    
    .stats-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }
    
    .stats-header h3 {
        font-size: 1.25rem;
        margin: 0;
    }
    
    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
        width: 100%;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 16px;
    }
    
    .stat-icon {
        width: 44px;
        height: 44px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .stat-sublabel {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .stats-footer {
        margin-top: 1.5rem;
        padding-top: 0.75rem;
    }
    
    .stats-footer p {
        font-size: 0.8rem;
    }
    
    .floating-belt {
        width: 50px;
        height: 5px;
    }

    .scroll-indicator {
        position: static;
        transform: none;
        margin-top: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
    
    .scroll-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .hero {
        padding: 60px 0.75rem 30px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-main-content {
        text-align: center;
        width: 100%;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 12vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .title-subtitle {
        font-size: clamp(0.75rem, 5vw, 1rem);
        margin-top: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-action-cards {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .action-card {
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
    }
    
    .card-content h3 {
        font-size: 0.8rem;
    }
    
    .card-content p {
        font-size: 0.7rem;
    }
    
    .hero-stats-panel {
        padding: 1rem;
    }
    
    .stats-header h3 {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-sublabel {
        font-size: 0.7rem;
    }
    
    .floating-belt {
        width: 40px;
        height: 4px;
    }
}

/* Wide Mobile Landscape (769px - 1024px) */
@media (max-width: 1024px) and (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding: 60px 2rem 40px;
        min-height: 100vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }
    
    .hero-main-content {
        text-align: center;
    }
    
    .hero-action-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 600px;
        margin: 0 auto 2rem auto;
    }
    
    .action-card {
        padding: 1rem;
        gap: 0.5rem;
        flex-direction: column;
    }
    
    .hero-stats-panel {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Touch Devices - Disable Hover Effects */
@media (hover: none) and (pointer: coarse) {
    .action-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(26, 63, 103, 0.1);
        background: rgba(255, 255, 255, 0.8);
    }
    
    .stat-item:hover {
        transform: none;
        background: rgba(248, 250, 251, 0.8);
        box-shadow: none;
    }
    
    .action-card:hover .card-icon {
        transform: none;
    }
} 