/* ============================================
   GLOBAL STYLES - Prevent Overflow
   ============================================ */

body {
    overflow-x: hidden;
    max-width: 100vw;
    padding-top: 67px;
}

@media (max-width: 768px) {
    body {
        padding-top: 61px;
    }
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}

/* ============================================
   MODERN NAVBAR - Responsive & Elegant
   ============================================ */

.modern-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.03),
        inset 0 -1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    pointer-events: none;
}

/* Scrolled State */
.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 -1px 0 rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - Enhanced */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.navbar-logo:hover .logo-icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.navbar-logo:hover .logo-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow:
        0 4px 12px rgba(99, 102, 241, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.logo-text {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

/* Desktop Navigation - Enhanced */
.navbar-menu {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #374151;
    transform: translateY(-1px);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: #6366f1;
    font-weight: 600;
}

.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-login {
    color: #374151;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.btn-login:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.06) 100%);
    color: #6366f1;
    transform: translateY(-1px);
}

.btn-register {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-register::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(99, 102, 241, 0.4),
        0 4px 12px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.btn-register:active {
    transform: translateY(0);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.user-menu-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 500;
}

.user-menu-btn i {
    font-size: 0.75rem;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.user-dropdown.active .user-menu-btn i {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 220px;
    border: 1px solid #e5e7eb;
    animation: dropdownSlide 0.2s ease;
}

.user-dropdown.active .dropdown-menu {
    display: block;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.dropdown-item:hover {
    background: #f3f4f6;
}

.dropdown-item i {
    color: #6b7280;
    width: 18px;
}

.dropdown-item.logout-btn {
    color: #ef4444;
}

.dropdown-item.logout-btn:hover {
    background: #fef2f2;
}

.dropdown-divider {
    border-top: 1px solid #e5e7eb;
    margin: 0.5rem 0;
}

.notification-badge {
    position: absolute;
    right: 1rem;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background: #f3f4f6;
    color: #374151;
}

.mobile-nav-link.active {
    background: #eff6ff;
    color: #6366f1;
}

.mobile-nav-link i {
    width: 20px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .btn-login,
    .btn-register {
        display: none;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .user-name {
        display: none;
    }

    .user-menu-btn {
        padding: 0.5rem;
    }
}

/* ============================================
   CORPORATE ELEGANT HOME PAGE STYLES
   ============================================ */

/* Modern Hero Section - Corporate */
.modern-hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0 3rem;
}

/* Background Pattern */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background: transparent;
}

/* Subtle Glowing Orbs */
.hero-glow-1, .hero-glow-2, .hero-glow-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: floatGentl 20s ease-in-out infinite;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    animation-delay: 5s;
}

.hero-glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes floatGentl {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Corporate Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: fadeInDown 0.6s ease-out;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.badge-shine {
    display: none;
}

/* Corporate Hero Title */
.hero-massive-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.hero-massive-title .title-line {
    display: block;
    animation: fadeInUp 0.6s ease-out backwards;
}

.hero-massive-title .title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-massive-title .title-line:nth-child(2) { animation-delay: 0.2s; }
.hero-massive-title .title-line:nth-child(3) { animation-delay: 0.3s; }

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-massive-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

/* Elegant Search Container */
.hero-search-container {
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.search-glass-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.search-glass-box:hover,
.search-glass-box:focus-within {
    border-color: #6366f1;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12), 0 4px 8px rgba(99, 102, 241, 0.08);
}

.search-icon-wrapper {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-glass-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #0f172a;
    padding: 0.5rem 0;
    min-width: 0;
}

.search-glass-input::placeholder {
    color: #94a3b8;
}

.search-glass-button {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.search-glass-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Popular Searches */
.popular-searches {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.popular-searches span:first-child {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.popular-searches a {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.popular-searches a:hover {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
    transform: translateY(-1px);
}

/* Compact Hero Stats Row */
.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* ============================================
   MOSAIC HERO SECTION - Modern Design
   ============================================ */

.modern-hero-mosaic {
    background: #f9fafb;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Content */
.hero-mosaic-content {
    padding-right: 2rem;
}

.hero-mosaic-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

/* Search Box - Simple Clean Design */
.hero-mosaic-search {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

/* Organic Shapes Container */
.hero-mosaic-search::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    left: -150px;
    z-index: -1;
    background:
        radial-gradient(ellipse at 35% 45%, rgba(99, 102, 241, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
    filter: blur(25px);
    border-radius: 45% 55% 60% 40% / 50% 35% 65% 50%;
    animation: abstract-float-1 14s ease-in-out infinite;
}

.hero-mosaic-search::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -180px;
    right: -120px;
    z-index: -1;
    background:
        radial-gradient(ellipse at 60% 55%, rgba(236, 72, 153, 0.15) 0%, transparent 48%),
        radial-gradient(ellipse at 25% 65%, rgba(251, 191, 36, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse at 75% 25%, rgba(236, 72, 153, 0.08) 0%, transparent 42%);
    filter: blur(25px);
    border-radius: 38% 62% 45% 55% / 60% 48% 52% 40%;
    animation: abstract-float-2 16s ease-in-out infinite;
}

@keyframes abstract-float-1 {
    0%, 100% {
        border-radius: 45% 55% 60% 40% / 50% 35% 65% 50%;
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    20% {
        border-radius: 60% 40% 55% 45% / 40% 60% 40% 60%;
        transform: translate(15px, -10px) rotate(8deg) scale(1.08);
        opacity: 0.9;
    }
    40% {
        border-radius: 35% 65% 48% 52% / 62% 38% 62% 38%;
        transform: translate(-10px, 18px) rotate(-5deg) scale(0.95);
        opacity: 0.85;
    }
    60% {
        border-radius: 52% 48% 42% 58% / 55% 48% 52% 45%;
        transform: translate(20px, -8px) rotate(6deg) scale(1.05);
        opacity: 0.92;
    }
    80% {
        border-radius: 48% 52% 65% 35% / 45% 62% 38% 55%;
        transform: translate(-15px, 12px) rotate(-4deg) scale(0.98);
        opacity: 0.88;
    }
}

@keyframes abstract-float-2 {
    0%, 100% {
        border-radius: 38% 62% 45% 55% / 60% 48% 52% 40%;
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        border-radius: 55% 45% 62% 38% / 48% 58% 42% 52%;
        transform: translate(-18px, 15px) rotate(-7deg) scale(1.06);
        opacity: 0.88;
    }
    50% {
        border-radius: 42% 58% 38% 62% / 65% 42% 58% 35%;
        transform: translate(12px, -20px) rotate(5deg) scale(0.94);
        opacity: 0.92;
    }
    75% {
        border-radius: 65% 35% 58% 42% / 38% 65% 35% 62%;
        transform: translate(-10px, -12px) rotate(-6deg) scale(1.04);
        opacity: 0.85;
    }
}

/* Corner Travel Animations for Success Section */
@keyframes corner-travel-1 {
    0% {
        top: -100px;
        left: -150px;
        border-radius: 45% 55% 60% 40% / 50% 35% 65% 50%;
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        top: -100px;
        left: auto;
        right: -150px;
        border-radius: 60% 40% 55% 45% / 40% 60% 40% 60%;
        transform: rotate(90deg) scale(1.05);
        opacity: 0.9;
    }
    50% {
        top: auto;
        bottom: -100px;
        left: auto;
        right: -150px;
        border-radius: 35% 65% 48% 52% / 62% 38% 62% 38%;
        transform: rotate(180deg) scale(0.95);
        opacity: 0.85;
    }
    75% {
        top: auto;
        bottom: -100px;
        left: -150px;
        right: auto;
        border-radius: 52% 48% 42% 58% / 55% 48% 52% 45%;
        transform: rotate(270deg) scale(1.02);
        opacity: 0.92;
    }
    100% {
        top: -100px;
        left: -150px;
        bottom: auto;
        right: auto;
        border-radius: 45% 55% 60% 40% / 50% 35% 65% 50%;
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

@keyframes corner-travel-2 {
    0% {
        top: auto;
        bottom: -120px;
        left: auto;
        right: -140px;
        border-radius: 38% 62% 45% 55% / 60% 48% 52% 40%;
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        top: auto;
        bottom: -120px;
        left: -140px;
        right: auto;
        border-radius: 55% 45% 62% 38% / 48% 58% 42% 52%;
        transform: rotate(-90deg) scale(1.04);
        opacity: 0.88;
    }
    50% {
        top: -120px;
        bottom: auto;
        left: -140px;
        right: auto;
        border-radius: 42% 58% 38% 62% / 65% 42% 58% 35%;
        transform: rotate(-180deg) scale(0.96);
        opacity: 0.92;
    }
    75% {
        top: -120px;
        bottom: auto;
        left: auto;
        right: -140px;
        border-radius: 65% 35% 58% 42% / 38% 65% 35% 62%;
        transform: rotate(-270deg) scale(1.03);
        opacity: 0.85;
    }
    100% {
        top: auto;
        bottom: -120px;
        left: auto;
        right: -140px;
        border-radius: 38% 62% 45% 55% / 60% 48% 52% 40%;
        transform: rotate(-360deg) scale(1);
        opacity: 1;
    }
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon-left {
    position: absolute;
    left: 1.25rem;
    color: #9ca3af;
    font-size: 1rem;
}

.mosaic-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    color: #1f2937;
    background: white;
    transition: all 0.2s ease;
    outline: none;
}

.mosaic-search-input:focus {
    border-color: #40e0a0;
    box-shadow: 0 0 0 3px rgba(64, 224, 160, 0.1);
}

.mosaic-search-input::placeholder {
    color: #9ca3af;
}

.mosaic-search-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #40e0a0 0%, #34d399 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mosaic-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(64, 224, 160, 0.3);
}

/* Popular Links */
.mosaic-popular {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.mosaic-popular-label {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.mosaic-popular a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.375rem 0.875rem;
    background: #f3f4f6;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mosaic-popular a:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* Stats Row */
.hero-mosaic-stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    max-width: 550px;
}

.mosaic-stat-item {
    text-align: left;
}

.mosaic-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.125rem;
    line-height: 1;
}

.mosaic-stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.mosaic-stat-divider {
    width: 1px;
    height: 28px;
    background: #d1d5db;
}

/* Right Floating Elements - Modern Design */
.hero-floating-elements {
    position: relative;
    height: 550px;
    width: 100%;
}

/* Floating Orbs - Gradient Spheres */
.float-orb {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: floatGentle 8s ease-in-out infinite;
    z-index: 1;
}

/* Orb 1 - Large Purple */
.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #c4b5fd 0%, #a78bfa 40%, #8b7ff6 100%);
    top: 5%;
    right: 10%;
    animation-delay: 0s;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25),
        inset -20px -20px 60px rgba(0, 0, 0, 0.3),
        inset 5px 5px 20px rgba(255, 255, 255, 0.3);
}

.orb-1 .orb-content i {
    font-size: 5rem;
    color: white;
}

/* Orb 2 - Medium Green */
.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #86efac 0%, #6ee7b7 40%, #34d399 100%);
    top: 40%;
    right: 5%;
    animation-delay: 1.5s;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25),
        inset -15px -15px 50px rgba(0, 0, 0, 0.3),
        inset 5px 5px 20px rgba(255, 255, 255, 0.3);
}

/* Orb 3 - Large Yellow */
.orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 30% 30%, #fcd34d 0%, #fbbf24 40%, #f59e0b 100%);
    bottom: 10%;
    right: 15%;
    animation-delay: 3s;
    box-shadow:
        0 28px 75px rgba(0, 0, 0, 0.25),
        inset -18px -18px 55px rgba(0, 0, 0, 0.3),
        inset 5px 5px 20px rgba(255, 255, 255, 0.3);
}

.orb-3 .orb-content i {
    font-size: 4rem;
    color: white;
}

/* Orb 4 - Medium Teal */
.orb-4 {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 30% 30%, #7dd3fc 0%, #5eead4 40%, #14b8a6 100%);
    top: 25%;
    left: 10%;
    animation-delay: 2s;
    box-shadow:
        0 22px 65px rgba(0, 0, 0, 0.25),
        inset -13px -13px 45px rgba(0, 0, 0, 0.3),
        inset 5px 5px 18px rgba(255, 255, 255, 0.3);
}

/* Orb 5 - Small Purple */
.orb-5 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #ddd6fe 0%, #c4b5fd 40%, #a78bfa 100%);
    bottom: 25%;
    left: 5%;
    animation-delay: 4s;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.25),
        inset -10px -10px 35px rgba(0, 0, 0, 0.3),
        inset 3px 3px 15px rgba(255, 255, 255, 0.3);
}

/* Orb 6 - Medium Green */
.orb-6 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #a7f3d0 0%, #86efac 40%, #22c55e 100%);
    top: 60%;
    left: 25%;
    animation-delay: 2.5s;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        inset -12px -12px 40px rgba(0, 0, 0, 0.3),
        inset 5px 5px 18px rgba(255, 255, 255, 0.3);
}

/* Floating Glass Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatCard 10s ease-in-out infinite;
    z-index: 10;
}

/* Card 1 - User Review */
.card-1 {
    top: 15%;
    left: 15%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation-delay: 0.5s;
}

/* Card 2 - User Review */
.card-2 {
    top: 45%;
    right: 25%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation-delay: 1.5s;
}

.user-mini-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.card-mini-text {
    flex: 1;
}

.card-mini-text > div:first-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.card-mini-brand {
    font-size: 0.75rem;
    color: #6b7280;
}

.card-check {
    color: #10b981;
    font-size: 1.25rem;
}

/* Card 3 - Rating */
.card-3 {
    bottom: 20%;
    left: 20%;
    text-align: center;
    animation-delay: 2.5s;
}

.card-stars {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.card-text-sm {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
}

/* Decorative Rings */
.float-ring {
    position: absolute;
    border: 2px solid rgba(139, 127, 246, 0.2);
    border-radius: 50%;
    animation: pulseRing 6s ease-in-out infinite;
    z-index: 0;
}

.ring-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    border-color: rgba(52, 211, 153, 0.2);
    animation-delay: 3s;
}

/* Animations */
@keyframes floatGentle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(2deg);
    }
    50% {
        transform: translate(-5px, -25px) rotate(-1deg);
    }
    75% {
        transform: translate(-15px, -10px) rotate(1deg);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.orb-shine {
    width: 40%;
    height: 40%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 15%;
    left: 15%;
    filter: blur(10px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-mosaic-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-floating-elements {
        height: 400px;
    }

    .hero-mosaic-title {
        font-size: 3rem;
    }

    .hero-mosaic-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .modern-hero-mosaic {
        overflow: hidden;
    }

    .hero-mosaic-search {
        flex-direction: column;
    }

    .mosaic-search-button {
        width: 100%;
    }

    .hero-mosaic-title {
        font-size: 2.5rem;
    }

    .hero-floating-elements {
        display: none;
    }

    .hero-mosaic-stats {
        gap: 1rem;
    }

    .mosaic-stat-number {
        font-size: 1.5rem;
    }

    .mosaic-stat-label {
        font-size: 0.875rem;
    }
}

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

    .hero-mosaic-stats {
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .mosaic-stat-divider {
        height: 24px;
    }
}

/* Floating Cards - Subtle */
/* Floating Complaint Cards - Resolved */
.floating-complaints-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.complaint-float-card {
    position: absolute;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    border: 1px solid rgba(52, 211, 153, 0.6);
    border-radius: 12px;
    padding: 0.75rem;
    width: 180px;
    animation: floatComplaint 6s ease-in-out infinite;
    pointer-events: all;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 16px rgba(134, 239, 172, 0.15),
        0 1px 4px rgba(110, 231, 183, 0.1);
    backdrop-filter: blur(12px) saturate(150%);
    overflow: hidden;
    opacity: 0.65;
}

.complaint-float-card:hover {
    transform: translateY(-4px) scale(1.02);
    opacity: 1;
    box-shadow:
        0 8px 24px rgba(99, 102, 241, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Positions - Sol Taraf (5 kart) - Rastgele Dağıtılmış */
.complaint-float-card.left-1 {
    top: 2%;
    left: 5%;
    animation-delay: 0s;
}

.complaint-float-card.left-2 {
    top: 22%;
    left: 12%;
    animation-delay: 1.2s;
}

.complaint-float-card.left-3 {
    top: 40%;
    left: 3%;
    animation-delay: 2.3s;
}

.complaint-float-card.left-4 {
    top: 62%;
    left: 10%;
    animation-delay: 3.7s;
}

.complaint-float-card.left-5 {
    top: 82%;
    left: 7%;
    animation-delay: 4.1s;
}

/* Positions - Sağ Taraf (5 kart) - Rastgele Dağıtılmış */
.complaint-float-card.right-1 {
    top: 5%;
    right: 15%;
    animation-delay: 0.8s;
}

.complaint-float-card.right-2 {
    top: 25%;
    right: 8%;
    animation-delay: 1.9s;
}

.complaint-float-card.right-3 {
    top: 45%;
    right: 18%;
    animation-delay: 2.6s;
}

.complaint-float-card.right-4 {
    top: 65%;
    right: 12%;
    animation-delay: 3.4s;
}

.complaint-float-card.right-5 {
    top: 78%;
    right: 20%;
    animation-delay: 4.8s;
}

@keyframes floatComplaint {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    20% {
        transform: translateY(-10px) rotate(0.5deg);
    }
    40% {
        transform: translateY(-5px) rotate(-0.3deg);
    }
    60% {
        transform: translateY(-12px) rotate(0.4deg);
    }
    80% {
        transform: translateY(-7px) rotate(-0.2deg);
    }
}

/* Card Header */
.complaint-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.complaint-user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.625rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.2);
}

.complaint-user-info {
    flex: 1;
    min-width: 0;
}

.complaint-user-name {
    font-size: 0.625rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.125rem;
    letter-spacing: -0.01em;
}

.complaint-brand {
    font-size: 0.5625rem;
    color: white;
    font-weight: 500;
}

/* Card Title */
.complaint-card-title {
    font-size: 0.6875rem;
    color: white;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
}

/* Resolved Badge */
.complaint-resolved-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.5625rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(134, 239, 172, 0.3);
}

.complaint-resolved-badge i {
    font-size: 0.625rem;
}

/* Responsive - Hide on tablets and mobile */
@media (max-width: 1024px) {
    .floating-complaints-container {
        display: none;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Trending Complaints - Elegant Auto Scrolling */
.bento-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    position: relative;
}

.bento-section::before,
.bento-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.bento-section::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.bento-section::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.section-title-modern {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin: 0;
    letter-spacing: -0.02em;
}

.title-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.2));
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-top: 0.625rem;
    font-weight: 400;
}

.link-modern {
    display: none;
}

/* Auto Scrolling Container */
.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

/* Scrolling Row */
.bento-scroll-row {
    display: flex;
    gap: 1.5rem;
    animation: scrollRight 50s linear infinite;
    width: max-content;
}

.bento-scroll-row:nth-child(2) {
    animation: scrollLeft 50s linear infinite;
}

@keyframes scrollRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Elegant Card Style */
.bento-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.75rem;
    min-width: 420px;
    max-width: 420px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.bento-card:hover {
    border-color: #a5b4fc;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
}

.bento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bento-footer,
.bento-footer-compact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.8125rem;
    color: #94a3b8;
    font-weight: 500;
}

.bento-footer span,
.bento-footer-compact span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.bento-footer i,
.bento-footer-compact i {
    font-size: 0.75rem;
}

.bento-meta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex: 1;
}

.bento-avatar,
.bento-avatar-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.bento-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.bento-header .bento-time {
    display: none;
}

.bento-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6366f1;
    font-size: 0.8125rem;
    font-weight: 600;
}

.bento-badge i {
    font-size: 0.625rem;
}

.bento-title,
.bento-title-small {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}

/* Hide unused elements */
.bento-content,
.bento-content-small,
.bento-stats,
.bento-brand,
.bento-brand-small,
.bento-large,
.bento-wide,
.bento-horizontal {
    display: none;
}

.bento-meta-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    flex: 1;
}

