/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* main color variables */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: #2980b9;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(79, 172, 254, 0.1);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s;
}

.header:hover::after {
    opacity: 0.5;
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 2px;
    transition: transform 0.3s;
}

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

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo-o {
    position: relative;
    display: inline-block;
}

.logo-o::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gradient-3);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.3; }
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-3);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

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

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

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

/* Hero Section - Premium Design */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}

/* Animated Grid Background */
.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.3), transparent);
    animation: linePulse 3s ease-in-out infinite;
}

.grid-line:nth-child(1) {
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    top: 40%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 1s;
}

.grid-line:nth-child(3) {
    top: 60%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 2s;
}

.grid-line:nth-child(4) {
    top: 80%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 1.5s;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Premium Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatPremium 25s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -10%;
    left: -5%;
    opacity: 0.4;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -5%;
    right: -5%;
    opacity: 0.35;
    animation-delay: 8s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 50%;
    left: 85%;
    opacity: 0.3;
    animation-delay: 15s;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    top: 70%;
    left: 10%;
    opacity: 0.25;
    animation-delay: 5s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    top: 20%;
    right: 20%;
    opacity: 0.2;
    animation-delay: 12s;
}

@keyframes floatPremium {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translate(50px, -80px) rotate(90deg) scale(1.1);
    }
    50% { 
        transform: translate(-30px, 50px) rotate(180deg) scale(0.9);
    }
    75% { 
        transform: translate(80px, 30px) rotate(270deg) scale(1.05);
    }
}

/* Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: 12s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 15%;
    animation-delay: 15s;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(100px, -100px) scale(1.5);
        opacity: 1;
    }
}

/* Gradient Orbs */
.hero-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.35) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% { 
        transform: translate(100px, -100px) scale(1.2);
        opacity: 0.8;
    }
    66% { 
        transform: translate(-80px, 80px) scale(0.9);
        opacity: 0.5;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), transform 2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 2s;
    transform: scale(1.15) translateY(20px);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), transform 2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.7) contrast(1.1);
    z-index: 0;
}

.hero-slide.active .hero-image {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(20, 25, 35, 0.85) 0%, 
        rgba(30, 40, 55, 0.75) 50%, 
        rgba(25, 30, 40, 0.8) 100%
    );
    z-index: 1;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(79, 172, 254, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* Content Wrapper */
.hero-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 20;
    pointer-events: none;
}

.hero-content-wrapper > * {
    pointer-events: auto;
}

/* Premium Hero Content */
.hero-content {
    position: relative;
    color: var(--white);
    z-index: 25;
    animation: fadeInUpPremium 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
}

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

.hero-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUpPremium 1s ease 0.2s both;
}

