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

:root {
    --primary-color: #00bfff;
    --primary-dark: #0099cc;
    --primary-light: #00ccff;
    --secondary-color: #0066cc;
    --accent-color: #00a8e6;
    --text-dark: #0a0a0a;
    --text-light: #4a5568;
    --bg-light: #0f1419;
    --bg-white: #1a1f2e;
    --bg-dark: #000000;
    --border-color: #1e293b;
    --shadow: 0 4px 6px -1px rgba(0, 191, 255, 0.2), 0 2px 4px -1px rgba(0, 191, 255, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 191, 255, 0.3), 0 10px 10px -5px rgba(0, 191, 255, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 191, 255, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 191, 255, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #000000 0%, #0066cc 50%, #00bfff 100%);
    --gradient-blue: linear-gradient(135deg, #0066cc 0%, #00bfff 100%);
    --gradient-purple: linear-gradient(135deg, #0099cc 0%, #00ccff 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 102, 204, 0.7) 50%, rgba(0, 191, 255, 0.6) 100%);
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #e2e8f0;
    background: linear-gradient(180deg, #000000 0%, #0a0f1a 50%, #0f1419 100%);
    background-attachment: fixed;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Premium Header with Glassmorphism */
.main-header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 191, 255, 0.2);
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    margin: 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 8px 32px 0 rgba(0, 191, 255, 0.3);
    padding: 0.875rem 0;
}

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

.logo {
    font-size: 1.875rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.5px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-blue);
    transition: var(--transition);
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: -0.2px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

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

.nav-link:hover::after {
    opacity: 1;
    left: -16px;
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #00bfff, #00ccff);
    transition: var(--transition);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 191, 255, 0.4);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--gradient-blue);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--gradient-blue);
}

/* Premium Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 15, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #e2e8f0;
    padding: 1.75rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 32px rgba(0, 191, 255, 0.3);
    border-top: 1px solid rgba(0, 191, 255, 0.3);
}

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

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

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

.cookie-content a {
    color: #00bfff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-btn {
    background: var(--gradient-blue);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cookie-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.6);
}

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

/* Premium Hero Section with Advanced Effects */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0066cc 50%, #00bfff 100%);
    margin: 0;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.2) 0%, transparent 50%);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
    opacity: 0.7;
}

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

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 20s ease-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    opacity: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 2rem 0;
    max-width: 750px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00ccff 50%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.75rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -1.5px;
    text-shadow: 0 0 80px rgba(0, 191, 255, 0.5);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.8s forwards;
}