/* Success Brands - Detailed Leaderboard */
.success-modern-section {
    padding: 5rem 0;
    background: #fafbfc;
    position: relative;
    overflow: hidden;
}

.success-modern-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -100px;
    left: -150px;
    z-index: 0;
    background:
        radial-gradient(ellipse at 35% 45%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 40%);
    filter: blur(30px);
    border-radius: 45% 55% 60% 40% / 50% 35% 65% 50%;
    animation: abstract-float-1 14s ease-in-out infinite;
    pointer-events: none;
}

.success-modern-section::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    bottom: -120px;
    right: -140px;
    z-index: 0;
    background:
        radial-gradient(ellipse at 60% 55%, rgba(236, 72, 153, 0.1) 0%, transparent 48%),
        radial-gradient(ellipse at 25% 65%, rgba(251, 191, 36, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 75% 25%, rgba(236, 72, 153, 0.06) 0%, transparent 42%);
    filter: blur(30px);
    border-radius: 38% 62% 45% 55% / 60% 48% 52% 40%;
    animation: abstract-float-2 16s ease-in-out infinite;
    pointer-events: none;
}

.success-modern-section .container {
    position: relative;
    z-index: 1;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.success-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.success-modern-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 2px 4px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    display: block;
}

.success-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--card-color, #6366f1) 0%, var(--card-color-light, #818cf8) 100%);
}

