/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Премиум палитра - золотые и темно-синие оттенки */
    --gold-primary: #d4af37;
    --gold-secondary: #f4d03f;
    --gold-accent: #ffd700;
    --deep-blue: #1a2332;
    --navy-blue: #2c3e50;
    --royal-blue: #34495e;
    --dark-bg: #0f1419;
    --dark-surface: #1a2332;
    --dark-elevated: #243447;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d1;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 40px rgba(212, 175, 55, 0.2);
    --shadow-gold-strong: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3);
    --shadow-blue: 0 0 20px rgba(52, 73, 94, 0.5), 0 0 40px rgba(52, 73, 94, 0.3);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

/* Частицы на фоне */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--gold-primary), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--gold-accent), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--royal-blue), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--gold-secondary), transparent),
        radial-gradient(2px 2px at 90% 80%, var(--navy-blue), transparent);
    background-size: 200% 200%, 150% 150%, 100% 100%, 180% 180%, 160% 160%;
    background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%;
    animation: particleMove 20s ease infinite;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

@keyframes particleMove {
    0%, 100% { background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%; }
    50% { background-position: 100% 100%, 0% 100%, 50% 50%, 100% 0%, 0% 0%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Cookie Notice - Glassmorphism */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: text-shadow 0.3s;
}

.cookie-content a:hover {
    text-shadow: 0 0 10px var(--gold-primary);
}

.cookie-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    color: var(--dark-bg);
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

/* Header - Glassmorphism + Sticky */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s;
}

.main-header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: filter 0.3s;
}

.logo:hover {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--gold-primary);
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

.nav-menu a:hover::before {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
    transition: all 0.3s;
    box-shadow: 0 0 5px var(--gold-primary);
}

.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);
}

/* Полноэкранное меню */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu ul {
    list-style: none;
    text-align: center;
}

.fullscreen-menu li {
    margin: 30px 0;
}

.fullscreen-menu a {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.fullscreen-menu a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
    transition: width 0.3s;
    box-shadow: 0 0 15px var(--gold-primary);
}

.fullscreen-menu a:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.fullscreen-menu a:hover::after {
    width: 100%;
}

/* Hero Section - Огромные заголовки + Градиентный текст + Параллакс */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 50%, var(--dark-bg) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.3;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 73, 94, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.8) 100%);
}

/* Геометрический паттерн на фоне */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(52, 73, 94, 0.05) 49%, rgba(52, 73, 94, 0.05) 51%, transparent 52%);
    background-size: 60px 60px;
    z-index: 1;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-accent) 50%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(244, 208, 63, 0.7)); }
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
}

.btn-primary::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-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-gold-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-gold-strong);
}

/* Feature Accordion - Glassmorphism + 3D трансформации */
.hero-features {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.feature-accordion {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold-primary);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.accordion-header h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
}

.accordion-icon {
    color: var(--gold-primary);
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 10px var(--gold-primary);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg) scale(1.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-content p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-header p {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section - Glassmorphism карточки с hover */
.services-section {
    background: var(--dark-surface);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    border-color: var(--gold-primary);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        var(--shadow-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    background: linear-gradient(135deg, var(--gold-primary), var(--royal-blue));
    padding: 3px;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--dark-surface);
    border-radius: 13px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 13px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* Process Section - Диагональная компоновка */
.process-section {
    background: var(--dark-bg);
    position: relative;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-accent));
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--gold-primary);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 100px;
    text-align: center;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 16px;
    transform: skew(-2deg);
    transition: all 0.4s;
}

.timeline-item:nth-child(even) .timeline-content {
    transform: skew(2deg);
}

.timeline-content:hover {
    transform: skew(0deg) translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.timeline-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* Tech Section */
.tech-section {
    background: var(--dark-surface);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.tech-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tech-item:hover::before {
    width: 200px;
    height: 200px;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.tech-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: filter 0.3s;
}

.tech-item:hover img {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.tech-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.tech-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Portfolio Section - Слайдер эффект */
.portfolio-section {
    background: var(--dark-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--shadow-gold);
}

.portfolio-item:hover img {
    transform: scale(1.2) rotate(5deg);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-overlay p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

/* About Section - Асимметричная сетка 60/40 */
.about-section {
    background: var(--dark-surface);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 17px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 900;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform: rotate(-2deg);
    transition: transform 0.4s;
    border: 2px solid transparent;
    background: linear-gradient(var(--dark-surface), var(--dark-surface)) padding-box,
                linear-gradient(135deg, var(--gold-primary), var(--gold-accent)) border-box;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--shadow-gold);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.4s;
}

.contact-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
    transform: translateX(10px);
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 16px;
}

.contact-item a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: var(--gold-accent);
    text-shadow: 0 0 10px var(--gold-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.main-footer {
    background: var(--dark-surface);
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Policy Pages Styles */
.policy-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--dark-bg);
    min-height: 100vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.policy-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.policy-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.policy-page h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.policy-page p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.policy-page ul {
    margin-left: 30px;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.policy-page li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.policy-page a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.policy-page a:hover {
    color: var(--gold-accent);
    text-shadow: 0 0 10px var(--gold-primary);
}

/* Thanks Page */
.thanks-page {
    padding-top: 180px;
    padding-bottom: 120px;
    text-align: center;
    min-height: 100vh;
    background: var(--dark-bg);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 80px 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.thanks-content h1 {
    font-size: 64px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 900;
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }

    .burger-menu {
        display: flex;
        z-index: 10001;
        position: relative;
    }
    
    .fullscreen-menu {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        transform: rotate(0deg);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-number {
        position: absolute;
        left: 0;
        min-width: 60px;
        font-size: 48px;
    }

    .timeline-content {
        transform: skew(0deg) !important;
    }

    .about-stats {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .policy-container {
        padding: 40px 25px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }

    .fullscreen-menu a {
        font-size: 36px;
    }
    
    .fullscreen-menu ul {
        width: 100%;
        padding: 0 20px;
    }
    
    .fullscreen-menu li {
        margin: 25px 0;
    }
    
    .main-header {
        position: fixed;
        width: 100%;
    }
    
    .navbar {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .thanks-content h1 {
        font-size: 42px;
    }
}
