/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f093fb 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: none;
    position: relative;
}

.gradient-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f093fb 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #ffffff 0%, #f093fb 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    50% {
        background: linear-gradient(135deg, #f093fb 0%, #ffffff 50%, #f093fb 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #667eea;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #764ba2;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0.8rem 2rem;
    box-shadow: none;
    border: none;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    color: #667eea;
}

.nav-brand i {
    color: #667eea;
    font-size: 1.2em;
}

.nav-brand:hover i {
    color: #5a67d8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    font-weight: 600;
}

.nav-link.active:hover {
    color: #5a67d8;
    background: rgba(102, 126, 234, 0.15);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.7rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding-left: 1.2rem;
}

.nav-cta {
    margin-left: 1rem;
}

.nav-cta .btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.nav-cta .btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.1);
}

.hamburger:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.mobile-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu .nav-cta .btn {
    font-size: 1.2rem;
    padding: 16px 32px;
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mobile-menu .nav-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    font-size: 2rem;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content > *:not(.hero-buttons) {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation-delay: 0.2s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation-delay: 0.4s;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex !important;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    position: relative !important;
    z-index: 999 !important;
    animation: none !important;
    pointer-events: auto !important;
}

.hero-buttons .btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    transform: scale(1) !important;
    animation: none !important;
    pointer-events: auto !important;
    position: relative !important;
}

.hero-buttons .btn:nth-child(1) {
    animation: none !important;
}

.hero-buttons .btn:nth-child(2) {
    animation: none !important;
}

/* Remove any animation delays that might hide buttons */
.hero-buttons .btn:nth-child(1),
.hero-buttons .btn:nth-child(2) {
    animation-delay: 0s !important;
}

/* Additional CTA button visibility fix */
.hero-buttons, .hero-buttons .btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: auto !important;
}

.hero-buttons .btn {
    display: inline-flex !important;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation-delay: 0.8s;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease-out forwards;
}

.stat:nth-child(1) {
    animation-delay: 1s;
}

.stat:nth-child(2) {
    animation-delay: 1.2s;
}

.stat:nth-child(3) {
    animation-delay: 1.4s;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    animation: pulse 2s infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Hero Graphics */
.hero-image {
    position: relative;
    height: 500px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.5s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* E-commerce Vector Illustration */
.hero-vector-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Main E-commerce Hub */
.ecommerce-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    animation: hubPulse 3s ease-in-out infinite;
    position: relative;
}

.hub-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: hubGlow 2s ease-in-out infinite alternate;
}

.hub-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.hub-text {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
}

@keyframes hubPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes hubGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.1;
    }
}

/* Connection Lines */
.connection-line {
    position: absolute;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    opacity: 0.8;
    animation: lineGrow 2s ease-in-out infinite alternate;
    z-index: 1;
}

.connection-line::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #667eea;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    animation: arrowPulse 2s ease-in-out infinite;
    z-index: 2;
}

.connection-line::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    animation: dotPulse 2s ease-in-out infinite;
    z-index: 2;
}

.line-1 {
    width: 80px;
    height: 3px;
    top: 50%;
    left: 70px;
    transform: translateY(-50%) rotate(-30deg);
    transform-origin: left center;
}

.line-1::after {
    border-left-color: #667eea;
    animation-delay: 0.2s;
}

.line-2 {
    width: 70px;
    height: 3px;
    top: 30%;
    right: 70px;
    transform: translateY(-50%) rotate(30deg);
    transform-origin: right center;
}

.line-2::after {
    left: -8px;
    right: auto;
    transform: translateY(-50%) rotate(180deg);
    border-left-color: #764ba2;
    animation-delay: 0.4s;
}

.line-3 {
    width: 85px;
    height: 3px;
    bottom: 30%;
    right: 70px;
    transform: translateY(50%) rotate(-30deg);
    transform-origin: right center;
}

.line-3::after {
    left: -8px;
    right: auto;
    transform: translateY(-50%) rotate(180deg);
    border-left-color: #f093fb;
    animation-delay: 0.6s;
}

.line-4 {
    width: 80px;
    height: 3px;
    bottom: 50%;
    left: 70px;
    transform: translateY(50%) rotate(30deg);
    transform-origin: left center;
}

.line-4::after {
    border-left-color: #667eea;
    animation-delay: 0.8s;
}

.line-5 {
    width: 75px;
    height: 3px;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    transform-origin: center;
}