.hero-badge-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-badge {
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.hero-badge::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;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-title {
    margin-bottom: 35px;
    animation: fadeInUpPremium 1s ease 0.3s both;
}

.title-pre {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
}

.title-main-wrapper {
    display: block;
    position: relative;
}

.title-main {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.title-word {
    display: block;
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 
        0 0 30px rgba(79, 172, 254, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}

.title-word:first-child {
    animation: slideInLeft 1s ease 0.4s both;
}

.title-word.title-accent {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: slideInRight 1s ease 0.5s both;
    filter: drop-shadow(0 0 20px rgba(79, 172, 254, 0.5));
}

.title-word.title-accent::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    animation: underlineExpand 1s ease 1s forwards;
}

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

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

@keyframes underlineExpand {
    to {
        width: 100%;
    }
}

.hero-subtitle-wrapper {
    margin-bottom: 50px;
    animation: fadeInUpPremium 1s ease 0.6s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-bottom: 5px;
    line-height: 1.6;
}

.hero-subtitle-accent {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUpPremium 1s ease 0.7s both;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.9);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUpPremium 1s ease 0.8s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.hero-btn span {
    position: relative;
    z-index: 2;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 
        0 4px 20px rgba(79, 172, 254, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 10px 40px rgba(79, 172, 254, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.hero-btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: width 0.4s;
}

.hero-btn-secondary:hover::before {
    width: 100%;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

/* Visual Cards */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1.2s ease 0.5s both;
    z-index: 15;
}

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


@keyframes cardFloat1 {
    0%, 100% { transform: rotate(-5deg) translateX(-80px) translateY(-30px); }
    50% { transform: rotate(-8deg) translateX(-90px) translateY(-40px); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: rotate(3deg) translateY(-10px); }
    50% { transform: rotate(5deg) translateY(-20px); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: rotate(8deg) translateX(80px) translateY(30px); }
    50% { transform: rotate(10deg) translateX(90px) translateY(40px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.scroll-indicator {
    position: absolute;
    bottom: 120px;
    right: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 3px;
    opacity: 0.7;
    animation: fadeInUpPremium 1s ease 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    padding: 8px 0;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { 
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% { 
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

.hero-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    align-items: center;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.dot-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.dot.active {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    width: 50px;
    border-radius: 25px;
    box-shadow: 
        0 0 20px rgba(79, 172, 254, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.dot.active .dot-inner {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

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

/* Additional decorative elements */
.featured-section .section-title::before {
    content: '✦';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

.featured-section .section-title::after {
    content: '✦';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

/* Products Accordion Section */
.products-accordion-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.products-accordion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(-50%, -50%);
}

.products-accordion-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(50%, 50%);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0 60px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-3);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-title {
        padding: 0 20px;
        font-size: 2.2rem;
    }
    
    .featured-section .section-title::before,
    .featured-section .section-title::after {
        display: none;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-3);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.accordion-item:hover {
    border-color: rgba(79, 172, 254, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.accordion-item:hover::before {
    transform: scaleY(1);
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s;
    position: relative;
}

.accordion-header:hover {
    background: linear-gradient(90deg, var(--light-bg) 0%, var(--white) 100%);
    color: var(--secondary-color);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-inner {
    padding: 0 25px 25px;
}

.accordion-inner p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.accordion-inner ul {
    list-style: none;
    padding-left: 0;
}

.accordion-inner li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.accordion-inner li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Featured Section */
.featured-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

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

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.3);
    border-color: rgba(79, 172, 254, 0.3);
}

.product-card:hover::after {
    opacity: 0.05;
}

.product-info {
    position: relative;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.product-card:hover .product-info h3 {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Category Sections */
.category-section {
    padding: 100px 0;
    position: relative;
}

.category-section.alt {
    background: var(--light-bg);
}

.category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(79, 172, 254, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.category-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.category-content.reverse {
    direction: rtl;
}

.category-content.reverse > * {
    direction: ltr;
}

.category-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.5s;
    mix-blend-mode: overlay;
}

.category-content:hover .category-image {
    transform: scale(1.05) rotate(1deg);
}

.category-content:hover .category-image::before {
    opacity: 0.2;
}

.category-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.category-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-3);
    border-radius: 2px;
}

.category-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.benefits-section .section-title {
    color: var(--white);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 50%;
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    position: relative;
    z-index: 1;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2980b9;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.business-id {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Policy Pages Styles */
.policy-page {
    padding: 100px 0 80px;
    background: var(--white);
    min-height: 80vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Thanks Page */
.thanks-page {
    padding: 150px 0;
    text-align: center;
    background: var(--light-bg);
    min-height: 70vh;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.thanks-content .hero-btn {
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .category-content {
        grid-template-columns: 1fr;
    }

    .category-content.reverse {
        direction: ltr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .title-word {
        font-size: 4rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .scroll-indicator {
        right: 20px;
        bottom: 100px;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 0 20px;
    }
    
    .title-pre {
        font-size: 0.85rem;
        letter-spacing: 4px;
        margin-bottom: 15px;
    }
    
    .title-word {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-subtitle-accent {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4, .shape-5 {
        display: none;
    }
    
    .hero-orbs {
        display: none;
    }
    
    .hero-particles {
        display: none;
    }
    
    .hero-grid-bg {
        opacity: 0.1;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }
}

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

    .hero-content {
        padding: 25px 15px;
    }
    
    .title-line {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .title-main {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .category-image {
        height: 300px;
    }
    
    .glass-effect {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}

