/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Profil Bildirimi */
.profile-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10000;
    max-width: 350px;
    animation: slideInUp 0.5s ease;
    transition: all 0.3s ease;
}

.profile-notification:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
}

.notification-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.notification-text p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 0;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-small:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.notification-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #060311;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(6, 3, 17, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logo-text.premium-glow {
    color: #fbbf24;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: premiumShine 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

@keyframes premiumShine {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.9));
    }
}

.navbar .status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 400;
    color: #cccccc;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.offline {
    background: #ff4444;
    animation: none;
}

.status-text.offline {
    color: #ff4444;
}

.status-dot,
.status-text {
    transition: all 0.3s ease;
}

.navbar .status-indicator {
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    overflow: hidden;
}

.nav-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #00d4ff;
}

.nav-item svg {
    transition: transform 0.3s ease;
}

.nav-item:hover svg {
    transform: rotate(180deg);
}

/* Mega Menu Styles */
.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 8px);
    background: radial-gradient(80% 120% at 50% 0%, rgba(17, 12, 32, 0.98) 0%, rgba(6, 3, 17, 0.98) 60%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 900px;
    opacity: 0;
    visibility: hidden;
    transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease, visibility 0s linear 200ms, box-shadow 200ms ease;
    z-index: 10000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.mega-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #22d3ee);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    opacity: 0.6;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transition-delay: 0s, 0s, 0s, 0s;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 2.5rem;
}

.mega-menu-section {
    display: flex;
    flex-direction: column;
}

.mega-menu-section h3 {
    color: #a5b4fc;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.mega-menu-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-section ul li {
    margin-bottom: 0.5rem;
}

.mega-menu-section ul li a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    display: block;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
}

.mega-menu-section ul li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(2px);
}

/* Highlight sections */
.feature-highlight,
.success-story,
.community-highlight,
.update-highlight,
.offer-highlight {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 0;
    padding: 1rem;
    margin-top: 1rem;
}

.feature-icon,
.story-icon,
.community-icon,
.update-icon,
.offer-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-text h4,
.story-text h4,
.community-text h4,
.update-text h4,
.offer-text h4 {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-text p,
.story-text p,
.community-text p,
.update-text p,
.offer-text p {
    color: #cccccc;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

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

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

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

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

/* Responsive mega menu */
@media (max-width: 1024px) {
    .mega-menu {
        min-width: 600px;
        left: 0;
        transform: translateY(8px);
        border-radius: 12px;
    }
    
    .mega-dropdown:hover .mega-menu {
        transform: translateY(0);
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(6, 3, 17, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        font-weight: 500;
    }

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

    .nav-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0;
        padding: 0.75rem;
        margin: 0 -0.5rem;
    }

    .mega-menu {
        position: static;
        min-width: auto;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mega-menu-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }

    .mega-menu-section:last-child {
        border-bottom: none;
    }



    .nav-notifications,
    .nav-quick-actions {
        display: none;
    }

    .nav-actions {
        gap: 1rem;
    }



    .logo-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }
    
    .premium-link {
        font-size: 0.9rem;
    }
    
    .premium-icon {
        width: 62px;
        height: 62px;
    }

    .user-avatar .username {
        display: none;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}



/* Notification Styles */
.nav-notifications {
    position: relative;
}

.notification-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.notification-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00d4ff;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Quick Actions */
.nav-quick-actions {
    position: relative;
}

.quick-action-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00d4ff;
}

.quick-actions-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(6, 3, 17, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-quick-actions:hover .quick-actions-menu {
    opacity: 1;
    visibility: visible;
}

.quick-action-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: #ffffff;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.quick-action-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00d4ff;
}

.quick-action-item svg {
    color: inherit;
}

/* Enhanced User Dropdown */
.dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.user-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.user-email {
    color: #cccccc;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown .user-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0;
    transition: background-color 0.3s ease;
    color: white;
    border: none;
    background: none;
    width: auto;
    height: auto;
}

.user-dropdown .user-avatar:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-dropdown .user-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-dropdown .username {
    font-weight: 500;
    font-size: 0.9rem;
    color: white;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.user-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(6, 3, 17, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.user-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

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

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.dropdown-item .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.logout-btn {
    color: #ff6b6b !important;
}

.logout-btn:hover {
    background: rgba(255, 107, 107, 0.1) !important;
    color: #ff6b6b !important;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00d4ff;
}

.premium-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-link:hover {
    color: #00d4ff;
    transform: translateY(-1px);
}

.premium-icon {
    width: 84px;
    height: 84px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.premium-link:hover .premium-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(180deg);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-image {
    height: 20px;
    width: auto;
}

.btn-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-left: 8px;
}

.btn-text {
    font-weight: 600;
    font-size: 1rem;
    color: inherit;
}

.btn-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-dashboard:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: #ffffff;
}

.btn-dashboard svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    padding-top: 70px;
    background: #060311;
    position: relative;
    overflow: hidden;
}

.hero-background-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    margin-bottom: 2rem;
}