.line-5::after {
    border-left-color: #764ba2;
    animation-delay: 1s;
}

.line-6 {
    width: 75px;
    height: 3px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    transform-origin: center;
}

.line-6::after {
    border-left-color: #f093fb;
    animation-delay: 1.2s;
}

@keyframes lineGrow {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes arrowPulse {
    0% {
        transform: translateY(-50%) scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.9;
    }
}

@keyframes dotPulse {
    0% {
        transform: translateY(-50%) scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.9;
    }
}

/* Platform Nodes */
.platform-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: nodeFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-node:hover {
    transform: translateY(-10px) scale(1.1);
}

.node-circle {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    border: 3px solid #667eea;
    transition: all 0.3s ease;
}

.node-circle:hover {
    background: #667eea;
    color: white;
    transform: rotate(360deg);
}

.node-circle i {
    font-size: 1.8rem;
    color: #667eea;
    transition: color 0.3s ease;
}

.node-circle:hover i {
    color: white;
}

.node-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Node Positions */
.node-1 {
    top: 15%;
    left: 70%;
    animation-delay: 0.5s;
}

.node-2 {
    top: 40%;
    left: 85%;
    animation-delay: 0.7s;
}

.node-3 {
    top: 40%;
    left: 15%;
    animation-delay: 0.9s;
}

.node-4 {
    top: 15%;
    left: 30%;
    animation-delay: 1.1s;
}

.node-5 {
    top: 75%;
    left: 70%;
    animation-delay: 1.3s;
}

.node-6 {
    top: 75%;
    left: 30%;
    animation-delay: 1.5s;
}

@keyframes nodeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatAround 6s ease-in-out infinite;
    opacity: 0.8;
}

.floating-element i {
    font-size: 1.2rem;
    color: white;
}

.elem-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.elem-2 {
    top: 80%;
    left: 85%;
    animation-delay: 1.5s;
}

.elem-3 {
    top: 20%;
    left: 85%;
    animation-delay: 3s;
}

.elem-4 {
    top: 80%;
    left: 10%;
    animation-delay: 4.5s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

/* Data Flow Animation */
.data-flow {
    position: absolute;
    width: 100px;
    height: 3px;
    overflow: hidden;
}

.data-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    animation: dataMove 3s linear infinite;
}

.data-particle:nth-child(1) {
    animation-delay: 0s;
}

.data-particle:nth-child(2) {
    animation-delay: 1s;
}

.data-particle:nth-child(3) {
    animation-delay: 2s;
}

.flow-1 {
    top: 35%;
    left: 60%;
    transform: rotate(45deg);
}

.flow-2 {
    top: 55%;
    left: 35%;
    transform: rotate(-45deg);
}

.flow-3 {
    top: 25%;
    left: 40%;
    transform: rotate(135deg);
}

@keyframes dataMove {
    0% {
        left: -10px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 100px;
        opacity: 0;
    }
}

/* Background Decorations */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: decorationSpin 20s linear infinite;
}

.dec-1 {
    top: 5%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    animation-delay: 0s;
}

.dec-2 {
    top: 10%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #764ba2, #667eea);
    animation-delay: 5s;
}

.dec-3 {
    bottom: 15%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    animation-delay: 10s;
}

.dec-4 {
    bottom: 10%;
    right: 5%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #764ba2, #667eea);
    animation-delay: 15s;
}

@keyframes decorationSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Success Indicators */
.success-indicator {
    position: absolute;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 2s ease-in-out infinite;
    opacity: 0.9;
}

.success-indicator i {
    font-size: 1rem;
    color: white;
}

.success-1 {
    top: 5%;
    left: 50%;
    animation-delay: 0s;
}

.success-2 {
    top: 50%;
    left: 5%;
    animation-delay: 0.7s;
}

.success-3 {
    bottom: 5%;
    right: 50%;
    animation-delay: 1.4s;
}

