/* ==========================================================================
   LANDING PAGE CUSTOM STYLES
   ========================================================================== */

/* Swiper Container */
.swiper-container {
    width: 100%;
    overflow: hidden;
}

.comminuties-slides,
.swiper-slide {
    box-sizing: border-box;
}

/* ==========================================================================
   1. STATS SECTION (DARK GLASSMORPHISM)
   ========================================================================== */
.stats-section-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 20s ease-in-out infinite;
}

.stats-section-dark::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 20s ease-in-out infinite reverse;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.stats-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.stats-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stats-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--stat-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stats-icon-badge i {
    font-size: 28px;
    color: var(--stat-color);
}

.stats-display-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin: 1rem 0 0.5rem;
    letter-spacing: -2px;
}

.stats-display-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.stats-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 1.5rem;
    overflow: hidden;
    position: relative;
}

.stats-progress-fill {
    height: 100%;
    background: var(--stat-color);
    border-radius: 10px;
    transition: width 2s ease;
}

@media (max-width: 768px) {
    .stats-glass-card {
        padding: 1.5rem;
    }

    .stats-icon-badge {
        width: 50px;
        height: 50px;
    }

    .stats-icon-badge i {
        font-size: 24px;
    }

    .stats-display-number {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   2. ABOUT SECTION (WHITE VERSION)
   ========================================================================== */
.layout-card-white {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.layout-card-white:hover {
    transform: translateY(-10px);
    border-color: #cbd5e1 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.avtar-circle {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-text-muted {
    color: #64748b !important;
    line-height: 1.6;
}

/* ==========================================================================
   3. FEATURES SECTION (MODERN DESIGN)
   ========================================================================== */
.feature-card-modern {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--feature-color) !important;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--feature-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    position: relative;
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--feature-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-icon-circle {
    background: var(--feature-gradient);
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 10px 30px -10px var(--feature-color);
}

.feature-icon-inner {
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-inner {
    transform: scale(1.1);
}

.feature-card-modern:hover .feature-icon-inner i {
    color: #ffffff !important;
}

.feature-modern-title {
    transition: color 0.3s ease;
}

.feature-card-modern:hover .feature-modern-title {
    color: var(--feature-color) !important;
}

.feature-card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--feature-gradient);
    border-radius: 50%;
    opacity: 0;
    filter: blur(40px);
    transition: all 0.5s ease;
}

.feature-card-modern:hover .feature-card-decoration {
    opacity: 0.1;
    bottom: -30px;
    right: -30px;
}

/* Feature Item Card (for "Why Section") */
.feature-item-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-item-card:hover {
    transform: translateY(-10px);
    border-color: var(--bs-primary) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.avtar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-icon-circle {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .feature-icon-inner i {
        font-size: 28px !important;
    }

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

    .feature-card-modern .card-body {
        padding: 1.5rem !important;
    }
}

/* ==========================================================================
   4. TESTIMONIALS & RATING
   ========================================================================== */
.testimonial-card-white {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.testimonial-card-white:hover {
    transform: translateY(-5px);
    border-color: var(--bs-primary) !important;
    box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.1);
}

.testi-name {
    color: #1e293b !important;
    font-weight: 700;
}

.testi-content {
    color: #475569 !important;
    font-style: italic;
    line-height: 1.6;
}

.star-rating i {
    color: #ffc107 !important;
    font-size: 16px;
    margin-right: 2px;
}

/* ==========================================================================
   5. ANIMATIONS (FLOATING EFFECT)
   ========================================================================== */
.img-header-main {
    padding: 40px 0;
    overflow: visible !important;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.img-floating {
    animation: float 4s ease-in-out infinite;
    will-change: transform;
}

/* ==========================================================================
   6. WHY SECTION - ENHANCED DESIGN
   ========================================================================== */
.why-section-enhanced {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

[data-pc-theme="dark"] .why-section-enhanced {
    background: linear-gradient(180deg, #1a1d1f 0%, #111315 100%);
}

.why-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.2), transparent);
}

.why-card-premium {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-pc-theme="dark"] .why-card-premium {
    background: #1e2124 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.why-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card-premium:hover::before {
    transform: scaleX(1);
}

.why-card-premium:hover {
    transform: translateY(-12px);
    border-color: var(--card-color) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--card-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
}

.why-card-premium:hover .why-icon-container {
    background: var(--card-gradient);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 24px var(--card-shadow);
}

.why-icon-container i {
    font-size: 32px;
    color: var(--card-color);
    transition: all 0.3s ease;
}

.why-card-premium:hover .why-icon-container i {
    color: #ffffff;
    transform: scale(1.1);
}

.why-card-title {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

[data-pc-theme="dark"] .why-card-title {
    color: #e2e8f0;
}

.why-card-premium:hover .why-card-title {
    color: var(--card-color);
}

.why-card-text {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

[data-pc-theme="dark"] .why-card-text {
    color: #94a3b8;
}

.why-decoration-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0;
    filter: blur(60px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.why-card-premium:hover .why-decoration-circle {
    opacity: 0.15;
}

@media (max-width: 768px) {
    .why-icon-container {
        width: 60px;
        height: 60px;
    }

    .why-icon-container i {
        font-size: 28px;
    }

    .why-card-title {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   7. FOOTER - MODERN PREMIUM DESIGN
   ========================================================================== */
.footer-premium {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.footer-content {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.sticky-cta-container.show ~ .back-to-top {
    bottom: 100px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.6);
}

@media (max-width: 768px) {
    .footer-wave {
        height: 50px;
    }

    .footer-content {
        padding-top: 3rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ==========================================================================
   8. STICKY CTA BUTTONS
   ========================================================================== */
.sticky-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sticky-cta-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sticky-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sticky-cta-btn:hover::before {
    opacity: 1;
}

.sticky-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.6);
    color: #ffffff;
}

.sticky-cta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.sticky-cta-icon i {
    font-size: 20px;
    animation: rocket-pulse 2s ease-in-out infinite;
}

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

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.sticky-cta-text strong {
    font-size: 15px;
    font-weight: 700;
}

.sticky-cta-text small {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 12px 0;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.3s ease;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

[data-pc-theme="dark"] .sticky-cta-mobile {
    background: #1e2124;
    border-top-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.sticky-cta-mobile.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 769px) {
    .sticky-cta-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .sticky-cta-container {
        display: none !important;
    }
    
    .back-to-top {
        bottom: 80px;
    }
}

/* ==========================================================================
   9. PRICING PREVIEW SECTION
   ========================================================================== */
.pricing-preview-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

[data-pc-theme="dark"] .pricing-preview-section {
    background: linear-gradient(180deg, #111315 0%, #1a1d1f 100%);
}

.pricing-card-modern {
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-pc-theme="dark"] .pricing-card-modern {
    background: #1e2124 !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pricing-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pricing-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pricing-card-modern:hover::before {
    transform: scaleX(1);
}

.pricing-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--pricing-color) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--pricing-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pricing-card-modern:hover .pricing-icon-badge {
    background: var(--pricing-color);
    transform: rotate(-5deg) scale(1.1);
}

.pricing-icon-badge i {
    font-size: 24px;
    color: var(--pricing-color);
    transition: all 0.3s ease;
}

.pricing-card-modern:hover .pricing-icon-badge i {
    color: #ffffff;
}

.pricing-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.pricing-service-name {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    min-height: 50px;
}

[data-pc-theme="dark"] .pricing-service-name {
    color: #e2e8f0;
}

.pricing-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pricing-meta-item {
    color: #64748b;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}

[data-pc-theme="dark"] .pricing-meta-item {
    color: #94a3b8;
}

.pricing-price-container {
    background: var(--pricing-light);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
}

.pricing-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pricing-color);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-per {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

[data-pc-theme="dark"] .pricing-per {
    color: #94a3b8;
}

.btn-pricing {
    background: var(--pricing-color) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .pricing-service-name {
        font-size: 1rem;
        min-height: 45px;
    }
    
    .pricing-price {
        font-size: 1.5rem;
    }
    
    .pricing-icon-badge {
        width: 45px;
        height: 45px;
    }
    
    .pricing-icon-badge i {
        font-size: 20px;
    }
}

/* ==========================================================================
   10. HERO CTA BUTTONS (MOBILE OPTIMIZED)
   ========================================================================== */
.hero-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn-login,
.hero-btn-register {
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-width: 2px;
    min-width: 160px;
}

.hero-btn-register {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    border: none;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.hero-btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.6);
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
}

.hero-btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.header-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

@media (max-width: 576px) {
    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    
    .hero-btn-login,
    .hero-btn-register {
        width: 100%;
        max-width: 320px;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .header-content h1 {
        font-size: 1.75rem !important;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .header-content h1 {
        font-size: 2.25rem !important;
    }
}

@media (min-width: 769px) {
    .header-content h1 {
        font-size: 3.5rem !important;
    }
}