@keyframes expandLine {
    to { width: 200px; }
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2.5rem;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.dot.active {
    background-color: var(--bg-white);
    width: 36px;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.dot.active::before {
    width: 8px;
    height: 8px;
}

/* Modern Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 191, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 191, 255, 0.4);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #00ccff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.2);
    transition: var(--transition);
}

.hero-badge:hover {
    background: rgba(0, 191, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.3);
}

.badge-icon {
    font-size: 1.25rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Hero Title Highlight */
.hero-title-highlight {
    background: linear-gradient(135deg, #00ccff 0%, #00bfff 50%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00bfff, transparent);
    border-radius: 2px;
    animation: expandLine 1.2s ease-out 1s forwards;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 191, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.hero-feature-item:hover {
    background: rgba(0, 191, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

.feature-icon-small {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 191, 255, 0.3);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: bold;
    color: #00ccff;
    flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00ccff 50%, #00bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Button Arrow */
.btn-arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounceDown 2s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

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

/* Premium Buttons with Advanced Effects */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient-blue);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(0, 191, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(0, 191, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 191, 255, 0.25);
    border-color: rgba(0, 191, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.4);
}

/* Premium Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

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

/* Remove border line from hero section - hero has its own ::before for background */
.hero-section::before {
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #00ccff;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: #a0aec0;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Premium Services Section */
.services-section {
    background: linear-gradient(180deg, #000000 0%, #0a0f1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(26, 31, 46, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 191, 255, 0.15);
    transition: var(--transition);
    border: 1px solid rgba(0, 191, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 191, 255, 0.3);
    border-color: rgba(0, 191, 255, 0.4);
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    background: var(--gradient-blue);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #00ccff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.service-card p {
    color: #a0aec0;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-features li {
    color: #e2e8f0;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bfff;
    font-weight: bold;
    font-size: 1.125rem;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(0, 102, 204, 0.2));
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-features li::before {
    background: var(--gradient-blue);
    color: white;
    transform: scale(1.1);
}

/* Premium Process Section with Advanced Accordion */
.process-section {
    background: linear-gradient(180deg, #0a0f1a 0%, #000000 100%);
    position: relative;
}

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

.accordion-item {
    background: rgba(26, 31, 46, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.1);
    position: relative;
}

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

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

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.4);
    transform: translateX(5px);
}

.accordion-item.active {
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.3);
    border-color: rgba(0, 191, 255, 0.5);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    gap: 1.5rem;
    position: relative;
}

.accordion-header:hover {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.05), transparent);
}

.accordion-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
    text-align: center;
    position: relative;
}

.accordion-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
    opacity: 0.3;
}

.accordion-title {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: -0.3px;
}

.accordion-icon {
    font-size: 2rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--gradient-blue);
    color: white;
    -webkit-text-fill-color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.accordion-body {
    padding: 0 2rem 2rem;
    padding-left: calc(60px + 3.5rem);
}

.accordion-body p {
    color: #a0aec0;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.0625rem;
}

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

.accordion-body ul li {
    color: #a0aec0;
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.accordion-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 1.25rem;
    transition: var(--transition);
}

.accordion-body ul li:hover::before {
    transform: translateX(5px);
}

/* Premium Portfolio Section */
.portfolio-section {
    background: linear-gradient(180deg, #000000 0%, #0a0f1a 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.portfolio-item:hover::before {
    opacity: 0.95;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.15) rotate(2deg);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #ffffff;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
    transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px #fff;
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.0625rem;
    text-shadow: 0 2px 8px #fff;
}

.portfolio-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Premium Technologies Section */
.technologies-section {
    background: linear-gradient(180deg, #0a0f1a 0%, #000000 100%);
    position: relative;
}

.tech-categories {
    display: grid;
    gap: 2.5rem;
}

.tech-category {
    background: rgba(26, 31, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 191, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.tech-category:hover::before {
    transform: scaleX(1);
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.4);
}

.tech-category h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #00ccff;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-tag {
    background: rgba(26, 31, 46, 0.9);
    backdrop-filter: blur(10px);
    color: #00bfff;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid rgba(0, 191, 255, 0.3);
    transition: var(--transition);
    font-size: 0.9375rem;
    position: relative;
    overflow: hidden;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-blue);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: 0;
}

.tech-tag:hover::before {
    width: 200px;
    height: 200px;
}

.tech-tag:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
}

.tech-tag span {
    position: relative;
    z-index: 1;
}

/* Premium About Section */
.about-section {
    background: linear-gradient(180deg, #000000 0%, #0a0f1a 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-blue);
    opacity: 0;
    transition: var(--transition);
    mix-blend-mode: overlay;
}

.about-image:hover::before {
    opacity: 0.1;
}

.about-image:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 80px rgba(37, 99, 235, 0.25);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #00ccff;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-text p {
    color: #a0aec0;
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.125rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(226, 232, 240, 0.5);
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    border-radius: 16px;
    transition: var(--transition);
    background: rgba(26, 31, 46, 0.5);
}