@keyframes successPop {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Interactive Effects */
.hero-vector-illustration:hover .hub-circle {
    animation-duration: 1s;
}

.hero-vector-illustration:hover .connection-line {
    opacity: 1;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.hero-vector-illustration:hover .platform-node {
    animation-duration: 2s;
}

/* Responsive Design for Vector Illustration */
@media (max-width: 768px) {
    /* Hero kısmı mobil optimizasyonları */
    .hero::before {
        display: none; /* Shimmer animasyonunu kaldır */
    }
    
    .hero-container {
        grid-template-columns: 1fr; /* Tek kolona dönüştür */
        gap: 2rem;
        text-align: center;
    }
    
    .hero-vector-illustration {
        display: none !important; /* Karmaşık animasyonları kaldır */
    }
    
    .hero-graphic {
        display: none; /* Floating card animasyonlarını kaldır */
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        animation: none; /* Pulse animasyonunu kaldır */
    }
    
    /* Animasyon süreleri kısa tutulsun */
    .hero-content > *:not(.hero-buttons) {
        animation-duration: 0.5s;
    }
    
    .stat {
        animation-duration: 0.4s;
    }
}

@media (max-width: 480px) {
    /* Mobilde tüm animasyonları minimize et */
    .hero::before {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-vector-illustration {
        display: none !important;
    }
    
    .hero-graphic {
        display: none;
    }
    
    /* Animasyonları tamamen kaldır */
    .hero-content > *:not(.hero-buttons) {
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }
    
    .stat {
        opacity: 1;
        transform: scale(1);
        animation: none;
    }
    
    .stat-number {
        animation: none;
    }
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.floating-card.animate-in {
    opacity: 1;
    transform: scale(1);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: #667eea;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.floating-card span {
    font-weight: 600;
    color: #333;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 20%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

/* Typing Effect */
.hero-title.typing::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #666;
    line-height: 1.5;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.dashboard-header {
    background: #667eea;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.dashboard-content {
    padding: 2rem;
}

.dashboard-stat {
    margin-bottom: 1.5rem;
}

.stat-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.dashboard-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100px;
}

.chart-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 20px;
    border-radius: 4px 4px 0 0;
    animation: growUp 1s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }
    to {
        height: inherit;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
}

.author-company {
    color: #666;
    font-size: 0.9rem;
}

/* ===== DEMO PANEL SECTION ===== */
.demo-panel {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.demo-screen {
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    margin-top: 50px;
}

.demo-header {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #4a5568;
}

.demo-controls {
    display: flex;
    gap: 8px;
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dot.red {
    background: #ff5f56;
}

.demo-dot.yellow {
    background: #ffbd2e;
}

.demo-dot.green {
    background: #27ca3f;
}

.demo-title-bar {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
}

.demo-content {
    display: flex;
    min-height: 600px;
    background: #f7fafc;
}

.demo-sidebar {
    width: 250px;
    background: #2d3748;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
}

.demo-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    margin-bottom: 32px;
}

.demo-logo i {
    color: #667eea;
    font-size: 24px;
}

.demo-logo span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.demo-nav {
    flex: 1;
}

.demo-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: #a0aec0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-nav-item:hover {
    background: #4a5568;
    color: #ffffff;
}

.demo-nav-item.active {
    background: #667eea;
    color: #ffffff;
}

.demo-nav-item i {
    font-size: 16px;
    width: 16px;
}

.demo-main {
    flex: 1;
    padding: 32px;
    background: #ffffff;
}

.demo-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.demo-main-header h3 {
    color: #2d3748;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.demo-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.integration-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-card.active {
    border-color: #10b981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.integration-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.integration-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.integration-logo.trendyol {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.integration-logo.hepsiburada {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.integration-logo.woocommerce {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.integration-logo.opencart {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.logo-placeholder {
    color: #ffffff;
    font-size: 24px;
}

.integration-info {
    margin-bottom: 16px;
}

.integration-info h4 {
    color: #1a202c;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.connected {
    background: #dcfce7;
    color: #166534;
}

.status.disconnected {
    background: #fee2e2;
    color: #dc2626;
}

.integration-stats {
    display: flex;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}

.stat-value {
    color: #1f2937;
    font-size: 18px;
    font-weight: 700;
}

.integration-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.connect-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.demo-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.chart-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chart-card h4 {
    color: #1a202c;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.chart-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 150px;
}

.chart-bar {
    width: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    transform: scaleY(1.1);
}

.pie-chart {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(
        #f97316 0deg 120deg,
        #dc2626 120deg 200deg,
        #7c3aed 200deg 360deg
    );
    margin: 0 auto;
    position: relative;
}

.pie-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .demo-panel {
        padding: 80px 0;
    }
    
    .demo-content {
        flex-direction: column;
    }
    
    .demo-sidebar {
        width: 100%;
        padding: 16px 0;
    }
    
    .demo-nav {
        display: flex;
        overflow-x: auto;
        padding: 0 16px;
    }
    
    .demo-nav-item {
        white-space: nowrap;
        padding: 8px 16px;
    }
    
    .demo-main {
        padding: 24px 16px;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-charts {
        grid-template-columns: 1fr;
    }
}

/* Demo Info Section */
.demo-info {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    position: relative;
}

.demo-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 20px 20px 0 0;
}

.demo-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.demo-info-card {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.demo-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.demo-info-card:hover::before {
    transform: translateX(0);
}

.demo-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.demo-info-card:hover .demo-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.demo-info-card h3 {
    color: #1a202c;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.demo-info-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .demo-info {
        margin-top: 40px;
        padding: 40px 0;
    }
    
    .demo-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .demo-info-card {
        padding: 30px 20px;
    }
    
    .demo-info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .demo-info-card h3 {
        font-size: 20px;
    }
    
    .demo-info-card p {
        font-size: 14px;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid #667eea;
}

.pricing-card.popular::before {
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.popular-badge i {
    font-size: 0.8rem;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.yearly-note {
    color: #10b981;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Pricing Features */
.pricing-features {
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: #f8f9fa;
    padding-left: 1rem;
    border-radius: 8px;
}

.feature-item i {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.feature-item.disabled {
    opacity: 0.5;
}

.feature-item.disabled:hover {
    background: transparent;
    padding-left: 0;
}

.feature-item .fa-check {
    color: #10b981;
}

.feature-item .fa-times {
    color: #ef4444;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
}

.trial-info {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Comparison */
.pricing-comparison {
    margin-bottom: 4rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.comparison-header p {
    color: #666;
    font-size: 1.1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.comparison-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.comparison-feature:hover {
    transform: translateY(-5px);
}

.comparison-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-feature .feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.comparison-feature .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.comparison-feature .feature-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Pricing FAQ */
.pricing-faq {
    margin-bottom: 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Animations */
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.4s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 1rem;
    }
    
    .plan-price {
        flex-direction: column;
        gap: 0;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .comparison-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-feature .feature-icon {
        align-self: center;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info .section-title {
    color: white;
    text-align: left;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-feature i {
    color: #4ade80;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:hover::before {
    opacity: 1;
}

.whatsapp-button i {
    position: relative;
    z-index: 1;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Mobile responsiveness for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: #667eea;
}

.footer-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background: #667eea;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-container {
        padding: 0.6rem 1.5rem;
        border-radius: 40px;
    }
    
    .nav-brand {
        font-size: 1.5rem;
        padding: 0.4rem 0.8rem;
    }
    
    .nav-brand i {
        font-size: 1.1em;
    }
    
    .header {
        padding: 0.5rem 0;
    }

    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
        min-width: auto;
    }

    .dropdown-item {
        padding: 0.5rem 0;
        font-size: 0.85rem;
        color: #666;
    }

    .dropdown-item:hover {
        background: transparent;
        color: #667eea;
        padding-left: 0;
    }

    .dropdown-toggle i {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-brand {
        margin-left: -5px;
        font-size: 1.4rem;
        gap: 0.6rem;
    }
    
    .nav-brand i {
        font-size: 1.6rem;
    }
    
    .hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 60%, #f093fb 100%);
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        color: #ffffff;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-number {
        color: #ffffff;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
        animation: none !important; /* Pulse animasyonunu kaldır */
    }
    
    .stat-label {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    

} 

/* Pre-Registration Section */
.preregister {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.preregister::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.preregister-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.preregister-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.preregister-header {
    text-align: center;
    margin-bottom: 3rem;
}

.preregister-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgePulse 2s infinite alternate;
}

.preregister-badge i {
    animation: starSpin 3s linear infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    100% {
        box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
    }
}

@keyframes starSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preregister-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.preregister-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.preregister-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.preregister-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    animation: progressShimmer 3s linear infinite;
}

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.preregister-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: #667eea;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group input:valid,
.form-group select:valid {
    border-color: #28a745;
}

.form-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.form-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.form-benefits .benefit-item i {
    color: #28a745;
    font-size: 1.1rem;
    animation: checkBounce 2s infinite;
}

@keyframes checkBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.preregister-submit {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.preregister-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.preregister-submit.loading {
    pointer-events: none;
    background: #cccccc;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preregister-submit.loading .btn-loading {
    opacity: 1;
}

.preregister-submit.loading > i,
.preregister-submit.loading > span {
    opacity: 0;
}

.preregister-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
    animation: numberPulse 2s infinite alternate;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

@keyframes numberPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Success Animation */
.preregister-success {
    display: none;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.preregister-success.show {
    display: block;
    animation: successSlideIn 0.8s ease-out;
}

@keyframes successSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-animation {
    position: relative;
    margin-bottom: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: successBounce 0.6s ease-out;
}

.success-icon i {
    font-size: 2rem;
    color: white;
}

@keyframes successBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-confetti {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #667eea;
    animation: confettiFall 2s linear infinite;
}

.confetti:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    background: #667eea;
}

.confetti:nth-child(2) {
    left: 40%;
    animation-delay: 0.2s;
    background: #764ba2;
}

.confetti:nth-child(3) {
    left: 60%;
    animation-delay: 0.4s;
    background: #f093fb;
}

.confetti:nth-child(4) {
    left: 80%;
    animation-delay: 0.6s;
    background: #28a745;
}

.confetti:nth-child(5) {
    left: 100%;
    animation-delay: 0.8s;
    background: #ffc107;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(200px) rotate(360deg);
        opacity: 0;
    }
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-next-steps {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.success-next-steps h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.success-next-steps ul {
    list-style: none;
    padding: 0;
}

.success-next-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #333;
}

.success-next-steps li i {
    color: #667eea;
    font-size: 1.1rem;
    width: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .preregister {
        padding: 60px 0;
    }
    
    .preregister-title {
        font-size: 2.2rem;
    }
    
    .preregister-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-benefits {
        grid-template-columns: 1fr;
    }
    
    .preregister-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .preregister-container {
        padding: 0 15px;
    }
    
    .preregister-title {
        font-size: 1.8rem;
    }
    
    .preregister-form-container {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon i {
        font-size: 1.5rem;
    }
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge.new {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.discount {
    background: #e53e3e;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-buy-btn,
.product-demo-btn {
    flex: 1;
    padding: 0.8rem;
    font-size: 0.9rem;
}

.products-cta {
    text-align: center;
}

.load-more-btn {
    padding: 1rem 2rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.services .section-title,
.services .section-description {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card.featured {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: #f093fb;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: #48bb78;
    font-size: 0.8rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.price-from {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.price-period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.service-request-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem;
}

.service-request-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.services-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.services-cta h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.services-cta .btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.services-cta .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Product Filtering Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.product-card.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

.product-card.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Enhanced Product Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

/* Product Count Display */
.product-count-display {
    text-align: center;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    font-weight: 600;
    color: #667eea;
    display: inline-block;
}

/* Category Button Enhancements */
.category-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn.active {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

/* Loading Animation for Products */
.product-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

.product-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 1.5s infinite;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Procurement Info Section */
.procurement-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.procurement-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
}

.procurement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.procurement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.procurement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.procurement-card:hover .procurement-icon {
    transform: scale(1.1) rotate(5deg);
}

.procurement-icon i {
    font-size: 1.8rem;
    color: white;
}

.procurement-content h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.procurement-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Procurement Steps */
.procurement-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-text {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

/* Advantage List */
.advantage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.advantage-item i {
    color: #48bb78;
    font-size: 1rem;
}

.advantage-item span {
    color: #555;
    font-weight: 500;
}

/* Procurement Link */
.procurement-link {
    margin-top: 1.5rem;
}

.procurement-link .btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
}

/* Procurement CTA Section */
.procurement-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.procurement-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.procurement-cta .cta-content {
    position: relative;
    z-index: 2;
}

.procurement-cta h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.procurement-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    min-width: 200px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: #667eea;
    color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .procurement-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .procurement-card {
        padding: 1.5rem;
    }
    
    .procurement-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step {
        flex-direction: row;
        text-align: left;
    }
    
    .step-number {
        margin-bottom: 0;
        margin-right: 1rem;
    }
    
    .advantage-list {
        grid-template-columns: 1fr;
    }
    
    .procurement-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .procurement-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Procurement Modal Styles */
.procurement-modal .modal-content {
    max-width: 600px;
    width: 95%;
}

.procurement-info-modal {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.procurement-info-modal p {
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.biomak-link {
    margin-top: 1rem;
}

.biomak-link .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.procurement-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.procurement-modal .modal-header {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

/* Modal Base Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.modal-actions .btn {
    padding: 0.8rem 1.5rem;
    min-width: 120px;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Mobile Modal Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
}

/* Reduce motion için genel kural */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-content > *:not(.hero-buttons) {
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }
    
    .stat {
        opacity: 1;
        transform: scale(1);
        animation: none;
    }
    
    .stat-number {
        animation: none;
    }
}