.success-modern-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--card-color, #6366f1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modern-card:hover::after {
    opacity: 0.3;
}

.success-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
}

/* Card Header */
.success-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
    background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
    position: relative;
}

.success-rank {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--card-color, #6366f1) 0%, var(--card-color-dark, #4f46e5) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.success-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    background: var(--card-color, #6366f1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.success-modern-card:hover .success-logo {
    transform: scale(1.1);
}

.success-logo::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.success-info {
    flex: 1;
    min-width: 0;
}

.success-brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.success-brand-desc {
    font-size: 0.6875rem;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.success-brand-desc i {
    font-size: 0.625rem;
    color: var(--card-color, #6366f1);
}

/* Metrics Grid */
.success-metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 1.5rem;
}

.metric-box {
    background: transparent;
    border-radius: 0;
    padding: 0.875rem 0;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-box:last-child {
    border-bottom: none;
}

.success-modern-card:hover .metric-box {
    padding-left: 0.5rem;
}

.metric-label {
    font-size: 0.6875rem;
    color: #64748b;
    font-weight: 600;
    margin: 0;
    display: block;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    display: block;
}

.metric-progress {
    display: none;
}

.metric-progress-bar {
    display: none;
}

/* Score Badge */
.success-score-badge {
    background: linear-gradient(135deg, var(--card-color, #6366f1) 0%, var(--card-color-dark, #4f46e5) 100%);
    border: none;
    border-radius: 0 0 24px 24px;
    padding: 1rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 1.25rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.success-score-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

.success-score-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.score-label {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.375rem;
    display: block;
    position: relative;
    z-index: 1;
}

.score-value {
    font-size: 1.875rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    display: block;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* View All Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
    margin-top: 3rem;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
    color: white;
}

.btn-view-all i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .success-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .success-card-header {
        padding: 1.35rem 1.35rem 1.15rem;
    }

    .success-logo {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .metric-value {
        font-size: 1.0625rem;
    }

    .score-value {
        font-size: 1.75rem;
    }

    /* Footer Tablet */
    .footer-brand {
        grid-template-columns: 1fr 1fr !important;
        gap: 2.5rem !important;
    }

    .footer-brand-main {
        grid-column: 1 / -1;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .success-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .success-card-header {
        padding: 1.25rem 1.25rem 1rem;
    }

    .success-logo {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .success-brand-name {
        font-size: 0.9375rem;
    }

    .success-brand-desc {
        font-size: 0.625rem;
    }

    .success-metrics-grid {
        padding: 0 1.25rem;
    }

    .metric-box {
        padding: 0.75rem 0;
    }

    .metric-label {
        font-size: 0.625rem;
    }

    .metric-value {
        font-size: 1rem;
    }

    .score-value {
        font-size: 1.625rem;
    }

    .btn-view-all {
        margin-top: 2rem;
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
    }

    /* Footer Mobile */
    .modern-footer {
        padding: 2.5rem 0 0 !important;
    }

    .footer-brand {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .footer-brand-desc {
        font-size: 0.875rem !important;
    }

    .footer-contact-title,
    .footer-social-title {
        font-size: 0.875rem !important;
        margin-bottom: 1rem !important;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-email {
        font-size: 0.8125rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .footer-title {
        font-size: 0.9375rem !important;
        margin-bottom: 1.125rem !important;
    }

    .footer-links-grid {
        gap: 0.75rem !important;
    }

    .footer-link {
        font-size: 0.8125rem !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem 0 1.5rem !important;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem !important;
    }
}

/* Modern Footer */
.modern-footer {
    background: #2d3340;
    color: #9ca3af;
    padding: 3.5rem 0 0;
}

.footer-brand {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-main {

}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.footer-brand-logo .logo-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.125rem;
}

.footer-brand-logo .logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.footer-brand-desc {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-contact-group {

}

.footer-contact-title {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.275rem;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: all 0.2s;
    padding: 0.5rem;
    border-radius: 6px;
}

.footer-email:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.footer-email i {
    font-size: 0.875rem;
    color: #6366f1;
    opacity: 0.7;
}

.footer-email:hover i {
    opacity: 1;
}

.footer-social-group {

}

.footer-social-title {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-social {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.social-icon:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
    transform: translateY(-2px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section {

}

.footer-title {
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    line-height: 1.6;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.8125rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #9ca3af;
}

/* Features Elegant Section */
.features-elegant-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.features-elegant-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.features-header-elegant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    max-width: 100%;
    margin: 0 0 3rem 0;
    gap: 3rem;
}

.features-label-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    color: #6366f1;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.label-dot {
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.features-title-elegant {
    font-size: 2rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.gradient-text-elegant {
    color: #6366f1;
}

.features-header-content {
    flex: 1;
}

.features-subtitle-elegant {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

/* Features Grid */
.features-grid-elegant {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card-elegant {
    position: relative;
    perspective: 1000px;
}

.feature-card-inner {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-elegant:hover .feature-card-inner {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

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

/* Feature Icon */
.feature-icon-elegant {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon-elegant i {
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.feature-card-elegant:hover .icon-glow {
    opacity: 0.4;
}

.purple-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.purple-gradient .icon-glow {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.pink-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.pink-gradient .icon-glow {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.blue-gradient .icon-glow {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.green-gradient {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.green-gradient .icon-glow {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

/* Feature Content */
.feature-title-elegant {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature-desc-elegant {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    flex: 1;
}

.feature-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    pointer-events: none;
}

/* CTA Button */
.btn-elegant-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-elegant-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
}

.btn-elegant-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-elegant-primary:hover .btn-elegant-shine {
    left: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid-elegant {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-header-elegant {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .features-title-elegant {
        font-size: 1.75rem;
    }

    .features-grid-elegant {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card-inner {
        padding: 2rem 1.5rem;
    }

    .btn-elegant-primary {
        width: 100%;
        justify-content: center;
    }
}

/* CTA Corporate */
.cta-ultra-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.cta-glow-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}

.cta-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.cta-modern-content {
    text-align: left;
    position: relative;
    z-index: 10;
}

.cta-icon-mega {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 2rem 0;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
}

.cta-image-wrapper {
    position: relative;
    z-index: 10;
}

.cta-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-mega-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta-mega-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.cta-buttons-modern {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-modern-content {
        text-align: center;
    }

    .cta-icon-mega {
        margin: 0 auto 2rem;
    }

    .cta-buttons-modern {
        justify-content: center;
    }
}

.btn-cta-primary {
    position: relative;
    background: white;
    border: 1px solid white;
    color: #6366f1;
    padding: 1.125rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    background: #f3f4f6;
    color: #4f46e5;
}

.btn-shine {
    display: none;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (min-width: 1280px) {
    .floating-cards-container {
        display: block;
    }
}

@media (max-width: 1024px) {
    .hero-massive-title {
        font-size: 2.75rem;
    }

    .success-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: auto;
        padding: 3rem 0 2rem;
    }

    .hero-massive-title {
        font-size: 2.25rem;
    }

    .hero-massive-description {
        font-size: 1rem;
    }

    .hero-stats-row {
        gap: 1.5rem;
        padding: 1.25rem 1rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .search-glass-box {
        flex-wrap: wrap;
    }

    .search-glass-button {
        width: 100%;
        justify-content: center;
    }

    .popular-searches {
        font-size: 0.8rem;
    }

    .bento-section {
        padding: 3rem 0;
    }

    .bento-section::before,
    .bento-section::after {
        width: 80px;
    }

    .section-header-modern {
        margin-bottom: 2rem;
    }

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

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

    .section-subtitle {
        font-size: 0.875rem;
    }

    .bento-grid {
        gap: 1.25rem;
    }

    .bento-scroll-row {
        animation-duration: 35s;
        gap: 1.25rem;
    }

    .bento-card {
        min-width: 340px;
        max-width: 340px;
        padding: 1.5rem;
        border-radius: 14px;
    }

    .bento-card:hover {
        border-color: #a5b4fc;
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    }

    .bento-title,
    .bento-title-small {
        font-size: 0.9375rem;
    }

    .bento-avatar,
    .bento-avatar-small {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .bento-name {
        font-size: 0.875rem;
    }

    .bento-badge {
        font-size: 0.75rem;
    }

    .bento-time {
        font-size: 0.75rem;
        padding: 0.3rem 0.625rem;
    }

    .success-modern-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-right {
        grid-template-columns: 1fr;
    }

    .features-title {
        font-size: 2rem;
    }

    .cta-mega-title {
        font-size: 2rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .hero-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stat-item {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .hero-stat-item:last-child {
        border-bottom: none;
    }
}