.stat-item:hover {
    background: rgba(26, 31, 46, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #00ccff;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    color: #a0aec0;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Contact Section */
.contact-section {
    background: linear-gradient(180deg, #0a0f1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    padding: 2rem;
    background: rgba(26, 31, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 191, 255, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.4);
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00ccff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.contact-item p {
    color: #a0aec0;
    line-height: 1.9;
    font-size: 1.0625rem;
}

.contact-item a {
    color: #00bfff;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: var(--transition);
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-item a:hover {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(26, 31, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 191, 255, 0.15);
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group input,
.form-group textarea {
    padding: 1.25rem;
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(15, 20, 30, 0.9);
    backdrop-filter: blur(10px);
    color: #e2e8f0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 191, 255, 0.2), 0 8px 25px rgba(0, 191, 255, 0.2);
    background: rgba(15, 20, 30, 1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

/* Premium Footer */
.main-footer {
    background: linear-gradient(135deg, #000000 0%, #0a0f1a 100%);
    color: #e2e8f0;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 191, 255, 0.2);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-color));
    transition: var(--transition);
}

.footer-section a:hover {
    color: #00ccff;
}

.footer-section a:hover::after {
    width: 100%;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.business-id {
    font-size: 0.875rem;
    color: #718096;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 191, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: #718096;
    margin: 0;
    font-size: 0.9375rem;
}

/* Policy Pages */
.policy-page {
    padding: 5rem 0;
    min-height: 70vh;
    background: linear-gradient(180deg, #000000 0%, #0a0f1a 100%);
}

.policy-page h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #00ccff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.policy-updated {
    color: #a0aec0;
    margin-bottom: 3rem;
    font-style: italic;
    font-size: 1.0625rem;
}

.policy-page section {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.policy-page section:last-child {
    border-bottom: none;
}

.policy-page h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #00ccff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.policy-page h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.policy-page h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-page p {
    color: #a0aec0;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.policy-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-page ul li {
    color: #a0aec0;
    line-height: 1.9;
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.policy-page a {
    color: #00bfff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.policy-page a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: var(--transition);
}

.policy-page a:hover::after {
    width: 100%;
}

/* Premium Thanks Page */
.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.thanks-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.thanks-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 550px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.thanks-subtitle {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-top: 2rem;
}

/* Responsive Design - breakpoints */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .hero-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }

    .hero-features {
        gap: 1.25rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2.25rem;
    }

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

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

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

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 15, 26, 0.98) 100%);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: 0 8px 32px rgba(0, 191, 255, 0.3), inset 0 0 100px rgba(0, 191, 255, 0.05);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        align-items: stretch;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(0, 191, 255, 0.3);
        border-right: 1px solid rgba(0, 191, 255, 0.2);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9999;
        box-sizing: border-box;
    }

    .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .main-nav > * {
        position: relative;
        z-index: 1;
    }

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

    /* Стили для ссылок в бургер меню */
    .main-nav {
        display: flex;
    }

    .main-nav .nav-link {
        color: #e2e8f0;
        font-size: 1.125rem;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 191, 255, 0.1);
        transition: var(--transition);
        display: block;
        flex-shrink: 0;
    }

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

    .main-nav .nav-link::before {
        left: 0;
        transform: translateX(0);
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 191, 255, 0.2), transparent);
        border-radius: 0;
    }

    .main-nav .nav-link:hover::before {
        width: 4px;
    }

    .main-nav .nav-link:hover {
        color: #00ccff;
        padding-left: 1rem;
        background: rgba(0, 191, 255, 0.05);
        border-left: 3px solid #00bfff;
    }

    .main-nav .nav-link::after {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

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

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

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-feature-item {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-scroll-indicator {
        bottom: 100px;
        font-size: 0.75rem;
    }

    .hero-controls {
        padding: 0 1.5rem;
    }

    .hero-prev,
    .hero-next {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

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

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

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .accordion-body {
        padding-left: 2rem;
    }

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

    .thanks-content {
        padding: 2.5rem;
    }
}

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

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }

    .badge-icon {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-feature-item {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .hero-stat::before {
        display: none;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

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

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