.hero-title-image {
    max-width: 30%;
    height: auto;
    max-height: 120px;
}

.hero-description-image {
    margin-bottom: 3rem;
}

.hero-desc-image {
    max-width: 30%;
    height: auto;
    max-height: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title-image {
        max-height: 80px;
    }
    
    .hero-desc-image {
        max-height: 40px;
    }
    
    .hero-bg-graphic {
        object-position: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover effects */
.nav-item, .btn-primary, .btn-secondary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading state */
.btn-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

.btn-primary.loading .btn-icon {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Trusted Section */
.trusted-section {
    padding: 60px 0;
    background: transparent;
    text-align: center;
}

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

.trusted-image {
    max-width: 30%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.trusted-image:hover {
    transform: translateY(-5px);
}

/* Main Title Section */
.main-title-section {
    background: transparent;
    padding: 60px 0;
    text-align: left;
}

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

.main-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 44.1px;
    font-weight: 400;
    line-height: 57.6px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

/* Vertical Tab Navigation Section */
.vertical-tabs-section {
    background: transparent;
    padding: 60px 0;
}

.vertical-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Panel - Tab Navigation */
.tab-navigation {
    flex: 0 0 300px;
    position: relative;
}

/* ALGORITHM Badge */
.algorithm-badge {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.8s ease forwards;
}

.algorithm-image {
    max-width: 80px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.algorithm-image:hover {
    transform: scale(1.05);
}

/* Purple Line */
.purple-line {
    position: absolute;
    left: -20px;
    top: 100px;
    height: 466px;
    width: 10px;
    background: linear-gradient(to bottom, #B7A6FB, #9B59B6);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(183, 166, 251, 0.4);
    opacity: 0;
    transform: scaleY(0);
    animation: growLine 1s ease forwards;
    animation-delay: 0.5s;
    transform-origin: top;
    transition: all 0.5s ease;
}

@keyframes growLine {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Gray Lines with CSS Variables for Animation */
.purple-line::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    height: 466px;
    width: 4px;
    background: var(--before-bg, rgba(255, 255, 255, 0.1));
    border-radius: 2px;
    transition: all 0.5s ease;
    box-shadow: var(--before-shadow, none);
}

.purple-line::after {
    content: '';
    position: absolute;
    left: -16px;
    top: 0;
    height: 466px;
    width: 2px;
    background: var(--after-bg, rgba(255, 255, 255, 0.05));
    border-radius: 1px;
    transition: all 0.5s ease;
    box-shadow: var(--after-shadow, none);
}

/* Tab List */
.tab-list {
    margin-left: 30px;
}

.tab-item {
    padding: 40px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

.tab-item:nth-child(1) { animation-delay: 0.1s; }
.tab-item:nth-child(2) { animation-delay: 0.2s; }
.tab-item:nth-child(3) { animation-delay: 0.3s; }
.tab-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tab-item.active .tab-text {
    color: #ffffff;
    font-weight: 500;
}

.tab-item:not(.active) .tab-text {
    color: rgba(255, 255, 255, 0.6);
}

/* Tab Item Active States */
.tab-item.active .purple-line {
    left: -20px;
    top: 100px;
    background: linear-gradient(to bottom, #B7A6FB, #9B59B6);
    box-shadow: 0 0 20px rgba(183, 166, 251, 0.6);
}

.tab-item.active .purple-line::before {
    background: linear-gradient(to bottom, #B7A6FB, #9B59B6);
    box-shadow: 0 0 10px rgba(183, 166, 251, 0.3);
}

.tab-item.active .purple-line::after {
    background: linear-gradient(to bottom, #B7A6FB, #9B59B6);
    box-shadow: 0 0 5px rgba(183, 166, 251, 0.2);
}

/* Tab Item Hover States */
.tab-item:hover .purple-line {
    left: -15px;
    background: linear-gradient(to bottom, #C4B7FB, #A569B6);
    box-shadow: 0 0 18px rgba(196, 183, 251, 0.5);
}

.tab-item:hover .purple-line::before {
    left: -7px;
    background: linear-gradient(to bottom, #C4B7FB, #A569B6);
    box-shadow: 0 0 8px rgba(196, 183, 251, 0.3);
}

.tab-item:hover .purple-line::after {
    left: -11px;
    background: linear-gradient(to bottom, #C4B7FB, #A569B6);
    box-shadow: 0 0 4px rgba(196, 183, 251, 0.2);
}

.tab-item:hover .tab-text {
    color: #ffffff;
}

.tab-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0px;
    transition: all 0.3s ease;
}

/* Right Panel - Content Area */
.tab-content {
    flex: 1;
    min-height: 300px;
}

.content-panel {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.5s ease forwards;
}

.content-panel.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.content-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 60px 0 20px 0;
    text-align: left;
}

.content-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.15px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 20px 0;
    text-align: left;
    max-width: 600px;
}

.learn-more-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0px;
    color: #B7A6FB;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #C4B7FB;
}

/* Responsive */
@media (max-width: 768px) {
    .trusted-section {
        padding: 40px 0;
    }
    
    .trusted-container {
        padding: 0 15px;
    }
    
    .main-title-section {
        padding: 40px 0;
    }
    
    .main-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .vertical-tabs-section {
        padding: 40px 0;
    }
    
    .vertical-tabs-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .tab-navigation {
        flex: none;
        width: 100%;
    }
    
    .algorithm-image {
        max-width: 60px;
    }
    
    .purple-line {
        display: none;
    }
    
    .tab-list {
        margin-left: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab-item {
        padding: 10px 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .tab-item.active {
        background: rgba(183, 166, 251, 0.2);
    }
    
    .content-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .content-description {
        font-size: 14px;
        line-height: 28px;
        max-width: 100%;
    }
    
    .learn-more-link {
        font-size: 14px;
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    background: #0a061a;
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stat-card p {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.stat-card .online {
    color: #4ade80;
}

/* API Section */
.api-section {
    padding: 4rem 2rem;
    background: #060311;
}

.api-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.api-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.api-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #a1a1aa;
}

.api-endpoints {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.api-link {
    color: #3b82f6;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #1a1a2e;
    border-radius: 0;
    border: 1px solid #2d2d44;
    transition: all 0.3s ease;
    font-weight: 500;
}

.api-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

/* Partners Section */
.partners-section {
    padding: 4rem 2rem;
    background: #060311;
    color: white;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.partners-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid #2d2d44;
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 100%;
}

.partners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.partners-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.info-icon {
    color: #00d4ff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.info-icon:hover {
    color: #ffffff;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partners-image {
    max-width: 30%;
    height: auto;
    border-radius: 0;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(6, 3, 17, 0.6);
    border-radius: 0;
    border: 1px solid rgba(45, 45, 68, 0.5);
    transition: all 0.3s ease;
}

.partner-item:hover {
    background: rgba(6, 3, 17, 0.8);
    border-color: #2d2d44;
    transform: translateY(-2px);
}

.partner-rank {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00d4ff;
    min-width: 24px;
}

.partner-avatar {
    position: relative;
    width: 48px;
    height: 48px;
}

.partner-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2d2d44;
}

.crown-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.partner-info {
    flex: 1;
}

.partner-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.partner-stats {
    font-size: 0.875rem;
    color: #a1a1aa;
}

/* Commands Section */
.commands-section {
    padding: 4rem 2rem;
    background: #0a061a;
    color: white;
}

.commands-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.commands-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.commands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.command-item {
    background: #1a1a2e;
    padding: 1.5rem;
    border-radius: 0;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid #2d2d44;
}

.command-item:hover {
    transform: translateY(-3px);
    background: #2d2d44;
}

.command-item code {
    background: #060311;
    color: #00d4ff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* Footer */
.footer {
    position: relative;
    background: #060311;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 0 0 250px;
}

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

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex: 1;
    justify-content: space-between;
}

.footer-column h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content .footer-payment-methods {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Kredi Kartı Logoları */
.footer-payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.payment-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
    transform: scale(1);
}

.payment-logo:hover {
    filter: brightness(1);
    transform: scale(1.1);
}

/* Browser Badgeleri */
.footer-badges {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-badges-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.browser-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.browser-badge {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.8);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.browser-badge:hover {
    filter: brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .commands-list {
        grid-template-columns: 1fr;
    }
    
    .api-endpoints {
        flex-direction: column;
        align-items: center;
    }
    
    .partners-card {
        margin: 0 1rem;
    }
    
    .stats-container h2,
    .api-container h2,
    .commands-container h2 {
        font-size: 2rem;
    }
    
    /* Footer Responsive */
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-brand {
        flex: none;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .footer-payment-methods {
        order: -1;
        gap: 1rem;
    }
    
    .payment-logos {
        gap: 0.5rem;
    }
    
    .payment-logo {
        height: 28px;
    }
    
    /* Browser Badgeleri Mobile */
    .footer-badges {
        padding: 1rem 0;
    }
    
    .browser-badges {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .browser-badge {
        height: 34px;
    }
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-image {
    height: 20px;
    width: auto;
}

.btn-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-left: 8px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    padding-top: 70px;
    background: #060311;
    position: relative;
    overflow: hidden;
}

.hero-background-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    margin-bottom: 2rem;
}

.hero-title-image {
    max-width: 30%;
    height: auto;
    max-height: 120px;
}

.hero-description-image {
    margin-bottom: 3rem;
}

.hero-desc-image {
    max-width: 30%;
    height: auto;
    max-height: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title-image {
        max-height: 80px;
    }
    
    .hero-desc-image {
        max-height: 40px;
    }
    
    .hero-bg-graphic {
        object-position: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover effects */
.nav-item, .btn-primary, .btn-secondary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading state */
.btn-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

.btn-primary.loading .btn-icon {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Trusted Section */
.trusted-section {
    padding: 60px 0;
    background: transparent;
    text-align: center;
}

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

.trusted-image {
    max-width: 30%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.trusted-image:hover {
    transform: translateY(-5px);
}

/* Features Section */
.features-section {
    background: transparent;
    padding: 80px 0;
}

/* More Features Line */
.more-features-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    gap: 20px;
}

.more-features-line .line {
    flex: 1;
    height: 1px;
    background: #374151;
    max-width: 200px;
}

.more-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    white-space: nowrap;
}

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

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

/* Feature Text Styles */
.feature-text {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.feature-text::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #8b5cf6, #a855f7);
}

.feature-badge {
    margin-bottom: 20px;
}

.badge-image {
    height: 32px;
    width: auto;
}

.feature-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-image {
    max-width: 100%;
    height: auto;
}

/* Auto Accept System title image - smaller size to match badge */
.feature-row.reverse .title-image {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #8b5cf6;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more-text {
    color: #8b5cf6;
}

.learn-more-arrow {
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

.learn-more-link:hover {
    color: #a855f7;
}

.learn-more-link:hover .learn-more-text {
    color: #a855f7;
}

.learn-more-link:hover .learn-more-arrow {
    color: #a855f7;
    transform: translateX(3px);
}

/* Feature Card Styles */
.feature-card {
    flex: 1;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.card-icon-image {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.card-description {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.card-status {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.status-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #d0d0d0;
}

.status-icon {
    margin-right: 10px;
    font-size: 16px;
}

.card-button {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.button-icon {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .trusted-section {
        padding: 40px 0;
    }
    
    .trusted-container {
        padding: 0 15px;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .features-container {
        padding: 0 15px;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .feature-row.reverse {
        flex-direction: column;
    }
    
    .feature-text,
    .feature-card {
        max-width: 100%;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .feature-description {
        font-size: 16px;
    }
    
    .feature-text::before {
        left: -15px;
    }
}

/* Hero New User Button Styles */
.hero-new-user {
    margin-top: 2rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-new-user {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-new-user:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.5);
}

.btn-new-user svg {
    transition: transform 0.3s ease;
}

.btn-new-user:hover svg {
    transform: rotate(15deg) scale(1.1);
}

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